blob: bc5b30a819e82e8622d2ead088c52ef5cf7c268e [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);
Namjae Jeon99600052013-01-19 11:17:14 +0900137 ei->cached_extent.lstart = -1;
138 spin_lock_init(&ei->i_extent_cache_lock);
Dan Bastone95f87972006-08-13 23:24:18 -0700139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return &ei->vfs_inode;
141}
142
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100143static void udf_i_callback(struct rcu_head *head)
144{
145 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100146 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static void udf_destroy_inode(struct inode *inode)
150{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100151 call_rcu(&inode->i_rcu, udf_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700154static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700156 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Christoph Lametera35afb82007-05-16 22:10:57 -0700158 ei->i_ext.i_data = NULL;
159 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162static int init_inodecache(void)
163{
164 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
165 sizeof(struct udf_inode_info),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700166 0, (SLAB_RECLAIM_ACCOUNT |
167 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900168 init_once);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700169 if (!udf_inode_cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -ENOMEM;
171 return 0;
172}
173
174static void destroy_inodecache(void)
175{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000176 /*
177 * Make sure all delayed rcu free inodes are flushed before we
178 * destroy cache.
179 */
180 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700181 kmem_cache_destroy(udf_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184/* Superblock operations */
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800185static const struct super_operations udf_sb_ops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700186 .alloc_inode = udf_alloc_inode,
187 .destroy_inode = udf_destroy_inode,
188 .write_inode = udf_write_inode,
Al Viro3aac2b62010-06-07 00:43:39 -0400189 .evict_inode = udf_evict_inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700190 .put_super = udf_put_super,
Jan Kara146bca72009-03-16 18:27:37 +0100191 .sync_fs = udf_sync_fs,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700192 .statfs = udf_statfs,
193 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800194 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700197struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 unsigned char novrs;
199 unsigned int blocksize;
200 unsigned int session;
201 unsigned int lastblock;
202 unsigned int anchor;
203 unsigned int volume;
204 unsigned short partition;
205 unsigned int fileset;
206 unsigned int rootdir;
207 unsigned int flags;
Al Virofaa17292011-07-26 03:18:29 -0400208 umode_t umask;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800209 kgid_t gid;
210 kuid_t uid;
Al Virofaa17292011-07-26 03:18:29 -0400211 umode_t fmode;
212 umode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 struct nls_table *nls_map;
214};
215
216static int __init init_udf_fs(void)
217{
218 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 err = init_inodecache();
221 if (err)
222 goto out1;
223 err = register_filesystem(&udf_fstype);
224 if (err)
225 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700228
229out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700231
232out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return err;
234}
235
236static void __exit exit_udf_fs(void)
237{
238 unregister_filesystem(&udf_fstype);
239 destroy_inodecache();
240}
241
242module_init(init_udf_fs)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700243module_exit(exit_udf_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800245static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
246{
247 struct udf_sb_info *sbi = UDF_SB(sb);
248
249 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
250 GFP_KERNEL);
251 if (!sbi->s_partmaps) {
Joe Perches8076c362011-10-10 01:08:03 -0700252 udf_err(sb, "Unable to allocate space for %d partition maps\n",
253 count);
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800254 sbi->s_partitions = 0;
255 return -ENOMEM;
256 }
257
258 sbi->s_partitions = count;
259 return 0;
260}
261
Jan Karabff943a2012-06-27 22:27:05 +0200262static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
263{
264 int i;
265 int nr_groups = bitmap->s_nr_groups;
266 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
267 nr_groups);
268
269 for (i = 0; i < nr_groups; i++)
270 if (bitmap->s_block_bitmap[i])
271 brelse(bitmap->s_block_bitmap[i]);
272
273 if (size <= PAGE_SIZE)
274 kfree(bitmap);
275 else
276 vfree(bitmap);
277}
278
279static void udf_free_partition(struct udf_part_map *map)
280{
281 int i;
282 struct udf_meta_data *mdata;
283
284 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
285 iput(map->s_uspace.s_table);
286 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
287 iput(map->s_fspace.s_table);
288 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
289 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
290 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
291 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
292 if (map->s_partition_type == UDF_SPARABLE_MAP15)
293 for (i = 0; i < 4; i++)
294 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
295 else if (map->s_partition_type == UDF_METADATA_MAP25) {
296 mdata = &map->s_type_specific.s_metadata;
297 iput(mdata->s_metadata_fe);
298 mdata->s_metadata_fe = NULL;
299
300 iput(mdata->s_mirror_fe);
301 mdata->s_mirror_fe = NULL;
302
303 iput(mdata->s_bitmap_fe);
304 mdata->s_bitmap_fe = NULL;
305 }
306}
307
308static void udf_sb_free_partitions(struct super_block *sb)
309{
310 struct udf_sb_info *sbi = UDF_SB(sb);
311 int i;
Namjae Jeon1b1baff2013-01-14 22:53:47 +0100312 if (sbi->s_partmaps == NULL)
313 return;
Jan Karabff943a2012-06-27 22:27:05 +0200314 for (i = 0; i < sbi->s_partitions; i++)
315 udf_free_partition(&sbi->s_partmaps[i]);
316 kfree(sbi->s_partmaps);
317 sbi->s_partmaps = NULL;
318}
319
Al Viro34c80b12011-12-08 21:32:45 -0500320static int udf_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredi6da80892008-02-08 04:21:50 -0800321{
Al Viro34c80b12011-12-08 21:32:45 -0500322 struct super_block *sb = root->d_sb;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800323 struct udf_sb_info *sbi = UDF_SB(sb);
324
325 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
326 seq_puts(seq, ",nostrict");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100327 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
Miklos Szeredi6da80892008-02-08 04:21:50 -0800328 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
329 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
330 seq_puts(seq, ",unhide");
331 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
332 seq_puts(seq, ",undelete");
333 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
334 seq_puts(seq, ",noadinicb");
335 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
336 seq_puts(seq, ",shortad");
337 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
338 seq_puts(seq, ",uid=forget");
339 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
340 seq_puts(seq, ",uid=ignore");
341 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
342 seq_puts(seq, ",gid=forget");
343 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
344 seq_puts(seq, ",gid=ignore");
345 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800346 seq_printf(seq, ",uid=%u", from_kuid(&init_user_ns, sbi->s_uid));
Miklos Szeredi6da80892008-02-08 04:21:50 -0800347 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800348 seq_printf(seq, ",gid=%u", from_kgid(&init_user_ns, sbi->s_gid));
Miklos Szeredi6da80892008-02-08 04:21:50 -0800349 if (sbi->s_umask != 0)
Al Virofaa17292011-07-26 03:18:29 -0400350 seq_printf(seq, ",umask=%ho", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100351 if (sbi->s_fmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400352 seq_printf(seq, ",mode=%ho", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100353 if (sbi->s_dmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400354 seq_printf(seq, ",dmode=%ho", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800355 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
356 seq_printf(seq, ",session=%u", sbi->s_session);
357 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
358 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
Jan Kara40346002009-03-19 16:21:38 +0100359 if (sbi->s_anchor != 0)
360 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800361 /*
362 * volume, partition, fileset and rootdir seem to be ignored
363 * currently
364 */
365 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
366 seq_puts(seq, ",utf8");
367 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
368 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
369
370 return 0;
371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/*
374 * udf_parse_options
375 *
376 * PURPOSE
377 * Parse mount options.
378 *
379 * DESCRIPTION
380 * The following mount options are supported:
381 *
382 * gid= Set the default group.
383 * umask= Set the default umask.
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100384 * mode= Set the default file permissions.
385 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * uid= Set the default user.
387 * bs= Set the block size.
388 * unhide Show otherwise hidden files.
389 * undelete Show deleted files in lists.
390 * adinicb Embed data in the inode (default)
391 * noadinicb Don't embed data in the inode
392 * shortad Use short ad's
393 * longad Use long ad's (default)
394 * nostrict Unset strict conformance
395 * iocharset= Set the NLS character set
396 *
397 * The remaining are for debugging and disaster recovery:
398 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700399 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 *
401 * The following expect a offset from 0.
402 *
403 * session= Set the CDROM session (default= last session)
404 * anchor= Override standard anchor location. (default= 256)
405 * volume= Override the VolumeDesc location. (unused)
406 * partition= Override the PartitionDesc location. (unused)
407 * lastblock= Set the last block of the filesystem/
408 *
409 * The following expect a offset from the partition root.
410 *
411 * fileset= Override the fileset block location. (unused)
412 * rootdir= Override the root directory location. (unused)
413 * WARNING: overriding the rootdir to a non-directory may
414 * yield highly unpredictable results.
415 *
416 * PRE-CONDITIONS
417 * options Pointer to mount options string.
418 * uopts Pointer to mount options variable.
419 *
420 * POST-CONDITIONS
421 * <return> 1 Mount options parsed okay.
422 * <return> 0 Error parsing mount options.
423 *
424 * HISTORY
425 * July 1, 1997 - Andrew E. Mileski
426 * Written, tested, and released.
427 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429enum {
430 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
431 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
432 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
433 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
434 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100435 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
436 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437};
438
Steven Whitehousea447c092008-10-13 10:46:57 +0100439static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700440 {Opt_novrs, "novrs"},
441 {Opt_nostrict, "nostrict"},
442 {Opt_bs, "bs=%u"},
443 {Opt_unhide, "unhide"},
444 {Opt_undelete, "undelete"},
445 {Opt_noadinicb, "noadinicb"},
446 {Opt_adinicb, "adinicb"},
447 {Opt_shortad, "shortad"},
448 {Opt_longad, "longad"},
449 {Opt_uforget, "uid=forget"},
450 {Opt_uignore, "uid=ignore"},
451 {Opt_gforget, "gid=forget"},
452 {Opt_gignore, "gid=ignore"},
453 {Opt_gid, "gid=%u"},
454 {Opt_uid, "uid=%u"},
455 {Opt_umask, "umask=%o"},
456 {Opt_session, "session=%u"},
457 {Opt_lastblock, "lastblock=%u"},
458 {Opt_anchor, "anchor=%u"},
459 {Opt_volume, "volume=%u"},
460 {Opt_partition, "partition=%u"},
461 {Opt_fileset, "fileset=%u"},
462 {Opt_rootdir, "rootdir=%u"},
463 {Opt_utf8, "utf8"},
464 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100465 {Opt_fmode, "mode=%o"},
466 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700467 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468};
469
Miklos Szeredi6da80892008-02-08 04:21:50 -0800470static int udf_parse_options(char *options, struct udf_options *uopt,
471 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 char *p;
474 int option;
475
476 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 uopt->partition = 0xFFFF;
478 uopt->session = 0xFFFFFFFF;
479 uopt->lastblock = 0;
480 uopt->anchor = 0;
481 uopt->volume = 0xFFFFFFFF;
482 uopt->rootdir = 0xFFFFFFFF;
483 uopt->fileset = 0xFFFFFFFF;
484 uopt->nls_map = NULL;
485
486 if (!options)
487 return 1;
488
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700489 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 substring_t args[MAX_OPT_ARGS];
491 int token;
492 if (!*p)
493 continue;
494
495 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700496 switch (token) {
497 case Opt_novrs:
498 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100499 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700500 case Opt_bs:
501 if (match_int(&args[0], &option))
502 return 0;
503 uopt->blocksize = option;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100504 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700505 break;
506 case Opt_unhide:
507 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
508 break;
509 case Opt_undelete:
510 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
511 break;
512 case Opt_noadinicb:
513 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
514 break;
515 case Opt_adinicb:
516 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
517 break;
518 case Opt_shortad:
519 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
520 break;
521 case Opt_longad:
522 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
523 break;
524 case Opt_gid:
525 if (match_int(args, &option))
526 return 0;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800527 uopt->gid = make_kgid(current_user_ns(), option);
528 if (!gid_valid(uopt->gid))
529 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700530 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700531 break;
532 case Opt_uid:
533 if (match_int(args, &option))
534 return 0;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800535 uopt->uid = make_kuid(current_user_ns(), option);
536 if (!uid_valid(uopt->uid))
537 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700538 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700539 break;
540 case Opt_umask:
541 if (match_octal(args, &option))
542 return 0;
543 uopt->umask = option;
544 break;
545 case Opt_nostrict:
546 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
547 break;
548 case Opt_session:
549 if (match_int(args, &option))
550 return 0;
551 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800552 if (!remount)
553 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700554 break;
555 case Opt_lastblock:
556 if (match_int(args, &option))
557 return 0;
558 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800559 if (!remount)
560 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700561 break;
562 case Opt_anchor:
563 if (match_int(args, &option))
564 return 0;
565 uopt->anchor = option;
566 break;
567 case Opt_volume:
568 if (match_int(args, &option))
569 return 0;
570 uopt->volume = option;
571 break;
572 case Opt_partition:
573 if (match_int(args, &option))
574 return 0;
575 uopt->partition = option;
576 break;
577 case Opt_fileset:
578 if (match_int(args, &option))
579 return 0;
580 uopt->fileset = option;
581 break;
582 case Opt_rootdir:
583 if (match_int(args, &option))
584 return 0;
585 uopt->rootdir = option;
586 break;
587 case Opt_utf8:
588 uopt->flags |= (1 << UDF_FLAG_UTF8);
589 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700591 case Opt_iocharset:
592 uopt->nls_map = load_nls(args[0].from);
593 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
594 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700596 case Opt_uignore:
597 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
598 break;
599 case Opt_uforget:
600 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
601 break;
602 case Opt_gignore:
603 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
604 break;
605 case Opt_gforget:
606 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
607 break;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100608 case Opt_fmode:
609 if (match_octal(args, &option))
610 return 0;
611 uopt->fmode = option & 0777;
612 break;
613 case Opt_dmode:
614 if (match_octal(args, &option))
615 return 0;
616 uopt->dmode = option & 0777;
617 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700618 default:
Joe Perches78ace702011-10-10 01:08:05 -0700619 pr_err("bad mount option \"%s\" or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return 0;
621 }
622 }
623 return 1;
624}
625
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700626static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800629 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400630 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800632 uopt.flags = sbi->s_flags;
633 uopt.uid = sbi->s_uid;
634 uopt.gid = sbi->s_gid;
635 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100636 uopt.fmode = sbi->s_fmode;
637 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Miklos Szeredi6da80892008-02-08 04:21:50 -0800639 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -EINVAL;
641
Jan Karac03cad22010-10-20 22:17:28 +0200642 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800643 sbi->s_flags = uopt.flags;
644 sbi->s_uid = uopt.uid;
645 sbi->s_gid = uopt.gid;
646 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100647 sbi->s_fmode = uopt.fmode;
648 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200649 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800651 if (sbi->s_lvid_bh) {
652 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (write_rev > UDF_MAX_WRITE_VERSION)
654 *flags |= MS_RDONLY;
655 }
656
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400657 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
658 goto out_unlock;
659
Jan Kara36350462010-05-19 16:28:56 +0200660 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200662 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 udf_open_lvid(sb);
664
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400665out_unlock:
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400666 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Jan Kara40346002009-03-19 16:21:38 +0100669/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
670/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
671static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200674 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 int sectorsize;
676 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700677 int nsr02 = 0;
678 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800679 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800681 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (sb->s_blocksize < sizeof(struct volStructDesc))
683 sectorsize = sizeof(struct volStructDesc);
684 else
685 sectorsize = sb->s_blocksize;
686
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800687 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200690 (unsigned int)(sector >> sb->s_blocksize_bits),
691 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700693 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* Read a block */
695 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
696 if (!bh)
697 break;
698
699 /* Look for ISO descriptors */
700 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800701 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700703 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700704 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800706 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
707 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700708 switch (vsd->structType) {
709 case 0:
710 udf_debug("ISO9660 Boot Record found\n");
711 break;
712 case 1:
Joe Perchesa983f362011-10-10 01:08:07 -0700713 udf_debug("ISO9660 Primary Volume Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700714 break;
715 case 2:
Joe Perchesa983f362011-10-10 01:08:07 -0700716 udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700717 break;
718 case 3:
Joe Perchesa983f362011-10-10 01:08:07 -0700719 udf_debug("ISO9660 Volume Partition Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700720 break;
721 case 255:
Joe Perchesa983f362011-10-10 01:08:07 -0700722 udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700723 break;
724 default:
725 udf_debug("ISO9660 VRS (%u) found\n",
726 vsd->structType);
727 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800729 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
730 VSD_STD_ID_LEN))
731 ; /* nothing */
732 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
733 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700734 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800736 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
737 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800739 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
740 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700742 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
745 if (nsr03)
746 return nsr03;
747 else if (nsr02)
748 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800749 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return -1;
751 else
752 return 0;
753}
754
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800755static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200756 struct kernel_lb_addr *fileset,
757 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 struct buffer_head *bh = NULL;
760 long lastblock;
761 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800762 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700765 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200766 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700768 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700770 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700771 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return 1;
773 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800777 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800778 if (!bh) {
779 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200780 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700782/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700784
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800785 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700786 (newfileset.partitionReferenceNum != 0xFFFF &&
787 fileset->logicalBlockNum == 0xFFFFFFFF &&
788 fileset->partitionReferenceNum == 0xFFFF);
789 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800790 lastblock = sbi->s_partmaps
791 [newfileset.partitionReferenceNum]
792 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 newfileset.logicalBlockNum = 0;
794
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700795 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200796 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800797 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700798 if (!bh) {
799 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 continue;
801 }
802
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700803 switch (ident) {
804 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700805 {
806 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800807 sp = (struct spaceBitmapDesc *)
808 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700809 newfileset.logicalBlockNum += 1 +
810 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800811 sizeof(struct spaceBitmapDesc)
812 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700813 brelse(bh);
814 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700816 case TAG_IDENT_FSD:
817 *fileset = newfileset;
818 break;
819 default:
820 newfileset.logicalBlockNum++;
821 brelse(bh);
822 bh = NULL;
823 break;
824 }
825 } while (newfileset.logicalBlockNum < lastblock &&
826 fileset->logicalBlockNum == 0xFFFFFFFF &&
827 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829 }
830
831 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700832 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700834 fileset->logicalBlockNum,
835 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800837 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700839 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return 0;
841 }
842 return 1;
843}
844
Jan Karac0eb31e2008-04-01 16:50:35 +0200845static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
847 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100848 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200849 struct buffer_head *bh;
850 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100851 int ret = 1;
852
853 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
854 if (!instr)
855 return 1;
856
857 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
858 if (!outstr)
859 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200860
861 bh = udf_read_tagged(sb, block, block, &ident);
862 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100863 goto out2;
864
Jan Karac0eb31e2008-04-01 16:50:35 +0200865 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 pvoldesc = (struct primaryVolDesc *)bh->b_data;
868
Marcin Slusarz56774802008-02-10 11:25:31 +0100869 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
870 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100871#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200872 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
Joe Perchesa983f362011-10-10 01:08:07 -0700873 udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100874 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
875 ts->minute, le16_to_cpu(ts->typeAndTimezone));
876#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100879 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
880 if (udf_CS0toUTF8(outstr, instr)) {
881 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
882 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800883 udf_debug("volIdent[] = '%s'\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700884 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100887 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
888 if (udf_CS0toUTF8(outstr, instr))
889 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200890
891 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100892 ret = 0;
893out2:
894 kfree(outstr);
895out1:
896 kfree(instr);
897 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
Namjae Jeon3080a742011-10-23 19:28:32 +0900900struct inode *udf_find_metadata_inode_efe(struct super_block *sb,
901 u32 meta_file_loc, u32 partition_num)
902{
903 struct kernel_lb_addr addr;
904 struct inode *metadata_fe;
905
906 addr.logicalBlockNum = meta_file_loc;
907 addr.partitionReferenceNum = partition_num;
908
909 metadata_fe = udf_iget(sb, &addr);
910
911 if (metadata_fe == NULL)
912 udf_warn(sb, "metadata inode efe not found\n");
913 else if (UDF_I(metadata_fe)->i_alloc_type != ICBTAG_FLAG_AD_SHORT) {
914 udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
915 iput(metadata_fe);
916 metadata_fe = NULL;
917 }
918
919 return metadata_fe;
920}
921
Jan Karabfb257a2008-04-08 20:37:21 +0200922static int udf_load_metadata_files(struct super_block *sb, int partition)
923{
924 struct udf_sb_info *sbi = UDF_SB(sb);
925 struct udf_part_map *map;
926 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200927 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200928
929 map = &sbi->s_partmaps[partition];
930 mdata = &map->s_type_specific.s_metadata;
931
932 /* metadata address */
Jan Karabfb257a2008-04-08 20:37:21 +0200933 udf_debug("Metadata file location: block = %d part = %d\n",
Namjae Jeon3080a742011-10-23 19:28:32 +0900934 mdata->s_meta_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200935
Namjae Jeon3080a742011-10-23 19:28:32 +0900936 mdata->s_metadata_fe = udf_find_metadata_inode_efe(sb,
937 mdata->s_meta_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200938
939 if (mdata->s_metadata_fe == NULL) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900940 /* mirror file entry */
941 udf_debug("Mirror metadata file location: block = %d part = %d\n",
942 mdata->s_mirror_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200943
Namjae Jeon3080a742011-10-23 19:28:32 +0900944 mdata->s_mirror_fe = udf_find_metadata_inode_efe(sb,
945 mdata->s_mirror_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200946
Namjae Jeon3080a742011-10-23 19:28:32 +0900947 if (mdata->s_mirror_fe == NULL) {
948 udf_err(sb, "Both metadata and mirror metadata inode efe can not found\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200949 goto error_exit;
Namjae Jeon3080a742011-10-23 19:28:32 +0900950 }
Jan Karabfb257a2008-04-08 20:37:21 +0200951 }
952
953 /*
954 * bitmap file entry
955 * Note:
956 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
957 */
958 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
959 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
960 addr.partitionReferenceNum = map->s_partition_num;
961
962 udf_debug("Bitmap file location: block = %d part = %d\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700963 addr.logicalBlockNum, addr.partitionReferenceNum);
Jan Karabfb257a2008-04-08 20:37:21 +0200964
Pekka Enberg97e961f2008-10-15 12:29:03 +0200965 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200966
967 if (mdata->s_bitmap_fe == NULL) {
968 if (sb->s_flags & MS_RDONLY)
Joe Perchesa40ecd72011-10-10 01:08:04 -0700969 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 +0200970 else {
Joe Perches8076c362011-10-10 01:08:03 -0700971 udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200972 goto error_exit;
973 }
974 }
975 }
976
977 udf_debug("udf_load_metadata_files Ok\n");
978
979 return 0;
980
981error_exit:
982 return 1;
983}
984
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700985static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200986 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct fileSetDesc *fset;
989
990 fset = (struct fileSetDesc *)bh->b_data;
991
992 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
993
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800994 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700996 udf_debug("Rootdir at block=%d, partition=%d\n",
997 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001000int udf_compute_nr_groups(struct super_block *sb, u32 partition)
1001{
1002 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +01001003 return DIV_ROUND_UP(map->s_partition_len +
1004 (sizeof(struct spaceBitmapDesc) << 3),
1005 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001006}
1007
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001008static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
1009{
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001010 struct udf_bitmap *bitmap;
1011 int nr_groups;
1012 int size;
1013
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001014 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001015 size = sizeof(struct udf_bitmap) +
1016 (sizeof(struct buffer_head *) * nr_groups);
1017
1018 if (size <= PAGE_SIZE)
Joe Perchesed2ae6f2010-11-04 20:08:04 -07001019 bitmap = kzalloc(size, GFP_KERNEL);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001020 else
Joe Perchesed2ae6f2010-11-04 20:08:04 -07001021 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001022
Joe Perches75b09e02012-01-31 14:42:10 -08001023 if (bitmap == NULL)
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001024 return NULL;
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001025
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001026 bitmap->s_nr_groups = nr_groups;
1027 return bitmap;
1028}
1029
Jan Kara3fb38df2008-04-02 12:26:36 +02001030static int udf_fill_partdesc_info(struct super_block *sb,
1031 struct partitionDesc *p, int p_index)
1032{
1033 struct udf_part_map *map;
1034 struct udf_sb_info *sbi = UDF_SB(sb);
1035 struct partitionHeaderDesc *phd;
1036
1037 map = &sbi->s_partmaps[p_index];
1038
1039 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
1040 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
1041
1042 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
1043 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
1044 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
1045 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
1046 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
1047 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
1048 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
1049 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1050
Joe Perchesa983f362011-10-10 01:08:07 -07001051 udf_debug("Partition (%d type %x) starts at physical %d, block length %d\n",
1052 p_index, map->s_partition_type,
1053 map->s_partition_root, map->s_partition_len);
Jan Kara3fb38df2008-04-02 12:26:36 +02001054
1055 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1056 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1057 return 0;
1058
1059 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1060 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001061 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001062 .logicalBlockNum = le32_to_cpu(
1063 phd->unallocSpaceTable.extPosition),
1064 .partitionReferenceNum = p_index,
1065 };
1066
Pekka Enberg97e961f2008-10-15 12:29:03 +02001067 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001068 if (!map->s_uspace.s_table) {
1069 udf_debug("cannot load unallocSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001070 p_index);
Jan Kara3fb38df2008-04-02 12:26:36 +02001071 return 1;
1072 }
1073 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1074 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001075 p_index, map->s_uspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001076 }
1077
1078 if (phd->unallocSpaceBitmap.extLength) {
1079 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1080 if (!bitmap)
1081 return 1;
1082 map->s_uspace.s_bitmap = bitmap;
Jan Kara3fb38df2008-04-02 12:26:36 +02001083 bitmap->s_extPosition = le32_to_cpu(
1084 phd->unallocSpaceBitmap.extPosition);
1085 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
Joe Perchesa983f362011-10-10 01:08:07 -07001086 udf_debug("unallocSpaceBitmap (part %d) @ %d\n",
1087 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001088 }
1089
1090 if (phd->partitionIntegrityTable.extLength)
1091 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1092
1093 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001094 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001095 .logicalBlockNum = le32_to_cpu(
1096 phd->freedSpaceTable.extPosition),
1097 .partitionReferenceNum = p_index,
1098 };
1099
Pekka Enberg97e961f2008-10-15 12:29:03 +02001100 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001101 if (!map->s_fspace.s_table) {
1102 udf_debug("cannot load freedSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001103 p_index);
Jan Kara3fb38df2008-04-02 12:26:36 +02001104 return 1;
1105 }
1106
1107 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1108 udf_debug("freedSpaceTable (part %d) @ %ld\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001109 p_index, map->s_fspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001110 }
1111
1112 if (phd->freedSpaceBitmap.extLength) {
1113 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1114 if (!bitmap)
1115 return 1;
1116 map->s_fspace.s_bitmap = bitmap;
Jan Kara3fb38df2008-04-02 12:26:36 +02001117 bitmap->s_extPosition = le32_to_cpu(
1118 phd->freedSpaceBitmap.extPosition);
1119 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
Joe Perchesa983f362011-10-10 01:08:07 -07001120 udf_debug("freedSpaceBitmap (part %d) @ %d\n",
1121 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001122 }
1123 return 0;
1124}
1125
Jan Karae971b0b2009-11-30 19:47:55 +01001126static void udf_find_vat_block(struct super_block *sb, int p_index,
1127 int type1_index, sector_t start_block)
1128{
1129 struct udf_sb_info *sbi = UDF_SB(sb);
1130 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1131 sector_t vat_block;
1132 struct kernel_lb_addr ino;
1133
1134 /*
1135 * VAT file entry is in the last recorded block. Some broken disks have
1136 * it a few blocks before so try a bit harder...
1137 */
1138 ino.partitionReferenceNum = type1_index;
1139 for (vat_block = start_block;
1140 vat_block >= map->s_partition_root &&
1141 vat_block >= start_block - 3 &&
1142 !sbi->s_vat_inode; vat_block--) {
1143 ino.logicalBlockNum = vat_block - map->s_partition_root;
1144 sbi->s_vat_inode = udf_iget(sb, &ino);
1145 }
1146}
1147
Jan Kara38b74a52008-04-02 16:01:35 +02001148static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1149{
1150 struct udf_sb_info *sbi = UDF_SB(sb);
1151 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001152 struct buffer_head *bh = NULL;
1153 struct udf_inode_info *vati;
1154 uint32_t pos;
1155 struct virtualAllocationTable20 *vat20;
Jan Kara4bf17af2009-07-14 19:30:23 +02001156 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001157
Jan Karae971b0b2009-11-30 19:47:55 +01001158 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001159 if (!sbi->s_vat_inode &&
1160 sbi->s_last_block != blocks - 1) {
Joe Perches78ace702011-10-10 01:08:05 -07001161 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1162 (unsigned long)sbi->s_last_block,
1163 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001164 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001165 }
Jan Kara38b74a52008-04-02 16:01:35 +02001166 if (!sbi->s_vat_inode)
1167 return 1;
1168
1169 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001170 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001171 map->s_type_specific.s_virtual.s_num_entries =
1172 (sbi->s_vat_inode->i_size - 36) >> 2;
1173 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001174 vati = UDF_I(sbi->s_vat_inode);
1175 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1176 pos = udf_block_map(sbi->s_vat_inode, 0);
1177 bh = sb_bread(sb, pos);
1178 if (!bh)
1179 return 1;
1180 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1181 } else {
1182 vat20 = (struct virtualAllocationTable20 *)
1183 vati->i_ext.i_data;
1184 }
Jan Kara38b74a52008-04-02 16:01:35 +02001185
Jan Kara38b74a52008-04-02 16:01:35 +02001186 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001187 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001188 map->s_type_specific.s_virtual.s_num_entries =
1189 (sbi->s_vat_inode->i_size -
1190 map->s_type_specific.s_virtual.
1191 s_start_offset) >> 2;
1192 brelse(bh);
1193 }
1194 return 0;
1195}
1196
Jan Karac0eb31e2008-04-01 16:50:35 +02001197static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Jan Karac0eb31e2008-04-01 16:50:35 +02001199 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001200 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001201 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001202 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001203 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001204 uint16_t partitionNumber;
1205 uint16_t ident;
1206 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Jan Karac0eb31e2008-04-01 16:50:35 +02001208 bh = udf_read_tagged(sb, block, block, &ident);
1209 if (!bh)
1210 return 1;
1211 if (ident != TAG_IDENT_PD)
1212 goto out_bh;
1213
1214 p = (struct partitionDesc *)bh->b_data;
1215 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001216
Jan Karabfb257a2008-04-08 20:37:21 +02001217 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001218 for (i = 0; i < sbi->s_partitions; i++) {
1219 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001220 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001221 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001222 if (map->s_partition_num == partitionNumber &&
1223 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1224 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001226 }
1227
Jan Kara38b74a52008-04-02 16:01:35 +02001228 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001229 udf_debug("Partition (%d) not found in partition map\n",
1230 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001231 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001232 }
1233
Jan Kara3fb38df2008-04-02 12:26:36 +02001234 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001235
1236 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001237 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1238 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001239 */
1240 type1_idx = i;
1241 for (i = 0; i < sbi->s_partitions; i++) {
1242 map = &sbi->s_partmaps[i];
1243
1244 if (map->s_partition_num == partitionNumber &&
1245 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001246 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1247 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001248 break;
1249 }
1250
1251 if (i >= sbi->s_partitions)
1252 goto out_bh;
1253
1254 ret = udf_fill_partdesc_info(sb, p, i);
1255 if (ret)
1256 goto out_bh;
1257
Jan Karabfb257a2008-04-08 20:37:21 +02001258 if (map->s_partition_type == UDF_METADATA_MAP25) {
1259 ret = udf_load_metadata_files(sb, i);
1260 if (ret) {
Joe Perches78ace702011-10-10 01:08:05 -07001261 udf_err(sb, "error loading MetaData partition map %d\n",
1262 i);
Jan Karabfb257a2008-04-08 20:37:21 +02001263 goto out_bh;
1264 }
1265 } else {
1266 ret = udf_load_vat(sb, i, type1_idx);
1267 if (ret)
1268 goto out_bh;
1269 /*
1270 * Mark filesystem read-only if we have a partition with
1271 * virtual map since we don't handle writing to it (we
1272 * overwrite blocks instead of relocating them).
1273 */
1274 sb->s_flags |= MS_RDONLY;
Joe Perches78ace702011-10-10 01:08:05 -07001275 pr_notice("Filesystem marked read-only because writing to pseudooverwrite partition is not implemented\n");
Jan Karabfb257a2008-04-08 20:37:21 +02001276 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001277out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001278 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001279 brelse(bh);
1280 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
Jan Kara1df2ae32012-06-27 21:23:07 +02001283static int udf_load_sparable_map(struct super_block *sb,
1284 struct udf_part_map *map,
1285 struct sparablePartitionMap *spm)
1286{
1287 uint32_t loc;
1288 uint16_t ident;
1289 struct sparingTable *st;
1290 struct udf_sparing_data *sdata = &map->s_type_specific.s_sparing;
1291 int i;
1292 struct buffer_head *bh;
1293
1294 map->s_partition_type = UDF_SPARABLE_MAP15;
1295 sdata->s_packet_len = le16_to_cpu(spm->packetLength);
1296 if (!is_power_of_2(sdata->s_packet_len)) {
1297 udf_err(sb, "error loading logical volume descriptor: "
1298 "Invalid packet length %u\n",
1299 (unsigned)sdata->s_packet_len);
1300 return -EIO;
1301 }
1302 if (spm->numSparingTables > 4) {
1303 udf_err(sb, "error loading logical volume descriptor: "
1304 "Too many sparing tables (%d)\n",
1305 (int)spm->numSparingTables);
1306 return -EIO;
1307 }
1308
1309 for (i = 0; i < spm->numSparingTables; i++) {
1310 loc = le32_to_cpu(spm->locSparingTable[i]);
1311 bh = udf_read_tagged(sb, loc, loc, &ident);
1312 if (!bh)
1313 continue;
1314
1315 st = (struct sparingTable *)bh->b_data;
1316 if (ident != 0 ||
1317 strncmp(st->sparingIdent.ident, UDF_ID_SPARING,
1318 strlen(UDF_ID_SPARING)) ||
1319 sizeof(*st) + le16_to_cpu(st->reallocationTableLen) >
1320 sb->s_blocksize) {
1321 brelse(bh);
1322 continue;
1323 }
1324
1325 sdata->s_spar_map[i] = bh;
1326 }
1327 map->s_partition_func = udf_get_pblock_spar15;
1328 return 0;
1329}
1330
Jan Karac0eb31e2008-04-01 16:50:35 +02001331static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001332 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
1334 struct logicalVolDesc *lvd;
Jan Kara1df2ae32012-06-27 21:23:07 +02001335 int i, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001337 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001338 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001339 uint16_t ident;
1340 struct buffer_head *bh;
Jan Karaadee11b2012-06-27 20:20:22 +02001341 unsigned int table_len;
Jan Karac0eb31e2008-04-01 16:50:35 +02001342 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Jan Karac0eb31e2008-04-01 16:50:35 +02001344 bh = udf_read_tagged(sb, block, block, &ident);
1345 if (!bh)
1346 return 1;
1347 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 lvd = (struct logicalVolDesc *)bh->b_data;
Jan Karaadee11b2012-06-27 20:20:22 +02001349 table_len = le32_to_cpu(lvd->mapTableLength);
Jan Kara57b96552012-07-10 17:58:04 +02001350 if (table_len > sb->s_blocksize - sizeof(*lvd)) {
Jan Karaadee11b2012-06-27 20:20:22 +02001351 udf_err(sb, "error loading logical volume descriptor: "
1352 "Partition table too long (%u > %lu)\n", table_len,
1353 sb->s_blocksize - sizeof(*lvd));
Nikola Pajkovsky68766a22012-08-15 00:38:08 +02001354 ret = 1;
Jan Karaadee11b2012-06-27 20:20:22 +02001355 goto out_bh;
1356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Jan Karacb14d342012-06-27 20:08:44 +02001358 ret = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
1359 if (ret)
Jan Karac0eb31e2008-04-01 16:50:35 +02001360 goto out_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001362 for (i = 0, offset = 0;
Jan Karaadee11b2012-06-27 20:20:22 +02001363 i < sbi->s_partitions && offset < table_len;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001364 i++, offset += gpm->partitionMapLength) {
1365 struct udf_part_map *map = &sbi->s_partmaps[i];
1366 gpm = (struct genericPartitionMap *)
1367 &(lvd->partitionMaps[offset]);
1368 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001369 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001370 struct genericPartitionMap1 *gpm1 =
1371 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001372 map->s_partition_type = UDF_TYPE1_MAP15;
1373 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1374 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1375 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001376 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001377 struct udfPartitionMap2 *upm2 =
1378 (struct udfPartitionMap2 *)gpm;
1379 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1380 strlen(UDF_ID_VIRTUAL))) {
1381 u16 suf =
1382 le16_to_cpu(((__le16 *)upm2->partIdent.
1383 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001384 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001385 map->s_partition_type =
1386 UDF_VIRTUAL_MAP15;
1387 map->s_partition_func =
1388 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001389 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001390 map->s_partition_type =
1391 UDF_VIRTUAL_MAP20;
1392 map->s_partition_func =
1393 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001395 } else if (!strncmp(upm2->partIdent.ident,
1396 UDF_ID_SPARABLE,
1397 strlen(UDF_ID_SPARABLE))) {
Jan Kara1df2ae32012-06-27 21:23:07 +02001398 if (udf_load_sparable_map(sb, map,
Nikola Pajkovsky68766a22012-08-15 00:38:08 +02001399 (struct sparablePartitionMap *)gpm) < 0) {
1400 ret = 1;
Jan Kara1df2ae32012-06-27 21:23:07 +02001401 goto out_bh;
Nikola Pajkovsky68766a22012-08-15 00:38:08 +02001402 }
Jan Karabfb257a2008-04-08 20:37:21 +02001403 } else if (!strncmp(upm2->partIdent.ident,
1404 UDF_ID_METADATA,
1405 strlen(UDF_ID_METADATA))) {
1406 struct udf_meta_data *mdata =
1407 &map->s_type_specific.s_metadata;
1408 struct metadataPartitionMap *mdm =
1409 (struct metadataPartitionMap *)
1410 &(lvd->partitionMaps[offset]);
Joe Perchesa983f362011-10-10 01:08:07 -07001411 udf_debug("Parsing Logical vol part %d type %d id=%s\n",
1412 i, type, UDF_ID_METADATA);
Jan Karabfb257a2008-04-08 20:37:21 +02001413
1414 map->s_partition_type = UDF_METADATA_MAP25;
1415 map->s_partition_func = udf_get_pblock_meta25;
1416
1417 mdata->s_meta_file_loc =
1418 le32_to_cpu(mdm->metadataFileLoc);
1419 mdata->s_mirror_file_loc =
1420 le32_to_cpu(mdm->metadataMirrorFileLoc);
1421 mdata->s_bitmap_file_loc =
1422 le32_to_cpu(mdm->metadataBitmapFileLoc);
1423 mdata->s_alloc_unit_size =
1424 le32_to_cpu(mdm->allocUnitSize);
1425 mdata->s_align_unit_size =
1426 le16_to_cpu(mdm->alignUnitSize);
Jan Karaed47a7d2011-10-24 16:47:48 +02001427 if (mdm->flags & 0x01)
1428 mdata->s_flags |= MF_DUPLICATE_MD;
Jan Karabfb257a2008-04-08 20:37:21 +02001429
1430 udf_debug("Metadata Ident suffix=0x%x\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001431 le16_to_cpu(*(__le16 *)
1432 mdm->partIdent.identSuffix));
Jan Karabfb257a2008-04-08 20:37:21 +02001433 udf_debug("Metadata part num=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001434 le16_to_cpu(mdm->partitionNum));
Jan Karabfb257a2008-04-08 20:37:21 +02001435 udf_debug("Metadata part alloc unit size=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001436 le32_to_cpu(mdm->allocUnitSize));
Jan Karabfb257a2008-04-08 20:37:21 +02001437 udf_debug("Metadata file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001438 le32_to_cpu(mdm->metadataFileLoc));
Jan Karabfb257a2008-04-08 20:37:21 +02001439 udf_debug("Mirror file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001440 le32_to_cpu(mdm->metadataMirrorFileLoc));
Jan Karabfb257a2008-04-08 20:37:21 +02001441 udf_debug("Bitmap file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001442 le32_to_cpu(mdm->metadataBitmapFileLoc));
Jan Karaed47a7d2011-10-24 16:47:48 +02001443 udf_debug("Flags: %d %d\n",
1444 mdata->s_flags, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001445 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001446 udf_debug("Unknown ident: %s\n",
1447 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 continue;
1449 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001450 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1451 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
1453 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001454 i, map->s_partition_num, type, map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001457 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001458 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 *fileset = lelb_to_cpu(la->extLocation);
Joe Perchesa983f362011-10-10 01:08:07 -07001461 udf_debug("FileSet found in LogicalVolDesc at block=%d, partition=%d\n",
1462 fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001463 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465 if (lvd->integritySeqExt.extLength)
1466 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001467
Jan Karac0eb31e2008-04-01 16:50:35 +02001468out_bh:
1469 brelse(bh);
1470 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471}
1472
1473/*
1474 * udf_load_logicalvolint
1475 *
1476 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001477static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
1479 struct buffer_head *bh = NULL;
1480 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001481 struct udf_sb_info *sbi = UDF_SB(sb);
1482 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001485 (bh = udf_read_tagged(sb, loc.extLocation,
1486 loc.extLocation, &ident)) &&
1487 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001488 sbi->s_lvid_bh = bh;
1489 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001490
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001491 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001492 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001493 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001494
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001495 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001496 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001498 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001500 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001501 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
1504/*
1505 * udf_process_sequence
1506 *
1507 * PURPOSE
1508 * Process a main/reserve volume descriptor sequence.
1509 *
1510 * PRE-CONDITIONS
1511 * sb Pointer to _locked_ superblock.
1512 * block First block of first extent of the sequence.
1513 * lastblock Lastblock of first extent of the sequence.
1514 *
1515 * HISTORY
1516 * July 1, 1997 - Andrew E. Mileski
1517 * Written, tested, and released.
1518 */
Jan Kara200a3592008-03-04 13:03:09 +01001519static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001520 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
1522 struct buffer_head *bh = NULL;
1523 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001524 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 struct generic_desc *gd;
1526 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001527 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 uint32_t vdsn;
1529 uint16_t ident;
1530 long next_s = 0, next_e = 0;
1531
1532 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1533
Jan Karac0eb31e2008-04-01 16:50:35 +02001534 /*
1535 * Read the main descriptor sequence and find which descriptors
1536 * are in it.
1537 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001538 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
1540 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001541 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07001542 udf_err(sb,
1543 "Block %llu of volume descriptor sequence is corrupted or we could not read it\n",
1544 (unsigned long long)block);
Jan Karac0eb31e2008-04-01 16:50:35 +02001545 return 1;
1546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1549 gd = (struct generic_desc *)bh->b_data;
1550 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001551 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001552 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001553 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1554 if (vdsn >= curr->volDescSeqNum) {
1555 curr->volDescSeqNum = vdsn;
1556 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001557 }
1558 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001559 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001560 curr = &vds[VDS_POS_VOL_DESC_PTR];
1561 if (vdsn >= curr->volDescSeqNum) {
1562 curr->volDescSeqNum = vdsn;
1563 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001565 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001566 next_s = le32_to_cpu(
1567 vdp->nextVolDescSeqExt.extLocation);
1568 next_e = le32_to_cpu(
1569 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001570 next_e = next_e >> sb->s_blocksize_bits;
1571 next_e += next_s;
1572 }
1573 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001574 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001575 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1576 if (vdsn >= curr->volDescSeqNum) {
1577 curr->volDescSeqNum = vdsn;
1578 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001579 }
1580 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001581 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001582 curr = &vds[VDS_POS_PARTITION_DESC];
1583 if (!curr->block)
1584 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001585 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001586 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001587 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1588 if (vdsn >= curr->volDescSeqNum) {
1589 curr->volDescSeqNum = vdsn;
1590 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001591 }
1592 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001593 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001594 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1595 if (vdsn >= curr->volDescSeqNum) {
1596 curr->volDescSeqNum = vdsn;
1597 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001598 }
1599 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001600 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001601 vds[VDS_POS_TERMINATING_DESC].block = block;
1602 if (next_e) {
1603 block = next_s;
1604 lastblock = next_e;
1605 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001606 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001607 done = 1;
1608 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001610 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001612 /*
1613 * Now read interesting descriptors again and process them
1614 * in a suitable order
1615 */
1616 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
Joe Perches78ace702011-10-10 01:08:05 -07001617 udf_err(sb, "Primary Volume Descriptor not found!\n");
Jan Karac0eb31e2008-04-01 16:50:35 +02001618 return 1;
1619 }
1620 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1621 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Jan Karac0eb31e2008-04-01 16:50:35 +02001623 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1624 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1625 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001626
Jan Karac0eb31e2008-04-01 16:50:35 +02001627 if (vds[VDS_POS_PARTITION_DESC].block) {
1628 /*
1629 * We rescan the whole descriptor sequence to find
1630 * partition descriptor blocks and process them.
1631 */
1632 for (block = vds[VDS_POS_PARTITION_DESC].block;
1633 block < vds[VDS_POS_TERMINATING_DESC].block;
1634 block++)
1635 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001636 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
1638
1639 return 0;
1640}
1641
Jan Kara40346002009-03-19 16:21:38 +01001642static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1643 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Jan Kara40346002009-03-19 16:21:38 +01001645 struct anchorVolDescPtr *anchor;
1646 long main_s, main_e, reserve_s, reserve_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Jan Kara40346002009-03-19 16:21:38 +01001648 anchor = (struct anchorVolDescPtr *)bh->b_data;
1649
1650 /* Locate the main sequence */
1651 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1652 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1653 main_e = main_e >> sb->s_blocksize_bits;
1654 main_e += main_s;
1655
1656 /* Locate the reserve sequence */
1657 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1658 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1659 reserve_e = reserve_e >> sb->s_blocksize_bits;
1660 reserve_e += reserve_s;
1661
1662 /* Process the main & reserve sequences */
1663 /* responsible for finding the PartitionDesc(s) */
1664 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1665 return 1;
Jan Karabff943a2012-06-27 22:27:05 +02001666 udf_sb_free_partitions(sb);
1667 if (!udf_process_sequence(sb, reserve_s, reserve_e, fileset))
1668 return 1;
1669 udf_sb_free_partitions(sb);
1670 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671}
1672
Jan Kara40346002009-03-19 16:21:38 +01001673/*
1674 * Check whether there is an anchor block in the given block and
1675 * load Volume Descriptor Sequence if so.
1676 */
1677static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1678 struct kernel_lb_addr *fileset)
1679{
1680 struct buffer_head *bh;
1681 uint16_t ident;
1682 int ret;
1683
1684 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1685 udf_fixed_to_variable(block) >=
1686 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1687 return 0;
1688
1689 bh = udf_read_tagged(sb, block, block, &ident);
1690 if (!bh)
1691 return 0;
1692 if (ident != TAG_IDENT_AVDP) {
1693 brelse(bh);
1694 return 0;
1695 }
1696 ret = udf_load_sequence(sb, bh, fileset);
1697 brelse(bh);
1698 return ret;
1699}
1700
1701/* Search for an anchor volume descriptor pointer */
1702static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1703 struct kernel_lb_addr *fileset)
1704{
1705 sector_t last[6];
1706 int i;
1707 struct udf_sb_info *sbi = UDF_SB(sb);
1708 int last_count = 0;
1709
1710 /* First try user provided anchor */
1711 if (sbi->s_anchor) {
1712 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1713 return lastblock;
1714 }
1715 /*
1716 * according to spec, anchor is in either:
1717 * block 256
1718 * lastblock-256
1719 * lastblock
1720 * however, if the disc isn't closed, it could be 512.
1721 */
1722 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1723 return lastblock;
1724 /*
1725 * The trouble is which block is the last one. Drives often misreport
1726 * this so we try various possibilities.
1727 */
1728 last[last_count++] = lastblock;
1729 if (lastblock >= 1)
1730 last[last_count++] = lastblock - 1;
1731 last[last_count++] = lastblock + 1;
1732 if (lastblock >= 2)
1733 last[last_count++] = lastblock - 2;
1734 if (lastblock >= 150)
1735 last[last_count++] = lastblock - 150;
1736 if (lastblock >= 152)
1737 last[last_count++] = lastblock - 152;
1738
1739 for (i = 0; i < last_count; i++) {
1740 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1741 sb->s_blocksize_bits)
1742 continue;
1743 if (udf_check_anchor_block(sb, last[i], fileset))
1744 return last[i];
1745 if (last[i] < 256)
1746 continue;
1747 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1748 return last[i];
1749 }
1750
1751 /* Finally try block 512 in case media is open */
1752 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1753 return last[0];
1754 return 0;
1755}
1756
1757/*
1758 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1759 * area specified by it. The function expects sbi->s_lastblock to be the last
1760 * block on the media.
1761 *
1762 * Return 1 if ok, 0 if not found.
1763 *
1764 */
1765static int udf_find_anchor(struct super_block *sb,
1766 struct kernel_lb_addr *fileset)
1767{
1768 sector_t lastblock;
1769 struct udf_sb_info *sbi = UDF_SB(sb);
1770
1771 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1772 if (lastblock)
1773 goto out;
1774
1775 /* No anchor found? Try VARCONV conversion of block numbers */
1776 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1777 /* Firstly, we try to not convert number of the last block */
1778 lastblock = udf_scan_anchors(sb,
1779 udf_variable_to_fixed(sbi->s_last_block),
1780 fileset);
1781 if (lastblock)
1782 goto out;
1783
1784 /* Secondly, we try with converted number of the last block */
1785 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1786 if (!lastblock) {
1787 /* VARCONV didn't help. Clear it. */
1788 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1789 return 0;
1790 }
1791out:
1792 sbi->s_last_block = lastblock;
1793 return 1;
1794}
1795
1796/*
1797 * Check Volume Structure Descriptor, find Anchor block and load Volume
1798 * Descriptor Sequence
1799 */
1800static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1801 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001802{
1803 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara40346002009-03-19 16:21:38 +01001804 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001805
1806 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1807 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001808 udf_warn(sb, "Bad block size\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001809 return 0;
1810 }
1811 sbi->s_last_block = uopt->lastblock;
Jan Kara40346002009-03-19 16:21:38 +01001812 if (!uopt->novrs) {
1813 /* Check that it is NSR02 compliant */
1814 nsr_off = udf_check_vsd(sb);
1815 if (!nsr_off) {
1816 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001817 udf_warn(sb, "No VRS found\n");
Jan Kara40346002009-03-19 16:21:38 +01001818 return 0;
1819 }
1820 if (nsr_off == -1)
Joe Perchesa983f362011-10-10 01:08:07 -07001821 udf_debug("Failed to read byte 32768. Assuming open disc. Skipping validity check\n");
Jan Kara40346002009-03-19 16:21:38 +01001822 if (!sbi->s_last_block)
1823 sbi->s_last_block = udf_get_last_block(sb);
1824 } else {
1825 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001826 }
Jan Kara40346002009-03-19 16:21:38 +01001827
1828 /* Look for anchor block and load Volume Descriptor Sequence */
1829 sbi->s_anchor = uopt->anchor;
1830 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001831 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001832 udf_warn(sb, "No anchor found\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001833 return 0;
1834 }
1835 return 1;
1836}
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838static void udf_open_lvid(struct super_block *sb)
1839{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001840 struct udf_sb_info *sbi = UDF_SB(sb);
1841 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001842 struct logicalVolIntegrityDesc *lvid;
1843 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001844
Marcin Slusarz165923f2008-02-10 11:33:08 +01001845 if (!bh)
1846 return;
Jan Kara949f4a72010-10-20 18:49:20 +02001847
1848 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001849 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1850 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Marcin Slusarz165923f2008-02-10 11:33:08 +01001852 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1853 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1854 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1855 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001856 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Marcin Slusarz165923f2008-02-10 11:33:08 +01001858 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001859 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001860 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001861
1862 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1863 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001864 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001865 mutex_unlock(&sbi->s_alloc_mutex);
Jan Kara9734c972013-01-17 22:11:38 +01001866 /* Make opening of filesystem visible on the media immediately */
1867 sync_dirty_buffer(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
1869
1870static void udf_close_lvid(struct super_block *sb)
1871{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001872 struct udf_sb_info *sbi = UDF_SB(sb);
1873 struct buffer_head *bh = sbi->s_lvid_bh;
1874 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001875 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001876
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001877 if (!bh)
1878 return;
1879
Jan Kara949f4a72010-10-20 18:49:20 +02001880 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001881 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001882 lvidiu = udf_sb_lvidiu(sbi);
1883 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1884 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1885 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1886 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1887 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1888 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1889 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1890 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1891 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1892 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Marcin Slusarz165923f2008-02-10 11:33:08 +01001894 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001895 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001896 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001897
1898 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
Jan Kara853a0c22011-12-23 11:53:07 +01001899 /*
1900 * We set buffer uptodate unconditionally here to avoid spurious
1901 * warnings from mark_buffer_dirty() when previous EIO has marked
1902 * the buffer as !uptodate
1903 */
1904 set_buffer_uptodate(bh);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001905 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001906 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001907 mutex_unlock(&sbi->s_alloc_mutex);
Jan Kara9734c972013-01-17 22:11:38 +01001908 /* Make closing of filesystem visible on the media immediately */
1909 sync_dirty_buffer(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
Jan Karad664b6a2010-10-20 18:28:46 +02001912u64 lvid_get_unique_id(struct super_block *sb)
1913{
1914 struct buffer_head *bh;
1915 struct udf_sb_info *sbi = UDF_SB(sb);
1916 struct logicalVolIntegrityDesc *lvid;
1917 struct logicalVolHeaderDesc *lvhd;
1918 u64 uniqueID;
1919 u64 ret;
1920
1921 bh = sbi->s_lvid_bh;
1922 if (!bh)
1923 return 0;
1924
1925 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1926 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
1927
1928 mutex_lock(&sbi->s_alloc_mutex);
1929 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
1930 if (!(++uniqueID & 0xFFFFFFFF))
1931 uniqueID += 16;
1932 lvhd->uniqueID = cpu_to_le64(uniqueID);
1933 mutex_unlock(&sbi->s_alloc_mutex);
1934 mark_buffer_dirty(bh);
1935
1936 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937}
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939static int udf_fill_super(struct super_block *sb, void *options, int silent)
1940{
Jan Kara40346002009-03-19 16:21:38 +01001941 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001942 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001944 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 struct udf_sb_info *sbi;
1946
1947 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001948 uopt.uid = INVALID_UID;
1949 uopt.gid = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001951 uopt.fmode = UDF_INVALID_MODE;
1952 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001954 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Alessio Igor Bogani9db9f9e2010-11-16 18:40:49 +01001955 if (!sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001960 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Miklos Szeredi6da80892008-02-08 04:21:50 -08001962 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 goto error_out;
1964
1965 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001966 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Joe Perches8076c362011-10-10 01:08:03 -07001967 udf_err(sb, "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 goto error_out;
1969 }
1970#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001971 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 uopt.nls_map = load_nls_default();
1973 if (!uopt.nls_map)
1974 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1975 else
1976 udf_debug("Using default NLS map\n");
1977 }
1978#endif
1979 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1980 uopt.flags |= (1 << UDF_FLAG_UTF8);
1981
1982 fileset.logicalBlockNum = 0xFFFFFFFF;
1983 fileset.partitionReferenceNum = 0xFFFF;
1984
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001985 sbi->s_flags = uopt.flags;
1986 sbi->s_uid = uopt.uid;
1987 sbi->s_gid = uopt.gid;
1988 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001989 sbi->s_fmode = uopt.fmode;
1990 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001991 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02001992 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001994 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001995 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001997 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001999 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 /* Fill in the rest of the superblock */
2002 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02002003 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 sb->s_magic = UDF_SUPER_MAGIC;
2006 sb->s_time_gran = 1000;
2007
Jan Kara40346002009-03-19 16:21:38 +01002008 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
2009 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2010 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04002011 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara40346002009-03-19 16:21:38 +01002012 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2013 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
2014 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07002015 pr_notice("Rescanning with blocksize %d\n",
2016 UDF_DEFAULT_BLOCKSIZE);
Ashish Sangwandc141a42012-07-21 16:35:17 +05302017 brelse(sbi->s_lvid_bh);
2018 sbi->s_lvid_bh = NULL;
Jan Kara40346002009-03-19 16:21:38 +01002019 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
2020 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2021 }
2022 }
2023 if (!ret) {
Joe Perches78ace702011-10-10 01:08:05 -07002024 udf_warn(sb, "No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 goto error_out;
2026 }
2027
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002028 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002030 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002031 struct logicalVolIntegrityDescImpUse *lvidiu =
2032 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002033 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2034 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002035 /* uint16_t maxUDFWriteRev =
2036 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002038 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Joe Perches78ace702011-10-10 01:08:05 -07002039 udf_err(sb, "minUDFReadRev=%x (max is %x)\n",
2040 le16_to_cpu(lvidiu->minUDFReadRev),
2041 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002043 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002046 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2049 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2050 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2051 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2052 }
2053
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002054 if (!sbi->s_partitions) {
Joe Perches78ace702011-10-10 01:08:05 -07002055 udf_warn(sb, "No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 goto error_out;
2057 }
2058
Marcin Slusarz4b111112008-02-08 04:20:36 -08002059 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2060 UDF_PART_FLAG_READ_ONLY) {
Joe Perches78ace702011-10-10 01:08:05 -07002061 pr_notice("Partition marked readonly; forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002062 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002063 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002064
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002065 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Joe Perches78ace702011-10-10 01:08:05 -07002066 udf_warn(sb, "No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 goto error_out;
2068 }
2069
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002070 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002071 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002072 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Joe Perches78ace702011-10-10 01:08:05 -07002073 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2074 sbi->s_volume_ident,
2075 le16_to_cpu(ts.year), ts.month, ts.day,
Marcin Slusarz56774802008-02-10 11:25:31 +01002076 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
2078 if (!(sb->s_flags & MS_RDONLY))
2079 udf_open_lvid(sb);
2080
2081 /* Assign the root inode */
2082 /* assign inodes by physical block number */
2083 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002084 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002085 if (!inode) {
Joe Perches78ace702011-10-10 01:08:05 -07002086 udf_err(sb, "Error in udf_iget, block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002087 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 goto error_out;
2089 }
2090
2091 /* Allocate a dentry for the root inode */
Al Viro48fde702012-01-08 22:15:13 -05002092 sb->s_root = d_make_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002093 if (!sb->s_root) {
Joe Perches78ace702011-10-10 01:08:05 -07002094 udf_err(sb, "Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 goto error_out;
2096 }
Jan Kara31170b62007-05-08 00:35:21 -07002097 sb->s_maxbytes = MAX_LFS_FILESIZE;
Al Viro8de52772012-02-06 12:45:27 -05002098 sb->s_max_links = UDF_MAX_LINKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 return 0;
2100
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002101error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002102 if (sbi->s_vat_inode)
2103 iput(sbi->s_vat_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104#ifdef CONFIG_UDF_NLS
2105 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002106 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107#endif
2108 if (!(sb->s_flags & MS_RDONLY))
2109 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002110 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002111 udf_sb_free_partitions(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 kfree(sbi);
2113 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 return -EINVAL;
2116}
2117
Joe Perches8076c362011-10-10 01:08:03 -07002118void _udf_err(struct super_block *sb, const char *function,
2119 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Joe Perchesc2bff362011-10-10 01:08:06 -07002121 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 va_list args;
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002125
2126 vaf.fmt = fmt;
2127 vaf.va = &args;
2128
2129 pr_err("error (device %s): %s: %pV", sb->s_id, function, &vaf);
2130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132}
2133
Joe Perchesa40ecd72011-10-10 01:08:04 -07002134void _udf_warn(struct super_block *sb, const char *function,
2135 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
Joe Perchesc2bff362011-10-10 01:08:06 -07002137 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 va_list args;
2139
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002140 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002141
2142 vaf.fmt = fmt;
2143 vaf.va = &args;
2144
2145 pr_warn("warning (device %s): %s: %pV", sb->s_id, function, &vaf);
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
2149
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002150static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002152 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002154 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002155
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002156 if (sbi->s_vat_inode)
2157 iput(sbi->s_vat_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158#ifdef CONFIG_UDF_NLS
2159 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002160 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161#endif
2162 if (!(sb->s_flags & MS_RDONLY))
2163 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002164 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002165 udf_sb_free_partitions(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 kfree(sb->s_fs_info);
2167 sb->s_fs_info = NULL;
2168}
2169
Jan Kara146bca72009-03-16 18:27:37 +01002170static int udf_sync_fs(struct super_block *sb, int wait)
2171{
2172 struct udf_sb_info *sbi = UDF_SB(sb);
2173
2174 mutex_lock(&sbi->s_alloc_mutex);
2175 if (sbi->s_lvid_dirty) {
2176 /*
2177 * Blockdevice will be synced later so we don't have to submit
2178 * the buffer for IO
2179 */
2180 mark_buffer_dirty(sbi->s_lvid_bh);
Jan Kara146bca72009-03-16 18:27:37 +01002181 sbi->s_lvid_dirty = 0;
2182 }
2183 mutex_unlock(&sbi->s_alloc_mutex);
2184
2185 return 0;
2186}
2187
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002188static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
David Howells726c3342006-06-23 02:02:58 -07002190 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002191 struct udf_sb_info *sbi = UDF_SB(sb);
2192 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002193 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002194
2195 if (sbi->s_lvid_bh != NULL)
2196 lvidiu = udf_sb_lvidiu(sbi);
2197 else
2198 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 buf->f_type = UDF_SUPER_MAGIC;
2201 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002202 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 buf->f_bfree = udf_count_free(sb);
2204 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002205 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2206 le32_to_cpu(lvidiu->numDirs)) : 0)
2207 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002209 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002210 buf->f_fsid.val[0] = (u32)id;
2211 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 return 0;
2214}
2215
Marcin Slusarz4b111112008-02-08 04:20:36 -08002216static unsigned int udf_count_free_bitmap(struct super_block *sb,
2217 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
2219 struct buffer_head *bh = NULL;
2220 unsigned int accum = 0;
2221 int index;
2222 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002223 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 uint8_t *ptr;
2226 uint16_t ident;
2227 struct spaceBitmapDesc *bm;
2228
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002230 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002231 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002233 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07002234 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002236 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002237 brelse(bh);
Joe Perches78ace702011-10-10 01:08:05 -07002238 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 goto out;
2240 }
2241
2242 bm = (struct spaceBitmapDesc *)bh->b_data;
2243 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002244 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2245 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002247 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002248 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2249 accum += bitmap_weight((const unsigned long *)(ptr + index),
2250 cur_bytes * 8);
2251 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002252 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002253 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002254 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002256 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 udf_debug("read failed\n");
2258 goto out;
2259 }
2260 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002261 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
2263 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002264 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002265out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 return accum;
2267}
2268
Marcin Slusarz4b111112008-02-08 04:20:36 -08002269static unsigned int udf_count_free_table(struct super_block *sb,
2270 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
2272 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002273 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002274 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002276 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Jan Karad1668fe2010-10-20 23:24:12 +02002278 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002279 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002280 epos.offset = sizeof(struct unallocSpaceEntry);
2281 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002283 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002285
Jan Kara3bf25cb2007-05-08 00:35:16 -07002286 brelse(epos.bh);
Jan Karad1668fe2010-10-20 23:24:12 +02002287 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 return accum;
2290}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002291
2292static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
2294 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002295 struct udf_sb_info *sbi;
2296 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002298 sbi = UDF_SB(sb);
2299 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002300 struct logicalVolIntegrityDesc *lvid =
2301 (struct logicalVolIntegrityDesc *)
2302 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002303 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002304 accum = le32_to_cpu(
2305 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (accum == 0xFFFFFFFF)
2307 accum = 0;
2308 }
2309 }
2310
2311 if (accum)
2312 return accum;
2313
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002314 map = &sbi->s_partmaps[sbi->s_partition];
2315 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002316 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002317 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002319 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002320 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002321 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 }
2323 if (accum)
2324 return accum;
2325
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002326 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002327 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002328 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002330 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002331 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002332 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334
2335 return accum;
2336}