blob: 38c705574b9239610119689d53aab87069c1ecad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * super.c
3 *
4 * PURPOSE
5 * Super block routines for the OSTA-UDF(tm) filesystem.
6 *
7 * DESCRIPTION
8 * OSTA-UDF(tm) = Optical Storage Technology Association
9 * Universal Disk Format.
10 *
11 * This code is based on version 2.00 of the UDF specification,
12 * and revision 3 of the ECMA 167 standard [equivalent to ISO 13346].
13 * http://www.osta.org/
14 * http://www.ecma.ch/
15 * http://www.iso.org/
16 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * COPYRIGHT
18 * This file is distributed under the terms of the GNU General Public
19 * License (GPL). Copies of the GPL can be obtained from:
20 * ftp://prep.ai.mit.edu/pub/gnu/GPL
21 * Each contributing author retains all rights to their own work.
22 *
23 * (C) 1998 Dave Boynton
24 * (C) 1998-2004 Ben Fennema
25 * (C) 2000 Stelias Computing Inc
26 *
27 * HISTORY
28 *
29 * 09/24/98 dgb changed to allow compiling outside of kernel, and
30 * added some debugging.
31 * 10/01/98 dgb updated to allow (some) possibility of compiling w/2.0.34
32 * 10/16/98 attempting some multi-session support
33 * 10/17/98 added freespace count for "df"
34 * 11/11/98 gr added novrs option
35 * 11/26/98 dgb added fileset,anchor mount options
Marcin Slusarz3a71fc52008-02-08 04:20:28 -080036 * 12/06/98 blf really hosed things royally. vat/sparing support. sequenced
37 * vol descs. rewrote option handling based on isofs
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * 12/20/98 find the free space bitmap (if it exists)
39 */
40
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070041#include "udfdecl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/blkdev.h>
44#include <linux/slab.h>
45#include <linux/kernel.h>
46#include <linux/module.h>
47#include <linux/parser.h>
48#include <linux/stat.h>
49#include <linux/cdrom.h>
50#include <linux/nls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/buffer_head.h>
52#include <linux/vfs.h>
53#include <linux/vmalloc.h>
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -080054#include <linux/errno.h>
Miklos Szeredi6da80892008-02-08 04:21:50 -080055#include <linux/mount.h>
56#include <linux/seq_file.h>
Marcin Slusarz01b954a2008-02-02 22:37:07 +010057#include <linux/bitmap.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020058#include <linux/crc-itu-t.h>
Jan Kara1df2ae32012-06-27 21:23:07 +020059#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/byteorder.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include "udf_sb.h"
63#include "udf_i.h"
64
65#include <linux/init.h>
66#include <asm/uaccess.h>
67
68#define VDS_POS_PRIMARY_VOL_DESC 0
69#define VDS_POS_UNALLOC_SPACE_DESC 1
70#define VDS_POS_LOGICAL_VOL_DESC 2
71#define VDS_POS_PARTITION_DESC 3
72#define VDS_POS_IMP_USE_VOL_DESC 4
73#define VDS_POS_VOL_DESC_PTR 5
74#define VDS_POS_TERMINATING_DESC 6
75#define VDS_POS_LENGTH 7
76
Miklos Szeredi6da80892008-02-08 04:21:50 -080077#define UDF_DEFAULT_BLOCKSIZE 2048
78
Al Viro8de52772012-02-06 12:45:27 -050079enum { UDF_MAX_LINKS = 0xffff };
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* These are the "meat" - everything else is stuffing */
82static int udf_fill_super(struct super_block *, void *, int);
83static void udf_put_super(struct super_block *);
Jan Kara146bca72009-03-16 18:27:37 +010084static int udf_sync_fs(struct super_block *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static int udf_remount_fs(struct super_block *, int *, char *);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020086static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020087static int udf_find_fileset(struct super_block *, struct kernel_lb_addr *,
88 struct kernel_lb_addr *);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070089static void udf_load_fileset(struct super_block *, struct buffer_head *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020090 struct kernel_lb_addr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static void udf_open_lvid(struct super_block *);
92static void udf_close_lvid(struct super_block *);
93static unsigned int udf_count_free(struct super_block *);
David Howells726c3342006-06-23 02:02:58 -070094static int udf_statfs(struct dentry *, struct kstatfs *);
Al Viro34c80b12011-12-08 21:32:45 -050095static int udf_show_options(struct seq_file *, struct dentry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Marcin Slusarz6c79e982008-02-08 04:20:30 -080097struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
98{
Marcin Slusarz4b111112008-02-08 04:20:36 -080099 struct logicalVolIntegrityDesc *lvid =
100 (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800101 __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800102 __u32 offset = number_of_partitions * 2 *
103 sizeof(uint32_t)/sizeof(uint8_t);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800104 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* UDF filesystem type */
Al Viro152a0832010-07-25 00:46:55 +0400108static struct dentry *udf_mount(struct file_system_type *fs_type,
109 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Al Viro152a0832010-07-25 00:46:55 +0400111 return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114static struct file_system_type udf_fstype = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700115 .owner = THIS_MODULE,
116 .name = "udf",
Al Viro152a0832010-07-25 00:46:55 +0400117 .mount = udf_mount,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700118 .kill_sb = kill_block_super,
119 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700122static struct kmem_cache *udf_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124static struct inode *udf_alloc_inode(struct super_block *sb)
125{
126 struct udf_inode_info *ei;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800127 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (!ei)
129 return NULL;
Dan Bastone95f87972006-08-13 23:24:18 -0700130
131 ei->i_unique = 0;
132 ei->i_lenExtents = 0;
133 ei->i_next_alloc_block = 0;
134 ei->i_next_alloc_goal = 0;
135 ei->i_strat4096 = 0;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100136 init_rwsem(&ei->i_data_sem);
Dan Bastone95f87972006-08-13 23:24:18 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return &ei->vfs_inode;
139}
140
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100141static void udf_i_callback(struct rcu_head *head)
142{
143 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100144 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static void udf_destroy_inode(struct inode *inode)
148{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100149 call_rcu(&inode->i_rcu, udf_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700152static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700154 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Christoph Lametera35afb82007-05-16 22:10:57 -0700156 ei->i_ext.i_data = NULL;
157 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160static int init_inodecache(void)
161{
162 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
163 sizeof(struct udf_inode_info),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700164 0, (SLAB_RECLAIM_ACCOUNT |
165 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900166 init_once);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700167 if (!udf_inode_cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return -ENOMEM;
169 return 0;
170}
171
172static void destroy_inodecache(void)
173{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700174 kmem_cache_destroy(udf_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177/* Superblock operations */
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800178static const struct super_operations udf_sb_ops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700179 .alloc_inode = udf_alloc_inode,
180 .destroy_inode = udf_destroy_inode,
181 .write_inode = udf_write_inode,
Al Viro3aac2b62010-06-07 00:43:39 -0400182 .evict_inode = udf_evict_inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700183 .put_super = udf_put_super,
Jan Kara146bca72009-03-16 18:27:37 +0100184 .sync_fs = udf_sync_fs,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700185 .statfs = udf_statfs,
186 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800187 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700190struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 unsigned char novrs;
192 unsigned int blocksize;
193 unsigned int session;
194 unsigned int lastblock;
195 unsigned int anchor;
196 unsigned int volume;
197 unsigned short partition;
198 unsigned int fileset;
199 unsigned int rootdir;
200 unsigned int flags;
Al Virofaa17292011-07-26 03:18:29 -0400201 umode_t umask;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800202 kgid_t gid;
203 kuid_t uid;
Al Virofaa17292011-07-26 03:18:29 -0400204 umode_t fmode;
205 umode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct nls_table *nls_map;
207};
208
209static int __init init_udf_fs(void)
210{
211 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 err = init_inodecache();
214 if (err)
215 goto out1;
216 err = register_filesystem(&udf_fstype);
217 if (err)
218 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700221
222out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700224
225out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return err;
227}
228
229static void __exit exit_udf_fs(void)
230{
231 unregister_filesystem(&udf_fstype);
232 destroy_inodecache();
233}
234
235module_init(init_udf_fs)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700236module_exit(exit_udf_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800238static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
239{
240 struct udf_sb_info *sbi = UDF_SB(sb);
241
242 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
243 GFP_KERNEL);
244 if (!sbi->s_partmaps) {
Joe Perches8076c362011-10-10 01:08:03 -0700245 udf_err(sb, "Unable to allocate space for %d partition maps\n",
246 count);
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800247 sbi->s_partitions = 0;
248 return -ENOMEM;
249 }
250
251 sbi->s_partitions = count;
252 return 0;
253}
254
Jan Karabff943a2012-06-27 22:27:05 +0200255static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
256{
257 int i;
258 int nr_groups = bitmap->s_nr_groups;
259 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
260 nr_groups);
261
262 for (i = 0; i < nr_groups; i++)
263 if (bitmap->s_block_bitmap[i])
264 brelse(bitmap->s_block_bitmap[i]);
265
266 if (size <= PAGE_SIZE)
267 kfree(bitmap);
268 else
269 vfree(bitmap);
270}
271
272static void udf_free_partition(struct udf_part_map *map)
273{
274 int i;
275 struct udf_meta_data *mdata;
276
277 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
278 iput(map->s_uspace.s_table);
279 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
280 iput(map->s_fspace.s_table);
281 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
282 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
283 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
284 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
285 if (map->s_partition_type == UDF_SPARABLE_MAP15)
286 for (i = 0; i < 4; i++)
287 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
288 else if (map->s_partition_type == UDF_METADATA_MAP25) {
289 mdata = &map->s_type_specific.s_metadata;
290 iput(mdata->s_metadata_fe);
291 mdata->s_metadata_fe = NULL;
292
293 iput(mdata->s_mirror_fe);
294 mdata->s_mirror_fe = NULL;
295
296 iput(mdata->s_bitmap_fe);
297 mdata->s_bitmap_fe = NULL;
298 }
299}
300
301static void udf_sb_free_partitions(struct super_block *sb)
302{
303 struct udf_sb_info *sbi = UDF_SB(sb);
304 int i;
305
306 for (i = 0; i < sbi->s_partitions; i++)
307 udf_free_partition(&sbi->s_partmaps[i]);
308 kfree(sbi->s_partmaps);
309 sbi->s_partmaps = NULL;
310}
311
Al Viro34c80b12011-12-08 21:32:45 -0500312static int udf_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredi6da80892008-02-08 04:21:50 -0800313{
Al Viro34c80b12011-12-08 21:32:45 -0500314 struct super_block *sb = root->d_sb;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800315 struct udf_sb_info *sbi = UDF_SB(sb);
316
317 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
318 seq_puts(seq, ",nostrict");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100319 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
Miklos Szeredi6da80892008-02-08 04:21:50 -0800320 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
321 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
322 seq_puts(seq, ",unhide");
323 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
324 seq_puts(seq, ",undelete");
325 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
326 seq_puts(seq, ",noadinicb");
327 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
328 seq_puts(seq, ",shortad");
329 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
330 seq_puts(seq, ",uid=forget");
331 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
332 seq_puts(seq, ",uid=ignore");
333 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
334 seq_puts(seq, ",gid=forget");
335 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
336 seq_puts(seq, ",gid=ignore");
337 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800338 seq_printf(seq, ",uid=%u", from_kuid(&init_user_ns, sbi->s_uid));
Miklos Szeredi6da80892008-02-08 04:21:50 -0800339 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800340 seq_printf(seq, ",gid=%u", from_kgid(&init_user_ns, sbi->s_gid));
Miklos Szeredi6da80892008-02-08 04:21:50 -0800341 if (sbi->s_umask != 0)
Al Virofaa17292011-07-26 03:18:29 -0400342 seq_printf(seq, ",umask=%ho", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100343 if (sbi->s_fmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400344 seq_printf(seq, ",mode=%ho", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100345 if (sbi->s_dmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400346 seq_printf(seq, ",dmode=%ho", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800347 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
348 seq_printf(seq, ",session=%u", sbi->s_session);
349 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
350 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
Jan Kara40346002009-03-19 16:21:38 +0100351 if (sbi->s_anchor != 0)
352 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800353 /*
354 * volume, partition, fileset and rootdir seem to be ignored
355 * currently
356 */
357 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
358 seq_puts(seq, ",utf8");
359 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
360 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
361
362 return 0;
363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/*
366 * udf_parse_options
367 *
368 * PURPOSE
369 * Parse mount options.
370 *
371 * DESCRIPTION
372 * The following mount options are supported:
373 *
374 * gid= Set the default group.
375 * umask= Set the default umask.
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100376 * mode= Set the default file permissions.
377 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * uid= Set the default user.
379 * bs= Set the block size.
380 * unhide Show otherwise hidden files.
381 * undelete Show deleted files in lists.
382 * adinicb Embed data in the inode (default)
383 * noadinicb Don't embed data in the inode
384 * shortad Use short ad's
385 * longad Use long ad's (default)
386 * nostrict Unset strict conformance
387 * iocharset= Set the NLS character set
388 *
389 * The remaining are for debugging and disaster recovery:
390 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700391 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 *
393 * The following expect a offset from 0.
394 *
395 * session= Set the CDROM session (default= last session)
396 * anchor= Override standard anchor location. (default= 256)
397 * volume= Override the VolumeDesc location. (unused)
398 * partition= Override the PartitionDesc location. (unused)
399 * lastblock= Set the last block of the filesystem/
400 *
401 * The following expect a offset from the partition root.
402 *
403 * fileset= Override the fileset block location. (unused)
404 * rootdir= Override the root directory location. (unused)
405 * WARNING: overriding the rootdir to a non-directory may
406 * yield highly unpredictable results.
407 *
408 * PRE-CONDITIONS
409 * options Pointer to mount options string.
410 * uopts Pointer to mount options variable.
411 *
412 * POST-CONDITIONS
413 * <return> 1 Mount options parsed okay.
414 * <return> 0 Error parsing mount options.
415 *
416 * HISTORY
417 * July 1, 1997 - Andrew E. Mileski
418 * Written, tested, and released.
419 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421enum {
422 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
423 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
424 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
425 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
426 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100427 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
428 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429};
430
Steven Whitehousea447c092008-10-13 10:46:57 +0100431static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700432 {Opt_novrs, "novrs"},
433 {Opt_nostrict, "nostrict"},
434 {Opt_bs, "bs=%u"},
435 {Opt_unhide, "unhide"},
436 {Opt_undelete, "undelete"},
437 {Opt_noadinicb, "noadinicb"},
438 {Opt_adinicb, "adinicb"},
439 {Opt_shortad, "shortad"},
440 {Opt_longad, "longad"},
441 {Opt_uforget, "uid=forget"},
442 {Opt_uignore, "uid=ignore"},
443 {Opt_gforget, "gid=forget"},
444 {Opt_gignore, "gid=ignore"},
445 {Opt_gid, "gid=%u"},
446 {Opt_uid, "uid=%u"},
447 {Opt_umask, "umask=%o"},
448 {Opt_session, "session=%u"},
449 {Opt_lastblock, "lastblock=%u"},
450 {Opt_anchor, "anchor=%u"},
451 {Opt_volume, "volume=%u"},
452 {Opt_partition, "partition=%u"},
453 {Opt_fileset, "fileset=%u"},
454 {Opt_rootdir, "rootdir=%u"},
455 {Opt_utf8, "utf8"},
456 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100457 {Opt_fmode, "mode=%o"},
458 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700459 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460};
461
Miklos Szeredi6da80892008-02-08 04:21:50 -0800462static int udf_parse_options(char *options, struct udf_options *uopt,
463 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 char *p;
466 int option;
467
468 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 uopt->partition = 0xFFFF;
470 uopt->session = 0xFFFFFFFF;
471 uopt->lastblock = 0;
472 uopt->anchor = 0;
473 uopt->volume = 0xFFFFFFFF;
474 uopt->rootdir = 0xFFFFFFFF;
475 uopt->fileset = 0xFFFFFFFF;
476 uopt->nls_map = NULL;
477
478 if (!options)
479 return 1;
480
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700481 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 substring_t args[MAX_OPT_ARGS];
483 int token;
484 if (!*p)
485 continue;
486
487 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700488 switch (token) {
489 case Opt_novrs:
490 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100491 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700492 case Opt_bs:
493 if (match_int(&args[0], &option))
494 return 0;
495 uopt->blocksize = option;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100496 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700497 break;
498 case Opt_unhide:
499 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
500 break;
501 case Opt_undelete:
502 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
503 break;
504 case Opt_noadinicb:
505 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
506 break;
507 case Opt_adinicb:
508 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
509 break;
510 case Opt_shortad:
511 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
512 break;
513 case Opt_longad:
514 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
515 break;
516 case Opt_gid:
517 if (match_int(args, &option))
518 return 0;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800519 uopt->gid = make_kgid(current_user_ns(), option);
520 if (!gid_valid(uopt->gid))
521 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700522 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700523 break;
524 case Opt_uid:
525 if (match_int(args, &option))
526 return 0;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800527 uopt->uid = make_kuid(current_user_ns(), option);
528 if (!uid_valid(uopt->uid))
529 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700530 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700531 break;
532 case Opt_umask:
533 if (match_octal(args, &option))
534 return 0;
535 uopt->umask = option;
536 break;
537 case Opt_nostrict:
538 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
539 break;
540 case Opt_session:
541 if (match_int(args, &option))
542 return 0;
543 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800544 if (!remount)
545 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700546 break;
547 case Opt_lastblock:
548 if (match_int(args, &option))
549 return 0;
550 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800551 if (!remount)
552 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700553 break;
554 case Opt_anchor:
555 if (match_int(args, &option))
556 return 0;
557 uopt->anchor = option;
558 break;
559 case Opt_volume:
560 if (match_int(args, &option))
561 return 0;
562 uopt->volume = option;
563 break;
564 case Opt_partition:
565 if (match_int(args, &option))
566 return 0;
567 uopt->partition = option;
568 break;
569 case Opt_fileset:
570 if (match_int(args, &option))
571 return 0;
572 uopt->fileset = option;
573 break;
574 case Opt_rootdir:
575 if (match_int(args, &option))
576 return 0;
577 uopt->rootdir = option;
578 break;
579 case Opt_utf8:
580 uopt->flags |= (1 << UDF_FLAG_UTF8);
581 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700583 case Opt_iocharset:
584 uopt->nls_map = load_nls(args[0].from);
585 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
586 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700588 case Opt_uignore:
589 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
590 break;
591 case Opt_uforget:
592 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
593 break;
594 case Opt_gignore:
595 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
596 break;
597 case Opt_gforget:
598 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
599 break;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100600 case Opt_fmode:
601 if (match_octal(args, &option))
602 return 0;
603 uopt->fmode = option & 0777;
604 break;
605 case Opt_dmode:
606 if (match_octal(args, &option))
607 return 0;
608 uopt->dmode = option & 0777;
609 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700610 default:
Joe Perches78ace702011-10-10 01:08:05 -0700611 pr_err("bad mount option \"%s\" or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return 0;
613 }
614 }
615 return 1;
616}
617
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700618static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800621 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400622 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800624 uopt.flags = sbi->s_flags;
625 uopt.uid = sbi->s_uid;
626 uopt.gid = sbi->s_gid;
627 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100628 uopt.fmode = sbi->s_fmode;
629 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Miklos Szeredi6da80892008-02-08 04:21:50 -0800631 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return -EINVAL;
633
Jan Karac03cad22010-10-20 22:17:28 +0200634 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800635 sbi->s_flags = uopt.flags;
636 sbi->s_uid = uopt.uid;
637 sbi->s_gid = uopt.gid;
638 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100639 sbi->s_fmode = uopt.fmode;
640 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200641 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800643 if (sbi->s_lvid_bh) {
644 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (write_rev > UDF_MAX_WRITE_VERSION)
646 *flags |= MS_RDONLY;
647 }
648
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400649 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
650 goto out_unlock;
651
Jan Kara36350462010-05-19 16:28:56 +0200652 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200654 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 udf_open_lvid(sb);
656
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400657out_unlock:
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400658 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Jan Kara40346002009-03-19 16:21:38 +0100661/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
662/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
663static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200666 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 int sectorsize;
668 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700669 int nsr02 = 0;
670 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800671 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800673 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (sb->s_blocksize < sizeof(struct volStructDesc))
675 sectorsize = sizeof(struct volStructDesc);
676 else
677 sectorsize = sb->s_blocksize;
678
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800679 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200682 (unsigned int)(sector >> sb->s_blocksize_bits),
683 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700685 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /* Read a block */
687 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
688 if (!bh)
689 break;
690
691 /* Look for ISO descriptors */
692 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800693 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700695 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700696 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800698 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
699 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700700 switch (vsd->structType) {
701 case 0:
702 udf_debug("ISO9660 Boot Record found\n");
703 break;
704 case 1:
Joe Perchesa983f362011-10-10 01:08:07 -0700705 udf_debug("ISO9660 Primary Volume Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700706 break;
707 case 2:
Joe Perchesa983f362011-10-10 01:08:07 -0700708 udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700709 break;
710 case 3:
Joe Perchesa983f362011-10-10 01:08:07 -0700711 udf_debug("ISO9660 Volume Partition Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700712 break;
713 case 255:
Joe Perchesa983f362011-10-10 01:08:07 -0700714 udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700715 break;
716 default:
717 udf_debug("ISO9660 VRS (%u) found\n",
718 vsd->structType);
719 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800721 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
722 VSD_STD_ID_LEN))
723 ; /* nothing */
724 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
725 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700726 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800728 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
729 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800731 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
732 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700734 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736
737 if (nsr03)
738 return nsr03;
739 else if (nsr02)
740 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800741 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return -1;
743 else
744 return 0;
745}
746
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800747static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200748 struct kernel_lb_addr *fileset,
749 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 struct buffer_head *bh = NULL;
752 long lastblock;
753 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800754 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700757 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200758 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700760 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700762 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700763 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return 1;
765 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800769 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800770 if (!bh) {
771 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200772 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700774/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700776
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800777 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700778 (newfileset.partitionReferenceNum != 0xFFFF &&
779 fileset->logicalBlockNum == 0xFFFFFFFF &&
780 fileset->partitionReferenceNum == 0xFFFF);
781 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800782 lastblock = sbi->s_partmaps
783 [newfileset.partitionReferenceNum]
784 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 newfileset.logicalBlockNum = 0;
786
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700787 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200788 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800789 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700790 if (!bh) {
791 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 continue;
793 }
794
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700795 switch (ident) {
796 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700797 {
798 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800799 sp = (struct spaceBitmapDesc *)
800 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700801 newfileset.logicalBlockNum += 1 +
802 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800803 sizeof(struct spaceBitmapDesc)
804 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700805 brelse(bh);
806 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700808 case TAG_IDENT_FSD:
809 *fileset = newfileset;
810 break;
811 default:
812 newfileset.logicalBlockNum++;
813 brelse(bh);
814 bh = NULL;
815 break;
816 }
817 } while (newfileset.logicalBlockNum < lastblock &&
818 fileset->logicalBlockNum == 0xFFFFFFFF &&
819 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821 }
822
823 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700824 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700826 fileset->logicalBlockNum,
827 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800829 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700831 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return 0;
833 }
834 return 1;
835}
836
Jan Karac0eb31e2008-04-01 16:50:35 +0200837static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100840 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200841 struct buffer_head *bh;
842 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100843 int ret = 1;
844
845 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
846 if (!instr)
847 return 1;
848
849 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
850 if (!outstr)
851 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200852
853 bh = udf_read_tagged(sb, block, block, &ident);
854 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100855 goto out2;
856
Jan Karac0eb31e2008-04-01 16:50:35 +0200857 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 pvoldesc = (struct primaryVolDesc *)bh->b_data;
860
Marcin Slusarz56774802008-02-10 11:25:31 +0100861 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
862 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100863#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200864 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
Joe Perchesa983f362011-10-10 01:08:07 -0700865 udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100866 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
867 ts->minute, le16_to_cpu(ts->typeAndTimezone));
868#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
870
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100871 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
872 if (udf_CS0toUTF8(outstr, instr)) {
873 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
874 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800875 udf_debug("volIdent[] = '%s'\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700876 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100879 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
880 if (udf_CS0toUTF8(outstr, instr))
881 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200882
883 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100884 ret = 0;
885out2:
886 kfree(outstr);
887out1:
888 kfree(instr);
889 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Namjae Jeon3080a742011-10-23 19:28:32 +0900892struct inode *udf_find_metadata_inode_efe(struct super_block *sb,
893 u32 meta_file_loc, u32 partition_num)
894{
895 struct kernel_lb_addr addr;
896 struct inode *metadata_fe;
897
898 addr.logicalBlockNum = meta_file_loc;
899 addr.partitionReferenceNum = partition_num;
900
901 metadata_fe = udf_iget(sb, &addr);
902
903 if (metadata_fe == NULL)
904 udf_warn(sb, "metadata inode efe not found\n");
905 else if (UDF_I(metadata_fe)->i_alloc_type != ICBTAG_FLAG_AD_SHORT) {
906 udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
907 iput(metadata_fe);
908 metadata_fe = NULL;
909 }
910
911 return metadata_fe;
912}
913
Jan Karabfb257a2008-04-08 20:37:21 +0200914static int udf_load_metadata_files(struct super_block *sb, int partition)
915{
916 struct udf_sb_info *sbi = UDF_SB(sb);
917 struct udf_part_map *map;
918 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200919 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200920
921 map = &sbi->s_partmaps[partition];
922 mdata = &map->s_type_specific.s_metadata;
923
924 /* metadata address */
Jan Karabfb257a2008-04-08 20:37:21 +0200925 udf_debug("Metadata file location: block = %d part = %d\n",
Namjae Jeon3080a742011-10-23 19:28:32 +0900926 mdata->s_meta_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200927
Namjae Jeon3080a742011-10-23 19:28:32 +0900928 mdata->s_metadata_fe = udf_find_metadata_inode_efe(sb,
929 mdata->s_meta_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200930
931 if (mdata->s_metadata_fe == NULL) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900932 /* mirror file entry */
933 udf_debug("Mirror metadata file location: block = %d part = %d\n",
934 mdata->s_mirror_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200935
Namjae Jeon3080a742011-10-23 19:28:32 +0900936 mdata->s_mirror_fe = udf_find_metadata_inode_efe(sb,
937 mdata->s_mirror_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200938
Namjae Jeon3080a742011-10-23 19:28:32 +0900939 if (mdata->s_mirror_fe == NULL) {
940 udf_err(sb, "Both metadata and mirror metadata inode efe can not found\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200941 goto error_exit;
Namjae Jeon3080a742011-10-23 19:28:32 +0900942 }
Jan Karabfb257a2008-04-08 20:37:21 +0200943 }
944
945 /*
946 * bitmap file entry
947 * Note:
948 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
949 */
950 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
951 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
952 addr.partitionReferenceNum = map->s_partition_num;
953
954 udf_debug("Bitmap file location: block = %d part = %d\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700955 addr.logicalBlockNum, addr.partitionReferenceNum);
Jan Karabfb257a2008-04-08 20:37:21 +0200956
Pekka Enberg97e961f2008-10-15 12:29:03 +0200957 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200958
959 if (mdata->s_bitmap_fe == NULL) {
960 if (sb->s_flags & MS_RDONLY)
Joe Perchesa40ecd72011-10-10 01:08:04 -0700961 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 +0200962 else {
Joe Perches8076c362011-10-10 01:08:03 -0700963 udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200964 goto error_exit;
965 }
966 }
967 }
968
969 udf_debug("udf_load_metadata_files Ok\n");
970
971 return 0;
972
973error_exit:
974 return 1;
975}
976
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700977static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200978 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
980 struct fileSetDesc *fset;
981
982 fset = (struct fileSetDesc *)bh->b_data;
983
984 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
985
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800986 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700988 udf_debug("Rootdir at block=%d, partition=%d\n",
989 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800992int udf_compute_nr_groups(struct super_block *sb, u32 partition)
993{
994 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +0100995 return DIV_ROUND_UP(map->s_partition_len +
996 (sizeof(struct spaceBitmapDesc) << 3),
997 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800998}
999
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001000static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
1001{
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001002 struct udf_bitmap *bitmap;
1003 int nr_groups;
1004 int size;
1005
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001006 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001007 size = sizeof(struct udf_bitmap) +
1008 (sizeof(struct buffer_head *) * nr_groups);
1009
1010 if (size <= PAGE_SIZE)
Joe Perchesed2ae6f2010-11-04 20:08:04 -07001011 bitmap = kzalloc(size, GFP_KERNEL);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001012 else
Joe Perchesed2ae6f2010-11-04 20:08:04 -07001013 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001014
Joe Perches75b09e02012-01-31 14:42:10 -08001015 if (bitmap == NULL)
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001016 return NULL;
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001017
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001018 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
1019 bitmap->s_nr_groups = nr_groups;
1020 return bitmap;
1021}
1022
Jan Kara3fb38df2008-04-02 12:26:36 +02001023static int udf_fill_partdesc_info(struct super_block *sb,
1024 struct partitionDesc *p, int p_index)
1025{
1026 struct udf_part_map *map;
1027 struct udf_sb_info *sbi = UDF_SB(sb);
1028 struct partitionHeaderDesc *phd;
1029
1030 map = &sbi->s_partmaps[p_index];
1031
1032 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
1033 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
1034
1035 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
1036 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
1037 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
1038 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
1039 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
1040 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
1041 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
1042 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1043
Joe Perchesa983f362011-10-10 01:08:07 -07001044 udf_debug("Partition (%d type %x) starts at physical %d, block length %d\n",
1045 p_index, map->s_partition_type,
1046 map->s_partition_root, map->s_partition_len);
Jan Kara3fb38df2008-04-02 12:26:36 +02001047
1048 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1049 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1050 return 0;
1051
1052 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1053 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001054 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001055 .logicalBlockNum = le32_to_cpu(
1056 phd->unallocSpaceTable.extPosition),
1057 .partitionReferenceNum = p_index,
1058 };
1059
Pekka Enberg97e961f2008-10-15 12:29:03 +02001060 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001061 if (!map->s_uspace.s_table) {
1062 udf_debug("cannot load unallocSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001063 p_index);
Jan Kara3fb38df2008-04-02 12:26:36 +02001064 return 1;
1065 }
1066 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1067 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001068 p_index, map->s_uspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001069 }
1070
1071 if (phd->unallocSpaceBitmap.extLength) {
1072 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1073 if (!bitmap)
1074 return 1;
1075 map->s_uspace.s_bitmap = bitmap;
1076 bitmap->s_extLength = le32_to_cpu(
1077 phd->unallocSpaceBitmap.extLength);
1078 bitmap->s_extPosition = le32_to_cpu(
1079 phd->unallocSpaceBitmap.extPosition);
1080 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
Joe Perchesa983f362011-10-10 01:08:07 -07001081 udf_debug("unallocSpaceBitmap (part %d) @ %d\n",
1082 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001083 }
1084
1085 if (phd->partitionIntegrityTable.extLength)
1086 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1087
1088 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001089 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001090 .logicalBlockNum = le32_to_cpu(
1091 phd->freedSpaceTable.extPosition),
1092 .partitionReferenceNum = p_index,
1093 };
1094
Pekka Enberg97e961f2008-10-15 12:29:03 +02001095 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001096 if (!map->s_fspace.s_table) {
1097 udf_debug("cannot load freedSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001098 p_index);
Jan Kara3fb38df2008-04-02 12:26:36 +02001099 return 1;
1100 }
1101
1102 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1103 udf_debug("freedSpaceTable (part %d) @ %ld\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001104 p_index, map->s_fspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001105 }
1106
1107 if (phd->freedSpaceBitmap.extLength) {
1108 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1109 if (!bitmap)
1110 return 1;
1111 map->s_fspace.s_bitmap = bitmap;
1112 bitmap->s_extLength = le32_to_cpu(
1113 phd->freedSpaceBitmap.extLength);
1114 bitmap->s_extPosition = le32_to_cpu(
1115 phd->freedSpaceBitmap.extPosition);
1116 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
Joe Perchesa983f362011-10-10 01:08:07 -07001117 udf_debug("freedSpaceBitmap (part %d) @ %d\n",
1118 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001119 }
1120 return 0;
1121}
1122
Jan Karae971b0b2009-11-30 19:47:55 +01001123static void udf_find_vat_block(struct super_block *sb, int p_index,
1124 int type1_index, sector_t start_block)
1125{
1126 struct udf_sb_info *sbi = UDF_SB(sb);
1127 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1128 sector_t vat_block;
1129 struct kernel_lb_addr ino;
1130
1131 /*
1132 * VAT file entry is in the last recorded block. Some broken disks have
1133 * it a few blocks before so try a bit harder...
1134 */
1135 ino.partitionReferenceNum = type1_index;
1136 for (vat_block = start_block;
1137 vat_block >= map->s_partition_root &&
1138 vat_block >= start_block - 3 &&
1139 !sbi->s_vat_inode; vat_block--) {
1140 ino.logicalBlockNum = vat_block - map->s_partition_root;
1141 sbi->s_vat_inode = udf_iget(sb, &ino);
1142 }
1143}
1144
Jan Kara38b74a52008-04-02 16:01:35 +02001145static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1146{
1147 struct udf_sb_info *sbi = UDF_SB(sb);
1148 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001149 struct buffer_head *bh = NULL;
1150 struct udf_inode_info *vati;
1151 uint32_t pos;
1152 struct virtualAllocationTable20 *vat20;
Jan Kara4bf17af2009-07-14 19:30:23 +02001153 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001154
Jan Karae971b0b2009-11-30 19:47:55 +01001155 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001156 if (!sbi->s_vat_inode &&
1157 sbi->s_last_block != blocks - 1) {
Joe Perches78ace702011-10-10 01:08:05 -07001158 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1159 (unsigned long)sbi->s_last_block,
1160 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001161 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001162 }
Jan Kara38b74a52008-04-02 16:01:35 +02001163 if (!sbi->s_vat_inode)
1164 return 1;
1165
1166 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001167 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001168 map->s_type_specific.s_virtual.s_num_entries =
1169 (sbi->s_vat_inode->i_size - 36) >> 2;
1170 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001171 vati = UDF_I(sbi->s_vat_inode);
1172 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1173 pos = udf_block_map(sbi->s_vat_inode, 0);
1174 bh = sb_bread(sb, pos);
1175 if (!bh)
1176 return 1;
1177 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1178 } else {
1179 vat20 = (struct virtualAllocationTable20 *)
1180 vati->i_ext.i_data;
1181 }
Jan Kara38b74a52008-04-02 16:01:35 +02001182
Jan Kara38b74a52008-04-02 16:01:35 +02001183 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001184 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001185 map->s_type_specific.s_virtual.s_num_entries =
1186 (sbi->s_vat_inode->i_size -
1187 map->s_type_specific.s_virtual.
1188 s_start_offset) >> 2;
1189 brelse(bh);
1190 }
1191 return 0;
1192}
1193
Jan Karac0eb31e2008-04-01 16:50:35 +02001194static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
Jan Karac0eb31e2008-04-01 16:50:35 +02001196 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001197 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001198 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001199 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001200 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001201 uint16_t partitionNumber;
1202 uint16_t ident;
1203 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Jan Karac0eb31e2008-04-01 16:50:35 +02001205 bh = udf_read_tagged(sb, block, block, &ident);
1206 if (!bh)
1207 return 1;
1208 if (ident != TAG_IDENT_PD)
1209 goto out_bh;
1210
1211 p = (struct partitionDesc *)bh->b_data;
1212 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001213
Jan Karabfb257a2008-04-08 20:37:21 +02001214 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001215 for (i = 0; i < sbi->s_partitions; i++) {
1216 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001217 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001218 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001219 if (map->s_partition_num == partitionNumber &&
1220 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1221 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001223 }
1224
Jan Kara38b74a52008-04-02 16:01:35 +02001225 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001226 udf_debug("Partition (%d) not found in partition map\n",
1227 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001228 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001229 }
1230
Jan Kara3fb38df2008-04-02 12:26:36 +02001231 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001232
1233 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001234 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1235 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001236 */
1237 type1_idx = i;
1238 for (i = 0; i < sbi->s_partitions; i++) {
1239 map = &sbi->s_partmaps[i];
1240
1241 if (map->s_partition_num == partitionNumber &&
1242 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001243 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1244 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001245 break;
1246 }
1247
1248 if (i >= sbi->s_partitions)
1249 goto out_bh;
1250
1251 ret = udf_fill_partdesc_info(sb, p, i);
1252 if (ret)
1253 goto out_bh;
1254
Jan Karabfb257a2008-04-08 20:37:21 +02001255 if (map->s_partition_type == UDF_METADATA_MAP25) {
1256 ret = udf_load_metadata_files(sb, i);
1257 if (ret) {
Joe Perches78ace702011-10-10 01:08:05 -07001258 udf_err(sb, "error loading MetaData partition map %d\n",
1259 i);
Jan Karabfb257a2008-04-08 20:37:21 +02001260 goto out_bh;
1261 }
1262 } else {
1263 ret = udf_load_vat(sb, i, type1_idx);
1264 if (ret)
1265 goto out_bh;
1266 /*
1267 * Mark filesystem read-only if we have a partition with
1268 * virtual map since we don't handle writing to it (we
1269 * overwrite blocks instead of relocating them).
1270 */
1271 sb->s_flags |= MS_RDONLY;
Joe Perches78ace702011-10-10 01:08:05 -07001272 pr_notice("Filesystem marked read-only because writing to pseudooverwrite partition is not implemented\n");
Jan Karabfb257a2008-04-08 20:37:21 +02001273 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001274out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001275 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001276 brelse(bh);
1277 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Jan Kara1df2ae32012-06-27 21:23:07 +02001280static int udf_load_sparable_map(struct super_block *sb,
1281 struct udf_part_map *map,
1282 struct sparablePartitionMap *spm)
1283{
1284 uint32_t loc;
1285 uint16_t ident;
1286 struct sparingTable *st;
1287 struct udf_sparing_data *sdata = &map->s_type_specific.s_sparing;
1288 int i;
1289 struct buffer_head *bh;
1290
1291 map->s_partition_type = UDF_SPARABLE_MAP15;
1292 sdata->s_packet_len = le16_to_cpu(spm->packetLength);
1293 if (!is_power_of_2(sdata->s_packet_len)) {
1294 udf_err(sb, "error loading logical volume descriptor: "
1295 "Invalid packet length %u\n",
1296 (unsigned)sdata->s_packet_len);
1297 return -EIO;
1298 }
1299 if (spm->numSparingTables > 4) {
1300 udf_err(sb, "error loading logical volume descriptor: "
1301 "Too many sparing tables (%d)\n",
1302 (int)spm->numSparingTables);
1303 return -EIO;
1304 }
1305
1306 for (i = 0; i < spm->numSparingTables; i++) {
1307 loc = le32_to_cpu(spm->locSparingTable[i]);
1308 bh = udf_read_tagged(sb, loc, loc, &ident);
1309 if (!bh)
1310 continue;
1311
1312 st = (struct sparingTable *)bh->b_data;
1313 if (ident != 0 ||
1314 strncmp(st->sparingIdent.ident, UDF_ID_SPARING,
1315 strlen(UDF_ID_SPARING)) ||
1316 sizeof(*st) + le16_to_cpu(st->reallocationTableLen) >
1317 sb->s_blocksize) {
1318 brelse(bh);
1319 continue;
1320 }
1321
1322 sdata->s_spar_map[i] = bh;
1323 }
1324 map->s_partition_func = udf_get_pblock_spar15;
1325 return 0;
1326}
1327
Jan Karac0eb31e2008-04-01 16:50:35 +02001328static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001329 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
1331 struct logicalVolDesc *lvd;
Jan Kara1df2ae32012-06-27 21:23:07 +02001332 int i, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001334 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001335 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001336 uint16_t ident;
1337 struct buffer_head *bh;
Jan Karaadee11b2012-06-27 20:20:22 +02001338 unsigned int table_len;
Jan Karac0eb31e2008-04-01 16:50:35 +02001339 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Jan Karac0eb31e2008-04-01 16:50:35 +02001341 bh = udf_read_tagged(sb, block, block, &ident);
1342 if (!bh)
1343 return 1;
1344 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 lvd = (struct logicalVolDesc *)bh->b_data;
Jan Karaadee11b2012-06-27 20:20:22 +02001346 table_len = le32_to_cpu(lvd->mapTableLength);
Jan Kara57b96552012-07-10 17:58:04 +02001347 if (table_len > sb->s_blocksize - sizeof(*lvd)) {
Jan Karaadee11b2012-06-27 20:20:22 +02001348 udf_err(sb, "error loading logical volume descriptor: "
1349 "Partition table too long (%u > %lu)\n", table_len,
1350 sb->s_blocksize - sizeof(*lvd));
1351 goto out_bh;
1352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Jan Karacb14d342012-06-27 20:08:44 +02001354 ret = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
1355 if (ret)
Jan Karac0eb31e2008-04-01 16:50:35 +02001356 goto out_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001358 for (i = 0, offset = 0;
Jan Karaadee11b2012-06-27 20:20:22 +02001359 i < sbi->s_partitions && offset < table_len;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001360 i++, offset += gpm->partitionMapLength) {
1361 struct udf_part_map *map = &sbi->s_partmaps[i];
1362 gpm = (struct genericPartitionMap *)
1363 &(lvd->partitionMaps[offset]);
1364 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001365 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001366 struct genericPartitionMap1 *gpm1 =
1367 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001368 map->s_partition_type = UDF_TYPE1_MAP15;
1369 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1370 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1371 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001372 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001373 struct udfPartitionMap2 *upm2 =
1374 (struct udfPartitionMap2 *)gpm;
1375 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1376 strlen(UDF_ID_VIRTUAL))) {
1377 u16 suf =
1378 le16_to_cpu(((__le16 *)upm2->partIdent.
1379 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001380 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001381 map->s_partition_type =
1382 UDF_VIRTUAL_MAP15;
1383 map->s_partition_func =
1384 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001385 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001386 map->s_partition_type =
1387 UDF_VIRTUAL_MAP20;
1388 map->s_partition_func =
1389 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001391 } else if (!strncmp(upm2->partIdent.ident,
1392 UDF_ID_SPARABLE,
1393 strlen(UDF_ID_SPARABLE))) {
Jan Kara1df2ae32012-06-27 21:23:07 +02001394 if (udf_load_sparable_map(sb, map,
1395 (struct sparablePartitionMap *)gpm) < 0)
1396 goto out_bh;
Jan Karabfb257a2008-04-08 20:37:21 +02001397 } else if (!strncmp(upm2->partIdent.ident,
1398 UDF_ID_METADATA,
1399 strlen(UDF_ID_METADATA))) {
1400 struct udf_meta_data *mdata =
1401 &map->s_type_specific.s_metadata;
1402 struct metadataPartitionMap *mdm =
1403 (struct metadataPartitionMap *)
1404 &(lvd->partitionMaps[offset]);
Joe Perchesa983f362011-10-10 01:08:07 -07001405 udf_debug("Parsing Logical vol part %d type %d id=%s\n",
1406 i, type, UDF_ID_METADATA);
Jan Karabfb257a2008-04-08 20:37:21 +02001407
1408 map->s_partition_type = UDF_METADATA_MAP25;
1409 map->s_partition_func = udf_get_pblock_meta25;
1410
1411 mdata->s_meta_file_loc =
1412 le32_to_cpu(mdm->metadataFileLoc);
1413 mdata->s_mirror_file_loc =
1414 le32_to_cpu(mdm->metadataMirrorFileLoc);
1415 mdata->s_bitmap_file_loc =
1416 le32_to_cpu(mdm->metadataBitmapFileLoc);
1417 mdata->s_alloc_unit_size =
1418 le32_to_cpu(mdm->allocUnitSize);
1419 mdata->s_align_unit_size =
1420 le16_to_cpu(mdm->alignUnitSize);
Jan Karaed47a7d2011-10-24 16:47:48 +02001421 if (mdm->flags & 0x01)
1422 mdata->s_flags |= MF_DUPLICATE_MD;
Jan Karabfb257a2008-04-08 20:37:21 +02001423
1424 udf_debug("Metadata Ident suffix=0x%x\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001425 le16_to_cpu(*(__le16 *)
1426 mdm->partIdent.identSuffix));
Jan Karabfb257a2008-04-08 20:37:21 +02001427 udf_debug("Metadata part num=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001428 le16_to_cpu(mdm->partitionNum));
Jan Karabfb257a2008-04-08 20:37:21 +02001429 udf_debug("Metadata part alloc unit size=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001430 le32_to_cpu(mdm->allocUnitSize));
Jan Karabfb257a2008-04-08 20:37:21 +02001431 udf_debug("Metadata file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001432 le32_to_cpu(mdm->metadataFileLoc));
Jan Karabfb257a2008-04-08 20:37:21 +02001433 udf_debug("Mirror file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001434 le32_to_cpu(mdm->metadataMirrorFileLoc));
Jan Karabfb257a2008-04-08 20:37:21 +02001435 udf_debug("Bitmap file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001436 le32_to_cpu(mdm->metadataBitmapFileLoc));
Jan Karaed47a7d2011-10-24 16:47:48 +02001437 udf_debug("Flags: %d %d\n",
1438 mdata->s_flags, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001439 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001440 udf_debug("Unknown ident: %s\n",
1441 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 continue;
1443 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001444 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1445 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001448 i, map->s_partition_num, type, map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001451 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001452 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 *fileset = lelb_to_cpu(la->extLocation);
Joe Perchesa983f362011-10-10 01:08:07 -07001455 udf_debug("FileSet found in LogicalVolDesc at block=%d, partition=%d\n",
1456 fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001457 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459 if (lvd->integritySeqExt.extLength)
1460 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001461
Jan Karac0eb31e2008-04-01 16:50:35 +02001462out_bh:
1463 brelse(bh);
1464 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466
1467/*
1468 * udf_load_logicalvolint
1469 *
1470 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001471static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
1473 struct buffer_head *bh = NULL;
1474 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001475 struct udf_sb_info *sbi = UDF_SB(sb);
1476 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001479 (bh = udf_read_tagged(sb, loc.extLocation,
1480 loc.extLocation, &ident)) &&
1481 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001482 sbi->s_lvid_bh = bh;
1483 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001484
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001485 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001486 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001487 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001488
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001489 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001490 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001492 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001494 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001495 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
1498/*
1499 * udf_process_sequence
1500 *
1501 * PURPOSE
1502 * Process a main/reserve volume descriptor sequence.
1503 *
1504 * PRE-CONDITIONS
1505 * sb Pointer to _locked_ superblock.
1506 * block First block of first extent of the sequence.
1507 * lastblock Lastblock of first extent of the sequence.
1508 *
1509 * HISTORY
1510 * July 1, 1997 - Andrew E. Mileski
1511 * Written, tested, and released.
1512 */
Jan Kara200a3592008-03-04 13:03:09 +01001513static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001514 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
1516 struct buffer_head *bh = NULL;
1517 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001518 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct generic_desc *gd;
1520 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001521 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 uint32_t vdsn;
1523 uint16_t ident;
1524 long next_s = 0, next_e = 0;
1525
1526 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1527
Jan Karac0eb31e2008-04-01 16:50:35 +02001528 /*
1529 * Read the main descriptor sequence and find which descriptors
1530 * are in it.
1531 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001532 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001535 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07001536 udf_err(sb,
1537 "Block %llu of volume descriptor sequence is corrupted or we could not read it\n",
1538 (unsigned long long)block);
Jan Karac0eb31e2008-04-01 16:50:35 +02001539 return 1;
1540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1543 gd = (struct generic_desc *)bh->b_data;
1544 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001545 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001546 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001547 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1548 if (vdsn >= curr->volDescSeqNum) {
1549 curr->volDescSeqNum = vdsn;
1550 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001551 }
1552 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001553 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001554 curr = &vds[VDS_POS_VOL_DESC_PTR];
1555 if (vdsn >= curr->volDescSeqNum) {
1556 curr->volDescSeqNum = vdsn;
1557 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001559 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001560 next_s = le32_to_cpu(
1561 vdp->nextVolDescSeqExt.extLocation);
1562 next_e = le32_to_cpu(
1563 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001564 next_e = next_e >> sb->s_blocksize_bits;
1565 next_e += next_s;
1566 }
1567 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001568 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001569 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1570 if (vdsn >= curr->volDescSeqNum) {
1571 curr->volDescSeqNum = vdsn;
1572 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001573 }
1574 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001575 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001576 curr = &vds[VDS_POS_PARTITION_DESC];
1577 if (!curr->block)
1578 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001579 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001580 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001581 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1582 if (vdsn >= curr->volDescSeqNum) {
1583 curr->volDescSeqNum = vdsn;
1584 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001585 }
1586 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001587 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001588 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1589 if (vdsn >= curr->volDescSeqNum) {
1590 curr->volDescSeqNum = vdsn;
1591 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001592 }
1593 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001594 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001595 vds[VDS_POS_TERMINATING_DESC].block = block;
1596 if (next_e) {
1597 block = next_s;
1598 lastblock = next_e;
1599 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001600 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001601 done = 1;
1602 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001604 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001606 /*
1607 * Now read interesting descriptors again and process them
1608 * in a suitable order
1609 */
1610 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
Joe Perches78ace702011-10-10 01:08:05 -07001611 udf_err(sb, "Primary Volume Descriptor not found!\n");
Jan Karac0eb31e2008-04-01 16:50:35 +02001612 return 1;
1613 }
1614 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1615 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Jan Karac0eb31e2008-04-01 16:50:35 +02001617 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1618 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1619 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001620
Jan Karac0eb31e2008-04-01 16:50:35 +02001621 if (vds[VDS_POS_PARTITION_DESC].block) {
1622 /*
1623 * We rescan the whole descriptor sequence to find
1624 * partition descriptor blocks and process them.
1625 */
1626 for (block = vds[VDS_POS_PARTITION_DESC].block;
1627 block < vds[VDS_POS_TERMINATING_DESC].block;
1628 block++)
1629 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001630 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
1632
1633 return 0;
1634}
1635
Jan Kara40346002009-03-19 16:21:38 +01001636static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1637 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
Jan Kara40346002009-03-19 16:21:38 +01001639 struct anchorVolDescPtr *anchor;
1640 long main_s, main_e, reserve_s, reserve_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Jan Kara40346002009-03-19 16:21:38 +01001642 anchor = (struct anchorVolDescPtr *)bh->b_data;
1643
1644 /* Locate the main sequence */
1645 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1646 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1647 main_e = main_e >> sb->s_blocksize_bits;
1648 main_e += main_s;
1649
1650 /* Locate the reserve sequence */
1651 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1652 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1653 reserve_e = reserve_e >> sb->s_blocksize_bits;
1654 reserve_e += reserve_s;
1655
1656 /* Process the main & reserve sequences */
1657 /* responsible for finding the PartitionDesc(s) */
1658 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1659 return 1;
Jan Karabff943a2012-06-27 22:27:05 +02001660 udf_sb_free_partitions(sb);
1661 if (!udf_process_sequence(sb, reserve_s, reserve_e, fileset))
1662 return 1;
1663 udf_sb_free_partitions(sb);
1664 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
Jan Kara40346002009-03-19 16:21:38 +01001667/*
1668 * Check whether there is an anchor block in the given block and
1669 * load Volume Descriptor Sequence if so.
1670 */
1671static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1672 struct kernel_lb_addr *fileset)
1673{
1674 struct buffer_head *bh;
1675 uint16_t ident;
1676 int ret;
1677
1678 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1679 udf_fixed_to_variable(block) >=
1680 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1681 return 0;
1682
1683 bh = udf_read_tagged(sb, block, block, &ident);
1684 if (!bh)
1685 return 0;
1686 if (ident != TAG_IDENT_AVDP) {
1687 brelse(bh);
1688 return 0;
1689 }
1690 ret = udf_load_sequence(sb, bh, fileset);
1691 brelse(bh);
1692 return ret;
1693}
1694
1695/* Search for an anchor volume descriptor pointer */
1696static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1697 struct kernel_lb_addr *fileset)
1698{
1699 sector_t last[6];
1700 int i;
1701 struct udf_sb_info *sbi = UDF_SB(sb);
1702 int last_count = 0;
1703
1704 /* First try user provided anchor */
1705 if (sbi->s_anchor) {
1706 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1707 return lastblock;
1708 }
1709 /*
1710 * according to spec, anchor is in either:
1711 * block 256
1712 * lastblock-256
1713 * lastblock
1714 * however, if the disc isn't closed, it could be 512.
1715 */
1716 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1717 return lastblock;
1718 /*
1719 * The trouble is which block is the last one. Drives often misreport
1720 * this so we try various possibilities.
1721 */
1722 last[last_count++] = lastblock;
1723 if (lastblock >= 1)
1724 last[last_count++] = lastblock - 1;
1725 last[last_count++] = lastblock + 1;
1726 if (lastblock >= 2)
1727 last[last_count++] = lastblock - 2;
1728 if (lastblock >= 150)
1729 last[last_count++] = lastblock - 150;
1730 if (lastblock >= 152)
1731 last[last_count++] = lastblock - 152;
1732
1733 for (i = 0; i < last_count; i++) {
1734 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1735 sb->s_blocksize_bits)
1736 continue;
1737 if (udf_check_anchor_block(sb, last[i], fileset))
1738 return last[i];
1739 if (last[i] < 256)
1740 continue;
1741 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1742 return last[i];
1743 }
1744
1745 /* Finally try block 512 in case media is open */
1746 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1747 return last[0];
1748 return 0;
1749}
1750
1751/*
1752 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1753 * area specified by it. The function expects sbi->s_lastblock to be the last
1754 * block on the media.
1755 *
1756 * Return 1 if ok, 0 if not found.
1757 *
1758 */
1759static int udf_find_anchor(struct super_block *sb,
1760 struct kernel_lb_addr *fileset)
1761{
1762 sector_t lastblock;
1763 struct udf_sb_info *sbi = UDF_SB(sb);
1764
1765 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1766 if (lastblock)
1767 goto out;
1768
1769 /* No anchor found? Try VARCONV conversion of block numbers */
1770 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1771 /* Firstly, we try to not convert number of the last block */
1772 lastblock = udf_scan_anchors(sb,
1773 udf_variable_to_fixed(sbi->s_last_block),
1774 fileset);
1775 if (lastblock)
1776 goto out;
1777
1778 /* Secondly, we try with converted number of the last block */
1779 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1780 if (!lastblock) {
1781 /* VARCONV didn't help. Clear it. */
1782 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1783 return 0;
1784 }
1785out:
1786 sbi->s_last_block = lastblock;
1787 return 1;
1788}
1789
1790/*
1791 * Check Volume Structure Descriptor, find Anchor block and load Volume
1792 * Descriptor Sequence
1793 */
1794static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1795 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001796{
1797 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara40346002009-03-19 16:21:38 +01001798 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001799
1800 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1801 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001802 udf_warn(sb, "Bad block size\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001803 return 0;
1804 }
1805 sbi->s_last_block = uopt->lastblock;
Jan Kara40346002009-03-19 16:21:38 +01001806 if (!uopt->novrs) {
1807 /* Check that it is NSR02 compliant */
1808 nsr_off = udf_check_vsd(sb);
1809 if (!nsr_off) {
1810 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001811 udf_warn(sb, "No VRS found\n");
Jan Kara40346002009-03-19 16:21:38 +01001812 return 0;
1813 }
1814 if (nsr_off == -1)
Joe Perchesa983f362011-10-10 01:08:07 -07001815 udf_debug("Failed to read byte 32768. Assuming open disc. Skipping validity check\n");
Jan Kara40346002009-03-19 16:21:38 +01001816 if (!sbi->s_last_block)
1817 sbi->s_last_block = udf_get_last_block(sb);
1818 } else {
1819 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001820 }
Jan Kara40346002009-03-19 16:21:38 +01001821
1822 /* Look for anchor block and load Volume Descriptor Sequence */
1823 sbi->s_anchor = uopt->anchor;
1824 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001825 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001826 udf_warn(sb, "No anchor found\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001827 return 0;
1828 }
1829 return 1;
1830}
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832static void udf_open_lvid(struct super_block *sb)
1833{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001834 struct udf_sb_info *sbi = UDF_SB(sb);
1835 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001836 struct logicalVolIntegrityDesc *lvid;
1837 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001838
Marcin Slusarz165923f2008-02-10 11:33:08 +01001839 if (!bh)
1840 return;
Jan Kara949f4a72010-10-20 18:49:20 +02001841
1842 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001843 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1844 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Marcin Slusarz165923f2008-02-10 11:33:08 +01001846 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1847 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1848 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1849 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001850 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Marcin Slusarz165923f2008-02-10 11:33:08 +01001852 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001853 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001854 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001855
1856 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1857 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001858 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001859 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
1862static void udf_close_lvid(struct super_block *sb)
1863{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001864 struct udf_sb_info *sbi = UDF_SB(sb);
1865 struct buffer_head *bh = sbi->s_lvid_bh;
1866 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001867 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001868
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001869 if (!bh)
1870 return;
1871
Jan Kara949f4a72010-10-20 18:49:20 +02001872 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001873 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001874 lvidiu = udf_sb_lvidiu(sbi);
1875 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1876 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1877 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1878 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1879 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1880 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1881 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1882 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1883 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1884 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Marcin Slusarz165923f2008-02-10 11:33:08 +01001886 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001887 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001888 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001889
1890 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
Jan Kara853a0c22011-12-23 11:53:07 +01001891 /*
1892 * We set buffer uptodate unconditionally here to avoid spurious
1893 * warnings from mark_buffer_dirty() when previous EIO has marked
1894 * the buffer as !uptodate
1895 */
1896 set_buffer_uptodate(bh);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001897 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001898 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001899 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Jan Karad664b6a2010-10-20 18:28:46 +02001902u64 lvid_get_unique_id(struct super_block *sb)
1903{
1904 struct buffer_head *bh;
1905 struct udf_sb_info *sbi = UDF_SB(sb);
1906 struct logicalVolIntegrityDesc *lvid;
1907 struct logicalVolHeaderDesc *lvhd;
1908 u64 uniqueID;
1909 u64 ret;
1910
1911 bh = sbi->s_lvid_bh;
1912 if (!bh)
1913 return 0;
1914
1915 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1916 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
1917
1918 mutex_lock(&sbi->s_alloc_mutex);
1919 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
1920 if (!(++uniqueID & 0xFFFFFFFF))
1921 uniqueID += 16;
1922 lvhd->uniqueID = cpu_to_le64(uniqueID);
1923 mutex_unlock(&sbi->s_alloc_mutex);
1924 mark_buffer_dirty(bh);
1925
1926 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929static int udf_fill_super(struct super_block *sb, void *options, int silent)
1930{
Jan Kara40346002009-03-19 16:21:38 +01001931 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001932 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001934 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 struct udf_sb_info *sbi;
1936
1937 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -08001938 uopt.uid = INVALID_UID;
1939 uopt.gid = INVALID_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001941 uopt.fmode = UDF_INVALID_MODE;
1942 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001944 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Alessio Igor Bogani9db9f9e2010-11-16 18:40:49 +01001945 if (!sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001950 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Miklos Szeredi6da80892008-02-08 04:21:50 -08001952 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 goto error_out;
1954
1955 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001956 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Joe Perches8076c362011-10-10 01:08:03 -07001957 udf_err(sb, "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 goto error_out;
1959 }
1960#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001961 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 uopt.nls_map = load_nls_default();
1963 if (!uopt.nls_map)
1964 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1965 else
1966 udf_debug("Using default NLS map\n");
1967 }
1968#endif
1969 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1970 uopt.flags |= (1 << UDF_FLAG_UTF8);
1971
1972 fileset.logicalBlockNum = 0xFFFFFFFF;
1973 fileset.partitionReferenceNum = 0xFFFF;
1974
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001975 sbi->s_flags = uopt.flags;
1976 sbi->s_uid = uopt.uid;
1977 sbi->s_gid = uopt.gid;
1978 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001979 sbi->s_fmode = uopt.fmode;
1980 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001981 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02001982 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001984 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001985 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001987 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001989 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 /* Fill in the rest of the superblock */
1992 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001993 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 sb->s_magic = UDF_SUPER_MAGIC;
1996 sb->s_time_gran = 1000;
1997
Jan Kara40346002009-03-19 16:21:38 +01001998 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
1999 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2000 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04002001 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara40346002009-03-19 16:21:38 +01002002 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2003 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
2004 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07002005 pr_notice("Rescanning with blocksize %d\n",
2006 UDF_DEFAULT_BLOCKSIZE);
Jan Kara40346002009-03-19 16:21:38 +01002007 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
2008 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2009 }
2010 }
2011 if (!ret) {
Joe Perches78ace702011-10-10 01:08:05 -07002012 udf_warn(sb, "No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 goto error_out;
2014 }
2015
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002016 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002018 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002019 struct logicalVolIntegrityDescImpUse *lvidiu =
2020 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002021 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2022 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002023 /* uint16_t maxUDFWriteRev =
2024 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002026 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Joe Perches78ace702011-10-10 01:08:05 -07002027 udf_err(sb, "minUDFReadRev=%x (max is %x)\n",
2028 le16_to_cpu(lvidiu->minUDFReadRev),
2029 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002031 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002034 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2037 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2038 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2039 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2040 }
2041
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002042 if (!sbi->s_partitions) {
Joe Perches78ace702011-10-10 01:08:05 -07002043 udf_warn(sb, "No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 goto error_out;
2045 }
2046
Marcin Slusarz4b111112008-02-08 04:20:36 -08002047 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2048 UDF_PART_FLAG_READ_ONLY) {
Joe Perches78ace702011-10-10 01:08:05 -07002049 pr_notice("Partition marked readonly; forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002050 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002051 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002052
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002053 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Joe Perches78ace702011-10-10 01:08:05 -07002054 udf_warn(sb, "No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 goto error_out;
2056 }
2057
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002058 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002059 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002060 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Joe Perches78ace702011-10-10 01:08:05 -07002061 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2062 sbi->s_volume_ident,
2063 le16_to_cpu(ts.year), ts.month, ts.day,
Marcin Slusarz56774802008-02-10 11:25:31 +01002064 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 }
2066 if (!(sb->s_flags & MS_RDONLY))
2067 udf_open_lvid(sb);
2068
2069 /* Assign the root inode */
2070 /* assign inodes by physical block number */
2071 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002072 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002073 if (!inode) {
Joe Perches78ace702011-10-10 01:08:05 -07002074 udf_err(sb, "Error in udf_iget, block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002075 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 goto error_out;
2077 }
2078
2079 /* Allocate a dentry for the root inode */
Al Viro48fde702012-01-08 22:15:13 -05002080 sb->s_root = d_make_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002081 if (!sb->s_root) {
Joe Perches78ace702011-10-10 01:08:05 -07002082 udf_err(sb, "Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 goto error_out;
2084 }
Jan Kara31170b62007-05-08 00:35:21 -07002085 sb->s_maxbytes = MAX_LFS_FILESIZE;
Al Viro8de52772012-02-06 12:45:27 -05002086 sb->s_max_links = UDF_MAX_LINKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 return 0;
2088
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002089error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002090 if (sbi->s_vat_inode)
2091 iput(sbi->s_vat_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092#ifdef CONFIG_UDF_NLS
2093 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002094 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095#endif
2096 if (!(sb->s_flags & MS_RDONLY))
2097 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002098 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002099 udf_sb_free_partitions(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 kfree(sbi);
2101 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 return -EINVAL;
2104}
2105
Joe Perches8076c362011-10-10 01:08:03 -07002106void _udf_err(struct super_block *sb, const char *function,
2107 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{
Joe Perchesc2bff362011-10-10 01:08:06 -07002109 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 va_list args;
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002113
2114 vaf.fmt = fmt;
2115 vaf.va = &args;
2116
2117 pr_err("error (device %s): %s: %pV", sb->s_id, function, &vaf);
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
Joe Perchesa40ecd72011-10-10 01:08:04 -07002122void _udf_warn(struct super_block *sb, const char *function,
2123 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
Joe Perchesc2bff362011-10-10 01:08:06 -07002125 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 va_list args;
2127
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002128 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002129
2130 vaf.fmt = fmt;
2131 vaf.va = &args;
2132
2133 pr_warn("warning (device %s): %s: %pV", sb->s_id, function, &vaf);
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136}
2137
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002138static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002140 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002142 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002143
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002144 if (sbi->s_vat_inode)
2145 iput(sbi->s_vat_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146#ifdef CONFIG_UDF_NLS
2147 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002148 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149#endif
2150 if (!(sb->s_flags & MS_RDONLY))
2151 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002152 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002153 udf_sb_free_partitions(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 kfree(sb->s_fs_info);
2155 sb->s_fs_info = NULL;
2156}
2157
Jan Kara146bca72009-03-16 18:27:37 +01002158static int udf_sync_fs(struct super_block *sb, int wait)
2159{
2160 struct udf_sb_info *sbi = UDF_SB(sb);
2161
2162 mutex_lock(&sbi->s_alloc_mutex);
2163 if (sbi->s_lvid_dirty) {
2164 /*
2165 * Blockdevice will be synced later so we don't have to submit
2166 * the buffer for IO
2167 */
2168 mark_buffer_dirty(sbi->s_lvid_bh);
Jan Kara146bca72009-03-16 18:27:37 +01002169 sbi->s_lvid_dirty = 0;
2170 }
2171 mutex_unlock(&sbi->s_alloc_mutex);
2172
2173 return 0;
2174}
2175
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002176static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
David Howells726c3342006-06-23 02:02:58 -07002178 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002179 struct udf_sb_info *sbi = UDF_SB(sb);
2180 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002181 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002182
2183 if (sbi->s_lvid_bh != NULL)
2184 lvidiu = udf_sb_lvidiu(sbi);
2185 else
2186 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 buf->f_type = UDF_SUPER_MAGIC;
2189 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002190 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 buf->f_bfree = udf_count_free(sb);
2192 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002193 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2194 le32_to_cpu(lvidiu->numDirs)) : 0)
2195 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002197 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002198 buf->f_fsid.val[0] = (u32)id;
2199 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201 return 0;
2202}
2203
Marcin Slusarz4b111112008-02-08 04:20:36 -08002204static unsigned int udf_count_free_bitmap(struct super_block *sb,
2205 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206{
2207 struct buffer_head *bh = NULL;
2208 unsigned int accum = 0;
2209 int index;
2210 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002211 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 uint8_t *ptr;
2214 uint16_t ident;
2215 struct spaceBitmapDesc *bm;
2216
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002218 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002219 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002221 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07002222 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002224 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002225 brelse(bh);
Joe Perches78ace702011-10-10 01:08:05 -07002226 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 goto out;
2228 }
2229
2230 bm = (struct spaceBitmapDesc *)bh->b_data;
2231 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002232 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2233 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002235 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002236 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2237 accum += bitmap_weight((const unsigned long *)(ptr + index),
2238 cur_bytes * 8);
2239 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002240 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002241 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002242 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002244 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 udf_debug("read failed\n");
2246 goto out;
2247 }
2248 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002249 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002252 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002253out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return accum;
2255}
2256
Marcin Slusarz4b111112008-02-08 04:20:36 -08002257static unsigned int udf_count_free_table(struct super_block *sb,
2258 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
2260 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002261 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002262 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002264 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Jan Karad1668fe2010-10-20 23:24:12 +02002266 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002267 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002268 epos.offset = sizeof(struct unallocSpaceEntry);
2269 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002271 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002273
Jan Kara3bf25cb2007-05-08 00:35:16 -07002274 brelse(epos.bh);
Jan Karad1668fe2010-10-20 23:24:12 +02002275 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 return accum;
2278}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002279
2280static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
2282 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002283 struct udf_sb_info *sbi;
2284 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002286 sbi = UDF_SB(sb);
2287 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002288 struct logicalVolIntegrityDesc *lvid =
2289 (struct logicalVolIntegrityDesc *)
2290 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002291 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002292 accum = le32_to_cpu(
2293 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 if (accum == 0xFFFFFFFF)
2295 accum = 0;
2296 }
2297 }
2298
2299 if (accum)
2300 return accum;
2301
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002302 map = &sbi->s_partmaps[sbi->s_partition];
2303 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002304 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002305 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002307 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002308 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002309 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311 if (accum)
2312 return accum;
2313
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002314 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002315 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002316 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002318 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002319 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002320 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 }
2322
2323 return accum;
2324}