blob: f06cc67cf864533f9b1724203da9f5755013d630 [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>
51#include <linux/smp_lock.h>
52#include <linux/buffer_head.h>
53#include <linux/vfs.h>
54#include <linux/vmalloc.h>
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -080055#include <linux/errno.h>
Miklos Szeredi6da80892008-02-08 04:21:50 -080056#include <linux/mount.h>
57#include <linux/seq_file.h>
Marcin Slusarz01b954a2008-02-02 22:37:07 +010058#include <linux/bitmap.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020059#include <linux/crc-itu-t.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
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static char error_buf[1024];
80
81/* 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 *);
Miklos Szeredi6da80892008-02-08 04:21:50 -080095static int udf_show_options(struct seq_file *, struct vfsmount *);
Adrian Bunkb8145a72008-02-17 10:19:55 +020096static void udf_error(struct super_block *sb, const char *function,
97 const char *fmt, ...);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Marcin Slusarz6c79e982008-02-08 04:20:30 -080099struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
100{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800101 struct logicalVolIntegrityDesc *lvid =
102 (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800103 __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800104 __u32 offset = number_of_partitions * 2 *
105 sizeof(uint32_t)/sizeof(uint8_t);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800106 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/* UDF filesystem type */
Al Viro152a0832010-07-25 00:46:55 +0400110static struct dentry *udf_mount(struct file_system_type *fs_type,
111 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Al Viro152a0832010-07-25 00:46:55 +0400113 return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116static struct file_system_type udf_fstype = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700117 .owner = THIS_MODULE,
118 .name = "udf",
Al Viro152a0832010-07-25 00:46:55 +0400119 .mount = udf_mount,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700120 .kill_sb = kill_block_super,
121 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700124static struct kmem_cache *udf_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126static struct inode *udf_alloc_inode(struct super_block *sb)
127{
128 struct udf_inode_info *ei;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800129 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (!ei)
131 return NULL;
Dan Bastone95f87972006-08-13 23:24:18 -0700132
133 ei->i_unique = 0;
134 ei->i_lenExtents = 0;
135 ei->i_next_alloc_block = 0;
136 ei->i_next_alloc_goal = 0;
137 ei->i_strat4096 = 0;
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return &ei->vfs_inode;
140}
141
142static void udf_destroy_inode(struct inode *inode)
143{
144 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
145}
146
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700147static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700149 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Christoph Lametera35afb82007-05-16 22:10:57 -0700151 ei->i_ext.i_data = NULL;
152 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155static int init_inodecache(void)
156{
157 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
158 sizeof(struct udf_inode_info),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700159 0, (SLAB_RECLAIM_ACCOUNT |
160 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900161 init_once);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700162 if (!udf_inode_cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return -ENOMEM;
164 return 0;
165}
166
167static void destroy_inodecache(void)
168{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700169 kmem_cache_destroy(udf_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/* Superblock operations */
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800173static const struct super_operations udf_sb_ops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700174 .alloc_inode = udf_alloc_inode,
175 .destroy_inode = udf_destroy_inode,
176 .write_inode = udf_write_inode,
Al Viro3aac2b622010-06-07 00:43:39 -0400177 .evict_inode = udf_evict_inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700178 .put_super = udf_put_super,
Jan Kara146bca72009-03-16 18:27:37 +0100179 .sync_fs = udf_sync_fs,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700180 .statfs = udf_statfs,
181 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800182 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183};
184
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700185struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 unsigned char novrs;
187 unsigned int blocksize;
188 unsigned int session;
189 unsigned int lastblock;
190 unsigned int anchor;
191 unsigned int volume;
192 unsigned short partition;
193 unsigned int fileset;
194 unsigned int rootdir;
195 unsigned int flags;
196 mode_t umask;
197 gid_t gid;
198 uid_t uid;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100199 mode_t fmode;
200 mode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct nls_table *nls_map;
202};
203
204static int __init init_udf_fs(void)
205{
206 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 err = init_inodecache();
209 if (err)
210 goto out1;
211 err = register_filesystem(&udf_fstype);
212 if (err)
213 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700216
217out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700219
220out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return err;
222}
223
224static void __exit exit_udf_fs(void)
225{
226 unregister_filesystem(&udf_fstype);
227 destroy_inodecache();
228}
229
230module_init(init_udf_fs)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700231module_exit(exit_udf_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800233static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
234{
235 struct udf_sb_info *sbi = UDF_SB(sb);
236
237 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
238 GFP_KERNEL);
239 if (!sbi->s_partmaps) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700240 udf_error(sb, __func__,
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800241 "Unable to allocate space for %d partition maps",
242 count);
243 sbi->s_partitions = 0;
244 return -ENOMEM;
245 }
246
247 sbi->s_partitions = count;
248 return 0;
249}
250
Miklos Szeredi6da80892008-02-08 04:21:50 -0800251static int udf_show_options(struct seq_file *seq, struct vfsmount *mnt)
252{
253 struct super_block *sb = mnt->mnt_sb;
254 struct udf_sb_info *sbi = UDF_SB(sb);
255
256 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
257 seq_puts(seq, ",nostrict");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100258 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
Miklos Szeredi6da80892008-02-08 04:21:50 -0800259 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
260 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
261 seq_puts(seq, ",unhide");
262 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
263 seq_puts(seq, ",undelete");
264 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
265 seq_puts(seq, ",noadinicb");
266 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
267 seq_puts(seq, ",shortad");
268 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
269 seq_puts(seq, ",uid=forget");
270 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
271 seq_puts(seq, ",uid=ignore");
272 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
273 seq_puts(seq, ",gid=forget");
274 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
275 seq_puts(seq, ",gid=ignore");
276 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
277 seq_printf(seq, ",uid=%u", sbi->s_uid);
278 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
279 seq_printf(seq, ",gid=%u", sbi->s_gid);
280 if (sbi->s_umask != 0)
281 seq_printf(seq, ",umask=%o", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100282 if (sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100283 seq_printf(seq, ",mode=%o", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100284 if (sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100285 seq_printf(seq, ",dmode=%o", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800286 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
287 seq_printf(seq, ",session=%u", sbi->s_session);
288 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
289 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
Jan Kara403460052009-03-19 16:21:38 +0100290 if (sbi->s_anchor != 0)
291 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800292 /*
293 * volume, partition, fileset and rootdir seem to be ignored
294 * currently
295 */
296 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
297 seq_puts(seq, ",utf8");
298 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
299 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
300
301 return 0;
302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/*
305 * udf_parse_options
306 *
307 * PURPOSE
308 * Parse mount options.
309 *
310 * DESCRIPTION
311 * The following mount options are supported:
312 *
313 * gid= Set the default group.
314 * umask= Set the default umask.
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100315 * mode= Set the default file permissions.
316 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * uid= Set the default user.
318 * bs= Set the block size.
319 * unhide Show otherwise hidden files.
320 * undelete Show deleted files in lists.
321 * adinicb Embed data in the inode (default)
322 * noadinicb Don't embed data in the inode
323 * shortad Use short ad's
324 * longad Use long ad's (default)
325 * nostrict Unset strict conformance
326 * iocharset= Set the NLS character set
327 *
328 * The remaining are for debugging and disaster recovery:
329 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700330 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 *
332 * The following expect a offset from 0.
333 *
334 * session= Set the CDROM session (default= last session)
335 * anchor= Override standard anchor location. (default= 256)
336 * volume= Override the VolumeDesc location. (unused)
337 * partition= Override the PartitionDesc location. (unused)
338 * lastblock= Set the last block of the filesystem/
339 *
340 * The following expect a offset from the partition root.
341 *
342 * fileset= Override the fileset block location. (unused)
343 * rootdir= Override the root directory location. (unused)
344 * WARNING: overriding the rootdir to a non-directory may
345 * yield highly unpredictable results.
346 *
347 * PRE-CONDITIONS
348 * options Pointer to mount options string.
349 * uopts Pointer to mount options variable.
350 *
351 * POST-CONDITIONS
352 * <return> 1 Mount options parsed okay.
353 * <return> 0 Error parsing mount options.
354 *
355 * HISTORY
356 * July 1, 1997 - Andrew E. Mileski
357 * Written, tested, and released.
358 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360enum {
361 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
362 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
363 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
364 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
365 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100366 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
367 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368};
369
Steven Whitehousea447c092008-10-13 10:46:57 +0100370static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700371 {Opt_novrs, "novrs"},
372 {Opt_nostrict, "nostrict"},
373 {Opt_bs, "bs=%u"},
374 {Opt_unhide, "unhide"},
375 {Opt_undelete, "undelete"},
376 {Opt_noadinicb, "noadinicb"},
377 {Opt_adinicb, "adinicb"},
378 {Opt_shortad, "shortad"},
379 {Opt_longad, "longad"},
380 {Opt_uforget, "uid=forget"},
381 {Opt_uignore, "uid=ignore"},
382 {Opt_gforget, "gid=forget"},
383 {Opt_gignore, "gid=ignore"},
384 {Opt_gid, "gid=%u"},
385 {Opt_uid, "uid=%u"},
386 {Opt_umask, "umask=%o"},
387 {Opt_session, "session=%u"},
388 {Opt_lastblock, "lastblock=%u"},
389 {Opt_anchor, "anchor=%u"},
390 {Opt_volume, "volume=%u"},
391 {Opt_partition, "partition=%u"},
392 {Opt_fileset, "fileset=%u"},
393 {Opt_rootdir, "rootdir=%u"},
394 {Opt_utf8, "utf8"},
395 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100396 {Opt_fmode, "mode=%o"},
397 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700398 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399};
400
Miklos Szeredi6da80892008-02-08 04:21:50 -0800401static int udf_parse_options(char *options, struct udf_options *uopt,
402 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 char *p;
405 int option;
406
407 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 uopt->partition = 0xFFFF;
409 uopt->session = 0xFFFFFFFF;
410 uopt->lastblock = 0;
411 uopt->anchor = 0;
412 uopt->volume = 0xFFFFFFFF;
413 uopt->rootdir = 0xFFFFFFFF;
414 uopt->fileset = 0xFFFFFFFF;
415 uopt->nls_map = NULL;
416
417 if (!options)
418 return 1;
419
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700420 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 substring_t args[MAX_OPT_ARGS];
422 int token;
423 if (!*p)
424 continue;
425
426 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700427 switch (token) {
428 case Opt_novrs:
429 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100430 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700431 case Opt_bs:
432 if (match_int(&args[0], &option))
433 return 0;
434 uopt->blocksize = option;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100435 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700436 break;
437 case Opt_unhide:
438 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
439 break;
440 case Opt_undelete:
441 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
442 break;
443 case Opt_noadinicb:
444 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
445 break;
446 case Opt_adinicb:
447 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
448 break;
449 case Opt_shortad:
450 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
451 break;
452 case Opt_longad:
453 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
454 break;
455 case Opt_gid:
456 if (match_int(args, &option))
457 return 0;
458 uopt->gid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700459 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700460 break;
461 case Opt_uid:
462 if (match_int(args, &option))
463 return 0;
464 uopt->uid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700465 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700466 break;
467 case Opt_umask:
468 if (match_octal(args, &option))
469 return 0;
470 uopt->umask = option;
471 break;
472 case Opt_nostrict:
473 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
474 break;
475 case Opt_session:
476 if (match_int(args, &option))
477 return 0;
478 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800479 if (!remount)
480 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700481 break;
482 case Opt_lastblock:
483 if (match_int(args, &option))
484 return 0;
485 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800486 if (!remount)
487 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700488 break;
489 case Opt_anchor:
490 if (match_int(args, &option))
491 return 0;
492 uopt->anchor = option;
493 break;
494 case Opt_volume:
495 if (match_int(args, &option))
496 return 0;
497 uopt->volume = option;
498 break;
499 case Opt_partition:
500 if (match_int(args, &option))
501 return 0;
502 uopt->partition = option;
503 break;
504 case Opt_fileset:
505 if (match_int(args, &option))
506 return 0;
507 uopt->fileset = option;
508 break;
509 case Opt_rootdir:
510 if (match_int(args, &option))
511 return 0;
512 uopt->rootdir = option;
513 break;
514 case Opt_utf8:
515 uopt->flags |= (1 << UDF_FLAG_UTF8);
516 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700518 case Opt_iocharset:
519 uopt->nls_map = load_nls(args[0].from);
520 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
521 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700523 case Opt_uignore:
524 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
525 break;
526 case Opt_uforget:
527 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
528 break;
529 case Opt_gignore:
530 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
531 break;
532 case Opt_gforget:
533 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
534 break;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100535 case Opt_fmode:
536 if (match_octal(args, &option))
537 return 0;
538 uopt->fmode = option & 0777;
539 break;
540 case Opt_dmode:
541 if (match_octal(args, &option))
542 return 0;
543 uopt->dmode = option & 0777;
544 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700545 default:
546 printk(KERN_ERR "udf: bad mount option \"%s\" "
547 "or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return 0;
549 }
550 }
551 return 1;
552}
553
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700554static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800557 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400558 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800560 uopt.flags = sbi->s_flags;
561 uopt.uid = sbi->s_uid;
562 uopt.gid = sbi->s_gid;
563 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100564 uopt.fmode = sbi->s_fmode;
565 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Miklos Szeredi6da80892008-02-08 04:21:50 -0800567 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return -EINVAL;
569
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200570 lock_kernel();
Jan Karac03cad22010-10-20 22:17:28 +0200571 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800572 sbi->s_flags = uopt.flags;
573 sbi->s_uid = uopt.uid;
574 sbi->s_gid = uopt.gid;
575 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100576 sbi->s_fmode = uopt.fmode;
577 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200578 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800580 if (sbi->s_lvid_bh) {
581 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (write_rev > UDF_MAX_WRITE_VERSION)
583 *flags |= MS_RDONLY;
584 }
585
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400586 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
587 goto out_unlock;
588
Jan Kara36350462010-05-19 16:28:56 +0200589 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200591 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 udf_open_lvid(sb);
593
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400594out_unlock:
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200595 unlock_kernel();
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400596 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Jan Kara403460052009-03-19 16:21:38 +0100599/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
600/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
601static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200604 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 int sectorsize;
606 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700607 int nsr02 = 0;
608 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800609 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800611 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (sb->s_blocksize < sizeof(struct volStructDesc))
613 sectorsize = sizeof(struct volStructDesc);
614 else
615 sectorsize = sb->s_blocksize;
616
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800617 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200620 (unsigned int)(sector >> sb->s_blocksize_bits),
621 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700623 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* Read a block */
625 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
626 if (!bh)
627 break;
628
629 /* Look for ISO descriptors */
630 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800631 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700633 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700634 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800636 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
637 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700638 switch (vsd->structType) {
639 case 0:
640 udf_debug("ISO9660 Boot Record found\n");
641 break;
642 case 1:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800643 udf_debug("ISO9660 Primary Volume Descriptor "
644 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700645 break;
646 case 2:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800647 udf_debug("ISO9660 Supplementary Volume "
648 "Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700649 break;
650 case 3:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800651 udf_debug("ISO9660 Volume Partition Descriptor "
652 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700653 break;
654 case 255:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800655 udf_debug("ISO9660 Volume Descriptor Set "
656 "Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700657 break;
658 default:
659 udf_debug("ISO9660 VRS (%u) found\n",
660 vsd->structType);
661 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800663 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
664 VSD_STD_ID_LEN))
665 ; /* nothing */
666 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
667 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700668 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800670 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
671 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800673 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
674 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700676 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
679 if (nsr03)
680 return nsr03;
681 else if (nsr02)
682 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800683 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return -1;
685 else
686 return 0;
687}
688
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800689static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200690 struct kernel_lb_addr *fileset,
691 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
693 struct buffer_head *bh = NULL;
694 long lastblock;
695 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800696 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700699 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200700 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700702 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700704 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700705 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 1;
707 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800711 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800712 if (!bh) {
713 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200714 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700716/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700718
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800719 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700720 (newfileset.partitionReferenceNum != 0xFFFF &&
721 fileset->logicalBlockNum == 0xFFFFFFFF &&
722 fileset->partitionReferenceNum == 0xFFFF);
723 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800724 lastblock = sbi->s_partmaps
725 [newfileset.partitionReferenceNum]
726 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 newfileset.logicalBlockNum = 0;
728
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700729 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200730 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800731 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700732 if (!bh) {
733 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 continue;
735 }
736
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700737 switch (ident) {
738 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700739 {
740 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800741 sp = (struct spaceBitmapDesc *)
742 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700743 newfileset.logicalBlockNum += 1 +
744 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800745 sizeof(struct spaceBitmapDesc)
746 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700747 brelse(bh);
748 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700750 case TAG_IDENT_FSD:
751 *fileset = newfileset;
752 break;
753 default:
754 newfileset.logicalBlockNum++;
755 brelse(bh);
756 bh = NULL;
757 break;
758 }
759 } while (newfileset.logicalBlockNum < lastblock &&
760 fileset->logicalBlockNum == 0xFFFFFFFF &&
761 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763 }
764
765 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700766 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700768 fileset->logicalBlockNum,
769 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800771 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700773 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 0;
775 }
776 return 1;
777}
778
Jan Karac0eb31e2008-04-01 16:50:35 +0200779static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100782 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200783 struct buffer_head *bh;
784 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100785 int ret = 1;
786
787 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
788 if (!instr)
789 return 1;
790
791 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
792 if (!outstr)
793 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200794
795 bh = udf_read_tagged(sb, block, block, &ident);
796 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100797 goto out2;
798
Jan Karac0eb31e2008-04-01 16:50:35 +0200799 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 pvoldesc = (struct primaryVolDesc *)bh->b_data;
802
Marcin Slusarz56774802008-02-10 11:25:31 +0100803 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
804 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100805#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200806 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +0100807 udf_debug("recording time %04u/%02u/%02u"
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800808 " %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100809 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
810 ts->minute, le16_to_cpu(ts->typeAndTimezone));
811#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100814 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
815 if (udf_CS0toUTF8(outstr, instr)) {
816 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
817 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800818 udf_debug("volIdent[] = '%s'\n",
819 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100822 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
823 if (udf_CS0toUTF8(outstr, instr))
824 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200825
826 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100827 ret = 0;
828out2:
829 kfree(outstr);
830out1:
831 kfree(instr);
832 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Jan Karabfb257a2008-04-08 20:37:21 +0200835static int udf_load_metadata_files(struct super_block *sb, int partition)
836{
837 struct udf_sb_info *sbi = UDF_SB(sb);
838 struct udf_part_map *map;
839 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200840 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200841 int fe_error = 0;
842
843 map = &sbi->s_partmaps[partition];
844 mdata = &map->s_type_specific.s_metadata;
845
846 /* metadata address */
847 addr.logicalBlockNum = mdata->s_meta_file_loc;
848 addr.partitionReferenceNum = map->s_partition_num;
849
850 udf_debug("Metadata file location: block = %d part = %d\n",
851 addr.logicalBlockNum, addr.partitionReferenceNum);
852
Pekka Enberg97e961f2008-10-15 12:29:03 +0200853 mdata->s_metadata_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200854
855 if (mdata->s_metadata_fe == NULL) {
856 udf_warning(sb, __func__, "metadata inode efe not found, "
857 "will try mirror inode.");
858 fe_error = 1;
859 } else if (UDF_I(mdata->s_metadata_fe)->i_alloc_type !=
860 ICBTAG_FLAG_AD_SHORT) {
861 udf_warning(sb, __func__, "metadata inode efe does not have "
862 "short allocation descriptors!");
863 fe_error = 1;
864 iput(mdata->s_metadata_fe);
865 mdata->s_metadata_fe = NULL;
866 }
867
868 /* mirror file entry */
869 addr.logicalBlockNum = mdata->s_mirror_file_loc;
870 addr.partitionReferenceNum = map->s_partition_num;
871
872 udf_debug("Mirror metadata file location: block = %d part = %d\n",
873 addr.logicalBlockNum, addr.partitionReferenceNum);
874
Pekka Enberg97e961f2008-10-15 12:29:03 +0200875 mdata->s_mirror_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200876
877 if (mdata->s_mirror_fe == NULL) {
878 if (fe_error) {
879 udf_error(sb, __func__, "mirror inode efe not found "
880 "and metadata inode is missing too, exiting...");
881 goto error_exit;
882 } else
883 udf_warning(sb, __func__, "mirror inode efe not found,"
884 " but metadata inode is OK");
885 } else if (UDF_I(mdata->s_mirror_fe)->i_alloc_type !=
886 ICBTAG_FLAG_AD_SHORT) {
887 udf_warning(sb, __func__, "mirror inode efe does not have "
888 "short allocation descriptors!");
889 iput(mdata->s_mirror_fe);
890 mdata->s_mirror_fe = NULL;
891 if (fe_error)
892 goto error_exit;
893 }
894
895 /*
896 * bitmap file entry
897 * Note:
898 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
899 */
900 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
901 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
902 addr.partitionReferenceNum = map->s_partition_num;
903
904 udf_debug("Bitmap file location: block = %d part = %d\n",
905 addr.logicalBlockNum, addr.partitionReferenceNum);
906
Pekka Enberg97e961f2008-10-15 12:29:03 +0200907 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200908
909 if (mdata->s_bitmap_fe == NULL) {
910 if (sb->s_flags & MS_RDONLY)
911 udf_warning(sb, __func__, "bitmap inode efe "
912 "not found but it's ok since the disc"
913 " is mounted read-only");
914 else {
915 udf_error(sb, __func__, "bitmap inode efe not "
916 "found and attempted read-write mount");
917 goto error_exit;
918 }
919 }
920 }
921
922 udf_debug("udf_load_metadata_files Ok\n");
923
924 return 0;
925
926error_exit:
927 return 1;
928}
929
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700930static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200931 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
933 struct fileSetDesc *fset;
934
935 fset = (struct fileSetDesc *)bh->b_data;
936
937 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
938
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800939 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700941 udf_debug("Rootdir at block=%d, partition=%d\n",
942 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800945int udf_compute_nr_groups(struct super_block *sb, u32 partition)
946{
947 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +0100948 return DIV_ROUND_UP(map->s_partition_len +
949 (sizeof(struct spaceBitmapDesc) << 3),
950 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800951}
952
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800953static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
954{
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800955 struct udf_bitmap *bitmap;
956 int nr_groups;
957 int size;
958
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800959 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800960 size = sizeof(struct udf_bitmap) +
961 (sizeof(struct buffer_head *) * nr_groups);
962
963 if (size <= PAGE_SIZE)
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700964 bitmap = kzalloc(size, GFP_KERNEL);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800965 else
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700966 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800967
968 if (bitmap == NULL) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700969 udf_error(sb, __func__,
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800970 "Unable to allocate space for bitmap "
971 "and %d buffer_head pointers", nr_groups);
972 return NULL;
973 }
974
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800975 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
976 bitmap->s_nr_groups = nr_groups;
977 return bitmap;
978}
979
Jan Kara3fb38df2008-04-02 12:26:36 +0200980static int udf_fill_partdesc_info(struct super_block *sb,
981 struct partitionDesc *p, int p_index)
982{
983 struct udf_part_map *map;
984 struct udf_sb_info *sbi = UDF_SB(sb);
985 struct partitionHeaderDesc *phd;
986
987 map = &sbi->s_partmaps[p_index];
988
989 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
990 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
991
992 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
993 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
994 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
995 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
996 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
997 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
998 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
999 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1000
Sebastian Manciulea706047a2008-04-14 17:13:01 +02001001 udf_debug("Partition (%d type %x) starts at physical %d, "
1002 "block length %d\n", p_index,
Jan Kara3fb38df2008-04-02 12:26:36 +02001003 map->s_partition_type, map->s_partition_root,
1004 map->s_partition_len);
1005
1006 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1007 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1008 return 0;
1009
1010 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1011 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001012 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001013 .logicalBlockNum = le32_to_cpu(
1014 phd->unallocSpaceTable.extPosition),
1015 .partitionReferenceNum = p_index,
1016 };
1017
Pekka Enberg97e961f2008-10-15 12:29:03 +02001018 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001019 if (!map->s_uspace.s_table) {
1020 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1021 p_index);
1022 return 1;
1023 }
1024 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1025 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1026 p_index, map->s_uspace.s_table->i_ino);
1027 }
1028
1029 if (phd->unallocSpaceBitmap.extLength) {
1030 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1031 if (!bitmap)
1032 return 1;
1033 map->s_uspace.s_bitmap = bitmap;
1034 bitmap->s_extLength = le32_to_cpu(
1035 phd->unallocSpaceBitmap.extLength);
1036 bitmap->s_extPosition = le32_to_cpu(
1037 phd->unallocSpaceBitmap.extPosition);
1038 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
1039 udf_debug("unallocSpaceBitmap (part %d) @ %d\n", p_index,
1040 bitmap->s_extPosition);
1041 }
1042
1043 if (phd->partitionIntegrityTable.extLength)
1044 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1045
1046 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001047 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001048 .logicalBlockNum = le32_to_cpu(
1049 phd->freedSpaceTable.extPosition),
1050 .partitionReferenceNum = p_index,
1051 };
1052
Pekka Enberg97e961f2008-10-15 12:29:03 +02001053 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001054 if (!map->s_fspace.s_table) {
1055 udf_debug("cannot load freedSpaceTable (part %d)\n",
1056 p_index);
1057 return 1;
1058 }
1059
1060 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1061 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1062 p_index, map->s_fspace.s_table->i_ino);
1063 }
1064
1065 if (phd->freedSpaceBitmap.extLength) {
1066 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1067 if (!bitmap)
1068 return 1;
1069 map->s_fspace.s_bitmap = bitmap;
1070 bitmap->s_extLength = le32_to_cpu(
1071 phd->freedSpaceBitmap.extLength);
1072 bitmap->s_extPosition = le32_to_cpu(
1073 phd->freedSpaceBitmap.extPosition);
1074 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
1075 udf_debug("freedSpaceBitmap (part %d) @ %d\n", p_index,
1076 bitmap->s_extPosition);
1077 }
1078 return 0;
1079}
1080
Jan Karae971b0b2009-11-30 19:47:55 +01001081static void udf_find_vat_block(struct super_block *sb, int p_index,
1082 int type1_index, sector_t start_block)
1083{
1084 struct udf_sb_info *sbi = UDF_SB(sb);
1085 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1086 sector_t vat_block;
1087 struct kernel_lb_addr ino;
1088
1089 /*
1090 * VAT file entry is in the last recorded block. Some broken disks have
1091 * it a few blocks before so try a bit harder...
1092 */
1093 ino.partitionReferenceNum = type1_index;
1094 for (vat_block = start_block;
1095 vat_block >= map->s_partition_root &&
1096 vat_block >= start_block - 3 &&
1097 !sbi->s_vat_inode; vat_block--) {
1098 ino.logicalBlockNum = vat_block - map->s_partition_root;
1099 sbi->s_vat_inode = udf_iget(sb, &ino);
1100 }
1101}
1102
Jan Kara38b74a52008-04-02 16:01:35 +02001103static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1104{
1105 struct udf_sb_info *sbi = UDF_SB(sb);
1106 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001107 struct buffer_head *bh = NULL;
1108 struct udf_inode_info *vati;
1109 uint32_t pos;
1110 struct virtualAllocationTable20 *vat20;
Jan Kara4bf17af2009-07-14 19:30:23 +02001111 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001112
Jan Karae971b0b2009-11-30 19:47:55 +01001113 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001114 if (!sbi->s_vat_inode &&
1115 sbi->s_last_block != blocks - 1) {
1116 printk(KERN_NOTICE "UDF-fs: Failed to read VAT inode from the"
1117 " last recorded block (%lu), retrying with the last "
1118 "block of the device (%lu).\n",
1119 (unsigned long)sbi->s_last_block,
1120 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001121 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001122 }
Jan Kara38b74a52008-04-02 16:01:35 +02001123 if (!sbi->s_vat_inode)
1124 return 1;
1125
1126 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001127 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001128 map->s_type_specific.s_virtual.s_num_entries =
1129 (sbi->s_vat_inode->i_size - 36) >> 2;
1130 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001131 vati = UDF_I(sbi->s_vat_inode);
1132 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1133 pos = udf_block_map(sbi->s_vat_inode, 0);
1134 bh = sb_bread(sb, pos);
1135 if (!bh)
1136 return 1;
1137 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1138 } else {
1139 vat20 = (struct virtualAllocationTable20 *)
1140 vati->i_ext.i_data;
1141 }
Jan Kara38b74a52008-04-02 16:01:35 +02001142
Jan Kara38b74a52008-04-02 16:01:35 +02001143 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001144 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001145 map->s_type_specific.s_virtual.s_num_entries =
1146 (sbi->s_vat_inode->i_size -
1147 map->s_type_specific.s_virtual.
1148 s_start_offset) >> 2;
1149 brelse(bh);
1150 }
1151 return 0;
1152}
1153
Jan Karac0eb31e2008-04-01 16:50:35 +02001154static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Jan Karac0eb31e2008-04-01 16:50:35 +02001156 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001157 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001158 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001159 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001160 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001161 uint16_t partitionNumber;
1162 uint16_t ident;
1163 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Jan Karac0eb31e2008-04-01 16:50:35 +02001165 bh = udf_read_tagged(sb, block, block, &ident);
1166 if (!bh)
1167 return 1;
1168 if (ident != TAG_IDENT_PD)
1169 goto out_bh;
1170
1171 p = (struct partitionDesc *)bh->b_data;
1172 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001173
Jan Karabfb257a2008-04-08 20:37:21 +02001174 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001175 for (i = 0; i < sbi->s_partitions; i++) {
1176 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001177 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001178 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001179 if (map->s_partition_num == partitionNumber &&
1180 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1181 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001183 }
1184
Jan Kara38b74a52008-04-02 16:01:35 +02001185 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001186 udf_debug("Partition (%d) not found in partition map\n",
1187 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001188 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001189 }
1190
Jan Kara3fb38df2008-04-02 12:26:36 +02001191 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001192
1193 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001194 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1195 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001196 */
1197 type1_idx = i;
1198 for (i = 0; i < sbi->s_partitions; i++) {
1199 map = &sbi->s_partmaps[i];
1200
1201 if (map->s_partition_num == partitionNumber &&
1202 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001203 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1204 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001205 break;
1206 }
1207
1208 if (i >= sbi->s_partitions)
1209 goto out_bh;
1210
1211 ret = udf_fill_partdesc_info(sb, p, i);
1212 if (ret)
1213 goto out_bh;
1214
Jan Karabfb257a2008-04-08 20:37:21 +02001215 if (map->s_partition_type == UDF_METADATA_MAP25) {
1216 ret = udf_load_metadata_files(sb, i);
1217 if (ret) {
1218 printk(KERN_ERR "UDF-fs: error loading MetaData "
1219 "partition map %d\n", i);
1220 goto out_bh;
1221 }
1222 } else {
1223 ret = udf_load_vat(sb, i, type1_idx);
1224 if (ret)
1225 goto out_bh;
1226 /*
1227 * Mark filesystem read-only if we have a partition with
1228 * virtual map since we don't handle writing to it (we
1229 * overwrite blocks instead of relocating them).
1230 */
1231 sb->s_flags |= MS_RDONLY;
1232 printk(KERN_NOTICE "UDF-fs: Filesystem marked read-only "
1233 "because writing to pseudooverwrite partition is "
1234 "not implemented.\n");
1235 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001236out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001237 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001238 brelse(bh);
1239 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240}
1241
Jan Karac0eb31e2008-04-01 16:50:35 +02001242static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001243 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 struct logicalVolDesc *lvd;
1246 int i, j, offset;
1247 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001248 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001249 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001250 uint16_t ident;
1251 struct buffer_head *bh;
1252 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Jan Karac0eb31e2008-04-01 16:50:35 +02001254 bh = udf_read_tagged(sb, block, block, &ident);
1255 if (!bh)
1256 return 1;
1257 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 lvd = (struct logicalVolDesc *)bh->b_data;
1259
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -08001260 i = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
Jan Karac0eb31e2008-04-01 16:50:35 +02001261 if (i != 0) {
1262 ret = i;
1263 goto out_bh;
1264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001266 for (i = 0, offset = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001267 i < sbi->s_partitions && offset < le32_to_cpu(lvd->mapTableLength);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001268 i++, offset += gpm->partitionMapLength) {
1269 struct udf_part_map *map = &sbi->s_partmaps[i];
1270 gpm = (struct genericPartitionMap *)
1271 &(lvd->partitionMaps[offset]);
1272 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001273 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001274 struct genericPartitionMap1 *gpm1 =
1275 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001276 map->s_partition_type = UDF_TYPE1_MAP15;
1277 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1278 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1279 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001280 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001281 struct udfPartitionMap2 *upm2 =
1282 (struct udfPartitionMap2 *)gpm;
1283 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1284 strlen(UDF_ID_VIRTUAL))) {
1285 u16 suf =
1286 le16_to_cpu(((__le16 *)upm2->partIdent.
1287 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001288 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001289 map->s_partition_type =
1290 UDF_VIRTUAL_MAP15;
1291 map->s_partition_func =
1292 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001293 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001294 map->s_partition_type =
1295 UDF_VIRTUAL_MAP20;
1296 map->s_partition_func =
1297 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001299 } else if (!strncmp(upm2->partIdent.ident,
1300 UDF_ID_SPARABLE,
1301 strlen(UDF_ID_SPARABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 uint32_t loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct sparingTable *st;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001304 struct sparablePartitionMap *spm =
1305 (struct sparablePartitionMap *)gpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001307 map->s_partition_type = UDF_SPARABLE_MAP15;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001308 map->s_type_specific.s_sparing.s_packet_len =
1309 le16_to_cpu(spm->packetLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001310 for (j = 0; j < spm->numSparingTables; j++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001311 struct buffer_head *bh2;
1312
1313 loc = le32_to_cpu(
1314 spm->locSparingTable[j]);
1315 bh2 = udf_read_tagged(sb, loc, loc,
1316 &ident);
1317 map->s_type_specific.s_sparing.
1318 s_spar_map[j] = bh2;
1319
Marcin Slusarz165923f2008-02-10 11:33:08 +01001320 if (bh2 == NULL)
1321 continue;
1322
1323 st = (struct sparingTable *)bh2->b_data;
1324 if (ident != 0 || strncmp(
1325 st->sparingIdent.ident,
1326 UDF_ID_SPARING,
1327 strlen(UDF_ID_SPARING))) {
1328 brelse(bh2);
1329 map->s_type_specific.s_sparing.
1330 s_spar_map[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001333 map->s_partition_func = udf_get_pblock_spar15;
Jan Karabfb257a2008-04-08 20:37:21 +02001334 } else if (!strncmp(upm2->partIdent.ident,
1335 UDF_ID_METADATA,
1336 strlen(UDF_ID_METADATA))) {
1337 struct udf_meta_data *mdata =
1338 &map->s_type_specific.s_metadata;
1339 struct metadataPartitionMap *mdm =
1340 (struct metadataPartitionMap *)
1341 &(lvd->partitionMaps[offset]);
1342 udf_debug("Parsing Logical vol part %d "
1343 "type %d id=%s\n", i, type,
1344 UDF_ID_METADATA);
1345
1346 map->s_partition_type = UDF_METADATA_MAP25;
1347 map->s_partition_func = udf_get_pblock_meta25;
1348
1349 mdata->s_meta_file_loc =
1350 le32_to_cpu(mdm->metadataFileLoc);
1351 mdata->s_mirror_file_loc =
1352 le32_to_cpu(mdm->metadataMirrorFileLoc);
1353 mdata->s_bitmap_file_loc =
1354 le32_to_cpu(mdm->metadataBitmapFileLoc);
1355 mdata->s_alloc_unit_size =
1356 le32_to_cpu(mdm->allocUnitSize);
1357 mdata->s_align_unit_size =
1358 le16_to_cpu(mdm->alignUnitSize);
1359 mdata->s_dup_md_flag =
1360 mdm->flags & 0x01;
1361
1362 udf_debug("Metadata Ident suffix=0x%x\n",
1363 (le16_to_cpu(
1364 ((__le16 *)
1365 mdm->partIdent.identSuffix)[0])));
1366 udf_debug("Metadata part num=%d\n",
1367 le16_to_cpu(mdm->partitionNum));
1368 udf_debug("Metadata part alloc unit size=%d\n",
1369 le32_to_cpu(mdm->allocUnitSize));
1370 udf_debug("Metadata file loc=%d\n",
1371 le32_to_cpu(mdm->metadataFileLoc));
1372 udf_debug("Mirror file loc=%d\n",
1373 le32_to_cpu(mdm->metadataMirrorFileLoc));
1374 udf_debug("Bitmap file loc=%d\n",
1375 le32_to_cpu(mdm->metadataBitmapFileLoc));
1376 udf_debug("Duplicate Flag: %d %d\n",
1377 mdata->s_dup_md_flag, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001378 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001379 udf_debug("Unknown ident: %s\n",
1380 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 continue;
1382 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001383 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1384 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 }
1386 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001387 i, map->s_partition_num, type,
1388 map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
1390
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001391 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001392 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 *fileset = lelb_to_cpu(la->extLocation);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001395 udf_debug("FileSet found in LogicalVolDesc at block=%d, "
1396 "partition=%d\n", fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001397 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399 if (lvd->integritySeqExt.extLength)
1400 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001401
Jan Karac0eb31e2008-04-01 16:50:35 +02001402out_bh:
1403 brelse(bh);
1404 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
1407/*
1408 * udf_load_logicalvolint
1409 *
1410 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001411static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
1413 struct buffer_head *bh = NULL;
1414 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001415 struct udf_sb_info *sbi = UDF_SB(sb);
1416 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001419 (bh = udf_read_tagged(sb, loc.extLocation,
1420 loc.extLocation, &ident)) &&
1421 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001422 sbi->s_lvid_bh = bh;
1423 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001424
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001425 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001426 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001427 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001428
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001429 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001430 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001432 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001434 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001435 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438/*
1439 * udf_process_sequence
1440 *
1441 * PURPOSE
1442 * Process a main/reserve volume descriptor sequence.
1443 *
1444 * PRE-CONDITIONS
1445 * sb Pointer to _locked_ superblock.
1446 * block First block of first extent of the sequence.
1447 * lastblock Lastblock of first extent of the sequence.
1448 *
1449 * HISTORY
1450 * July 1, 1997 - Andrew E. Mileski
1451 * Written, tested, and released.
1452 */
Jan Kara200a3592008-03-04 13:03:09 +01001453static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001454 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
1456 struct buffer_head *bh = NULL;
1457 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001458 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 struct generic_desc *gd;
1460 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001461 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 uint32_t vdsn;
1463 uint16_t ident;
1464 long next_s = 0, next_e = 0;
1465
1466 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1467
Jan Karac0eb31e2008-04-01 16:50:35 +02001468 /*
1469 * Read the main descriptor sequence and find which descriptors
1470 * are in it.
1471 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001472 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001475 if (!bh) {
1476 printk(KERN_ERR "udf: Block %Lu of volume descriptor "
1477 "sequence is corrupted or we could not read "
1478 "it.\n", (unsigned long long)block);
1479 return 1;
1480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1483 gd = (struct generic_desc *)bh->b_data;
1484 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001485 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001486 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001487 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1488 if (vdsn >= curr->volDescSeqNum) {
1489 curr->volDescSeqNum = vdsn;
1490 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001491 }
1492 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001493 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001494 curr = &vds[VDS_POS_VOL_DESC_PTR];
1495 if (vdsn >= curr->volDescSeqNum) {
1496 curr->volDescSeqNum = vdsn;
1497 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001499 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001500 next_s = le32_to_cpu(
1501 vdp->nextVolDescSeqExt.extLocation);
1502 next_e = le32_to_cpu(
1503 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001504 next_e = next_e >> sb->s_blocksize_bits;
1505 next_e += next_s;
1506 }
1507 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001508 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001509 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1510 if (vdsn >= curr->volDescSeqNum) {
1511 curr->volDescSeqNum = vdsn;
1512 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001513 }
1514 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001515 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001516 curr = &vds[VDS_POS_PARTITION_DESC];
1517 if (!curr->block)
1518 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001519 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001520 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001521 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1522 if (vdsn >= curr->volDescSeqNum) {
1523 curr->volDescSeqNum = vdsn;
1524 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001525 }
1526 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001527 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001528 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1529 if (vdsn >= curr->volDescSeqNum) {
1530 curr->volDescSeqNum = vdsn;
1531 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001532 }
1533 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001534 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001535 vds[VDS_POS_TERMINATING_DESC].block = block;
1536 if (next_e) {
1537 block = next_s;
1538 lastblock = next_e;
1539 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001540 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001541 done = 1;
1542 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001544 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001546 /*
1547 * Now read interesting descriptors again and process them
1548 * in a suitable order
1549 */
1550 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
1551 printk(KERN_ERR "udf: Primary Volume Descriptor not found!\n");
1552 return 1;
1553 }
1554 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1555 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Jan Karac0eb31e2008-04-01 16:50:35 +02001557 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1558 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1559 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001560
Jan Karac0eb31e2008-04-01 16:50:35 +02001561 if (vds[VDS_POS_PARTITION_DESC].block) {
1562 /*
1563 * We rescan the whole descriptor sequence to find
1564 * partition descriptor blocks and process them.
1565 */
1566 for (block = vds[VDS_POS_PARTITION_DESC].block;
1567 block < vds[VDS_POS_TERMINATING_DESC].block;
1568 block++)
1569 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001570 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
1572
1573 return 0;
1574}
1575
Jan Kara403460052009-03-19 16:21:38 +01001576static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1577 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
Jan Kara403460052009-03-19 16:21:38 +01001579 struct anchorVolDescPtr *anchor;
1580 long main_s, main_e, reserve_s, reserve_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Jan Kara403460052009-03-19 16:21:38 +01001582 anchor = (struct anchorVolDescPtr *)bh->b_data;
1583
1584 /* Locate the main sequence */
1585 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1586 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1587 main_e = main_e >> sb->s_blocksize_bits;
1588 main_e += main_s;
1589
1590 /* Locate the reserve sequence */
1591 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1592 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1593 reserve_e = reserve_e >> sb->s_blocksize_bits;
1594 reserve_e += reserve_s;
1595
1596 /* Process the main & reserve sequences */
1597 /* responsible for finding the PartitionDesc(s) */
1598 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1599 return 1;
1600 return !udf_process_sequence(sb, reserve_s, reserve_e, fileset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
Jan Kara403460052009-03-19 16:21:38 +01001603/*
1604 * Check whether there is an anchor block in the given block and
1605 * load Volume Descriptor Sequence if so.
1606 */
1607static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1608 struct kernel_lb_addr *fileset)
1609{
1610 struct buffer_head *bh;
1611 uint16_t ident;
1612 int ret;
1613
1614 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1615 udf_fixed_to_variable(block) >=
1616 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1617 return 0;
1618
1619 bh = udf_read_tagged(sb, block, block, &ident);
1620 if (!bh)
1621 return 0;
1622 if (ident != TAG_IDENT_AVDP) {
1623 brelse(bh);
1624 return 0;
1625 }
1626 ret = udf_load_sequence(sb, bh, fileset);
1627 brelse(bh);
1628 return ret;
1629}
1630
1631/* Search for an anchor volume descriptor pointer */
1632static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1633 struct kernel_lb_addr *fileset)
1634{
1635 sector_t last[6];
1636 int i;
1637 struct udf_sb_info *sbi = UDF_SB(sb);
1638 int last_count = 0;
1639
1640 /* First try user provided anchor */
1641 if (sbi->s_anchor) {
1642 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1643 return lastblock;
1644 }
1645 /*
1646 * according to spec, anchor is in either:
1647 * block 256
1648 * lastblock-256
1649 * lastblock
1650 * however, if the disc isn't closed, it could be 512.
1651 */
1652 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1653 return lastblock;
1654 /*
1655 * The trouble is which block is the last one. Drives often misreport
1656 * this so we try various possibilities.
1657 */
1658 last[last_count++] = lastblock;
1659 if (lastblock >= 1)
1660 last[last_count++] = lastblock - 1;
1661 last[last_count++] = lastblock + 1;
1662 if (lastblock >= 2)
1663 last[last_count++] = lastblock - 2;
1664 if (lastblock >= 150)
1665 last[last_count++] = lastblock - 150;
1666 if (lastblock >= 152)
1667 last[last_count++] = lastblock - 152;
1668
1669 for (i = 0; i < last_count; i++) {
1670 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1671 sb->s_blocksize_bits)
1672 continue;
1673 if (udf_check_anchor_block(sb, last[i], fileset))
1674 return last[i];
1675 if (last[i] < 256)
1676 continue;
1677 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1678 return last[i];
1679 }
1680
1681 /* Finally try block 512 in case media is open */
1682 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1683 return last[0];
1684 return 0;
1685}
1686
1687/*
1688 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1689 * area specified by it. The function expects sbi->s_lastblock to be the last
1690 * block on the media.
1691 *
1692 * Return 1 if ok, 0 if not found.
1693 *
1694 */
1695static int udf_find_anchor(struct super_block *sb,
1696 struct kernel_lb_addr *fileset)
1697{
1698 sector_t lastblock;
1699 struct udf_sb_info *sbi = UDF_SB(sb);
1700
1701 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1702 if (lastblock)
1703 goto out;
1704
1705 /* No anchor found? Try VARCONV conversion of block numbers */
1706 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1707 /* Firstly, we try to not convert number of the last block */
1708 lastblock = udf_scan_anchors(sb,
1709 udf_variable_to_fixed(sbi->s_last_block),
1710 fileset);
1711 if (lastblock)
1712 goto out;
1713
1714 /* Secondly, we try with converted number of the last block */
1715 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1716 if (!lastblock) {
1717 /* VARCONV didn't help. Clear it. */
1718 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1719 return 0;
1720 }
1721out:
1722 sbi->s_last_block = lastblock;
1723 return 1;
1724}
1725
1726/*
1727 * Check Volume Structure Descriptor, find Anchor block and load Volume
1728 * Descriptor Sequence
1729 */
1730static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1731 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001732{
1733 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara403460052009-03-19 16:21:38 +01001734 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001735
1736 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1737 if (!silent)
1738 printk(KERN_WARNING "UDF-fs: Bad block size\n");
1739 return 0;
1740 }
1741 sbi->s_last_block = uopt->lastblock;
Jan Kara403460052009-03-19 16:21:38 +01001742 if (!uopt->novrs) {
1743 /* Check that it is NSR02 compliant */
1744 nsr_off = udf_check_vsd(sb);
1745 if (!nsr_off) {
1746 if (!silent)
1747 printk(KERN_WARNING "UDF-fs: No VRS found\n");
1748 return 0;
1749 }
1750 if (nsr_off == -1)
1751 udf_debug("Failed to read byte 32768. Assuming open "
1752 "disc. Skipping validity check\n");
1753 if (!sbi->s_last_block)
1754 sbi->s_last_block = udf_get_last_block(sb);
1755 } else {
1756 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001757 }
Jan Kara403460052009-03-19 16:21:38 +01001758
1759 /* Look for anchor block and load Volume Descriptor Sequence */
1760 sbi->s_anchor = uopt->anchor;
1761 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001762 if (!silent)
1763 printk(KERN_WARNING "UDF-fs: No anchor found\n");
1764 return 0;
1765 }
1766 return 1;
1767}
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769static void udf_open_lvid(struct super_block *sb)
1770{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001771 struct udf_sb_info *sbi = UDF_SB(sb);
1772 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001773 struct logicalVolIntegrityDesc *lvid;
1774 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001775
Marcin Slusarz165923f2008-02-10 11:33:08 +01001776 if (!bh)
1777 return;
Jan Kara949f4a72010-10-20 18:49:20 +02001778
1779 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001780 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1781 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Marcin Slusarz165923f2008-02-10 11:33:08 +01001783 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1784 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1785 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1786 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001787 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Marcin Slusarz165923f2008-02-10 11:33:08 +01001789 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001790 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001791 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001792
1793 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1794 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001795 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001796 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
1799static void udf_close_lvid(struct super_block *sb)
1800{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001801 struct udf_sb_info *sbi = UDF_SB(sb);
1802 struct buffer_head *bh = sbi->s_lvid_bh;
1803 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001804 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001805
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001806 if (!bh)
1807 return;
1808
Jan Kara949f4a72010-10-20 18:49:20 +02001809 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001810 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001811 lvidiu = udf_sb_lvidiu(sbi);
1812 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1813 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1814 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1815 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1816 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1817 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1818 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1819 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1820 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1821 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Marcin Slusarz165923f2008-02-10 11:33:08 +01001823 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001824 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001825 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001826
1827 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1828 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001829 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001830 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
Jan Karad664b6a2010-10-20 18:28:46 +02001833u64 lvid_get_unique_id(struct super_block *sb)
1834{
1835 struct buffer_head *bh;
1836 struct udf_sb_info *sbi = UDF_SB(sb);
1837 struct logicalVolIntegrityDesc *lvid;
1838 struct logicalVolHeaderDesc *lvhd;
1839 u64 uniqueID;
1840 u64 ret;
1841
1842 bh = sbi->s_lvid_bh;
1843 if (!bh)
1844 return 0;
1845
1846 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1847 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
1848
1849 mutex_lock(&sbi->s_alloc_mutex);
1850 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
1851 if (!(++uniqueID & 0xFFFFFFFF))
1852 uniqueID += 16;
1853 lvhd->uniqueID = cpu_to_le64(uniqueID);
1854 mutex_unlock(&sbi->s_alloc_mutex);
1855 mark_buffer_dirty(bh);
1856
1857 return ret;
1858}
1859
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001860static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1861{
1862 int i;
1863 int nr_groups = bitmap->s_nr_groups;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001864 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1865 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001866
1867 for (i = 0; i < nr_groups; i++)
1868 if (bitmap->s_block_bitmap[i])
1869 brelse(bitmap->s_block_bitmap[i]);
1870
1871 if (size <= PAGE_SIZE)
1872 kfree(bitmap);
1873 else
1874 vfree(bitmap);
1875}
1876
Jan Kara2e0838f2008-04-01 18:08:51 +02001877static void udf_free_partition(struct udf_part_map *map)
1878{
1879 int i;
Jan Karabfb257a2008-04-08 20:37:21 +02001880 struct udf_meta_data *mdata;
Jan Kara2e0838f2008-04-01 18:08:51 +02001881
1882 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1883 iput(map->s_uspace.s_table);
1884 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1885 iput(map->s_fspace.s_table);
1886 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1887 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1888 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1889 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1890 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1891 for (i = 0; i < 4; i++)
1892 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
Jan Karabfb257a2008-04-08 20:37:21 +02001893 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1894 mdata = &map->s_type_specific.s_metadata;
1895 iput(mdata->s_metadata_fe);
1896 mdata->s_metadata_fe = NULL;
1897
1898 iput(mdata->s_mirror_fe);
1899 mdata->s_mirror_fe = NULL;
1900
1901 iput(mdata->s_bitmap_fe);
1902 mdata->s_bitmap_fe = NULL;
1903 }
Jan Kara2e0838f2008-04-01 18:08:51 +02001904}
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906static int udf_fill_super(struct super_block *sb, void *options, int silent)
1907{
1908 int i;
Jan Kara403460052009-03-19 16:21:38 +01001909 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001910 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001912 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 struct udf_sb_info *sbi;
1914
Jan Blunckdb719222010-08-15 22:51:10 +02001915 lock_kernel();
1916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1918 uopt.uid = -1;
1919 uopt.gid = -1;
1920 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001921 uopt.fmode = UDF_INVALID_MODE;
1922 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001924 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Jan Blunckdb719222010-08-15 22:51:10 +02001925 if (!sbi) {
1926 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return -ENOMEM;
Jan Blunckdb719222010-08-15 22:51:10 +02001928 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001932 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Miklos Szeredi6da80892008-02-08 04:21:50 -08001934 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 goto error_out;
1936
1937 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001938 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 udf_error(sb, "udf_read_super",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001940 "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 goto error_out;
1942 }
1943#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001944 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 uopt.nls_map = load_nls_default();
1946 if (!uopt.nls_map)
1947 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1948 else
1949 udf_debug("Using default NLS map\n");
1950 }
1951#endif
1952 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1953 uopt.flags |= (1 << UDF_FLAG_UTF8);
1954
1955 fileset.logicalBlockNum = 0xFFFFFFFF;
1956 fileset.partitionReferenceNum = 0xFFFF;
1957
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001958 sbi->s_flags = uopt.flags;
1959 sbi->s_uid = uopt.uid;
1960 sbi->s_gid = uopt.gid;
1961 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001962 sbi->s_fmode = uopt.fmode;
1963 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001964 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02001965 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001967 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001968 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001970 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001972 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 /* Fill in the rest of the superblock */
1975 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001976 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 sb->s_dirt = 0;
1979 sb->s_magic = UDF_SUPER_MAGIC;
1980 sb->s_time_gran = 1000;
1981
Jan Kara403460052009-03-19 16:21:38 +01001982 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
1983 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1984 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04001985 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara403460052009-03-19 16:21:38 +01001986 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1987 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
1988 if (!silent)
1989 printk(KERN_NOTICE
1990 "UDF-fs: Rescanning with blocksize "
1991 "%d\n", UDF_DEFAULT_BLOCKSIZE);
1992 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
1993 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1994 }
1995 }
1996 if (!ret) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001997 printk(KERN_WARNING "UDF-fs: No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 goto error_out;
1999 }
2000
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002001 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002003 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002004 struct logicalVolIntegrityDescImpUse *lvidiu =
2005 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002006 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2007 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002008 /* uint16_t maxUDFWriteRev =
2009 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002011 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002012 printk(KERN_ERR "UDF-fs: minUDFReadRev=%x "
2013 "(max is %x)\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002014 le16_to_cpu(lvidiu->minUDFReadRev),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002015 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002017 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002020 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2023 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2024 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2025 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2026 }
2027
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002028 if (!sbi->s_partitions) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002029 printk(KERN_WARNING "UDF-fs: No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 goto error_out;
2031 }
2032
Marcin Slusarz4b111112008-02-08 04:20:36 -08002033 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2034 UDF_PART_FLAG_READ_ONLY) {
2035 printk(KERN_NOTICE "UDF-fs: Partition marked readonly; "
2036 "forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002037 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002038 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002039
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002040 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002041 printk(KERN_WARNING "UDF-fs: No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 goto error_out;
2043 }
2044
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002045 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002046 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002047 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Adrian Bunka9ca6632008-02-08 04:20:47 -08002048 udf_info("UDF: Mounting volume '%s', "
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002049 "timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarz56774802008-02-10 11:25:31 +01002050 sbi->s_volume_ident, le16_to_cpu(ts.year), ts.month, ts.day,
2051 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 }
2053 if (!(sb->s_flags & MS_RDONLY))
2054 udf_open_lvid(sb);
2055
2056 /* Assign the root inode */
2057 /* assign inodes by physical block number */
2058 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002059 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002060 if (!inode) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002061 printk(KERN_ERR "UDF-fs: Error in udf_iget, block=%d, "
2062 "partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002063 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 goto error_out;
2065 }
2066
2067 /* Allocate a dentry for the root inode */
2068 sb->s_root = d_alloc_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002069 if (!sb->s_root) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002070 printk(KERN_ERR "UDF-fs: Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 iput(inode);
2072 goto error_out;
2073 }
Jan Kara31170b62007-05-08 00:35:21 -07002074 sb->s_maxbytes = MAX_LFS_FILESIZE;
Jan Blunckdb719222010-08-15 22:51:10 +02002075 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 return 0;
2077
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002078error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002079 if (sbi->s_vat_inode)
2080 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002081 if (sbi->s_partitions)
2082 for (i = 0; i < sbi->s_partitions; i++)
2083 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084#ifdef CONFIG_UDF_NLS
2085 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002086 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087#endif
2088 if (!(sb->s_flags & MS_RDONLY))
2089 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002090 brelse(sbi->s_lvid_bh);
2091
2092 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 kfree(sbi);
2094 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002095
Jan Blunckdb719222010-08-15 22:51:10 +02002096 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 return -EINVAL;
2098}
2099
Adrian Bunkb8145a72008-02-17 10:19:55 +02002100static void udf_error(struct super_block *sb, const char *function,
2101 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 va_list args;
2104
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002105 if (!(sb->s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 /* mark sb error */
2107 sb->s_dirt = 1;
2108 }
2109 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002110 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 va_end(args);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002112 printk(KERN_CRIT "UDF-fs error (device %s): %s: %s\n",
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002113 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
2116void udf_warning(struct super_block *sb, const char *function,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002117 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
2119 va_list args;
2120
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002121 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002122 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 va_end(args);
2124 printk(KERN_WARNING "UDF-fs warning (device %s): %s: %s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002125 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126}
2127
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002128static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
2130 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002131 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002133 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002134
2135 lock_kernel();
2136
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002137 if (sbi->s_vat_inode)
2138 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002139 if (sbi->s_partitions)
2140 for (i = 0; i < sbi->s_partitions; i++)
2141 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142#ifdef CONFIG_UDF_NLS
2143 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002144 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145#endif
2146 if (!(sb->s_flags & MS_RDONLY))
2147 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002148 brelse(sbi->s_lvid_bh);
2149 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 kfree(sb->s_fs_info);
2151 sb->s_fs_info = NULL;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002152
2153 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154}
2155
Jan Kara146bca72009-03-16 18:27:37 +01002156static int udf_sync_fs(struct super_block *sb, int wait)
2157{
2158 struct udf_sb_info *sbi = UDF_SB(sb);
2159
2160 mutex_lock(&sbi->s_alloc_mutex);
2161 if (sbi->s_lvid_dirty) {
2162 /*
2163 * Blockdevice will be synced later so we don't have to submit
2164 * the buffer for IO
2165 */
2166 mark_buffer_dirty(sbi->s_lvid_bh);
2167 sb->s_dirt = 0;
2168 sbi->s_lvid_dirty = 0;
2169 }
2170 mutex_unlock(&sbi->s_alloc_mutex);
2171
2172 return 0;
2173}
2174
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002175static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176{
David Howells726c3342006-06-23 02:02:58 -07002177 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002178 struct udf_sb_info *sbi = UDF_SB(sb);
2179 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002180 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002181
2182 if (sbi->s_lvid_bh != NULL)
2183 lvidiu = udf_sb_lvidiu(sbi);
2184 else
2185 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 buf->f_type = UDF_SUPER_MAGIC;
2188 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002189 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 buf->f_bfree = udf_count_free(sb);
2191 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002192 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2193 le32_to_cpu(lvidiu->numDirs)) : 0)
2194 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002196 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002197 buf->f_fsid.val[0] = (u32)id;
2198 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200 return 0;
2201}
2202
Marcin Slusarz4b111112008-02-08 04:20:36 -08002203static unsigned int udf_count_free_bitmap(struct super_block *sb,
2204 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
2206 struct buffer_head *bh = NULL;
2207 unsigned int accum = 0;
2208 int index;
2209 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002210 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 uint8_t *ptr;
2213 uint16_t ident;
2214 struct spaceBitmapDesc *bm;
2215
2216 lock_kernel();
2217
2218 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002219 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002220 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002222 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 printk(KERN_ERR "udf: udf_count_free failed\n");
2224 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002225 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002226 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 printk(KERN_ERR "udf: udf_count_free failed\n");
2228 goto out;
2229 }
2230
2231 bm = (struct spaceBitmapDesc *)bh->b_data;
2232 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002233 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2234 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002236 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002237 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2238 accum += bitmap_weight((const unsigned long *)(ptr + index),
2239 cur_bytes * 8);
2240 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002241 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002242 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002243 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002245 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 udf_debug("read failed\n");
2247 goto out;
2248 }
2249 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002250 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 }
2252 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002253 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002255out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 unlock_kernel();
2257
2258 return accum;
2259}
2260
Marcin Slusarz4b111112008-02-08 04:20:36 -08002261static unsigned int udf_count_free_table(struct super_block *sb,
2262 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263{
2264 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002265 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002266 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002268 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 lock_kernel();
2271
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002272 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002273 epos.offset = sizeof(struct unallocSpaceEntry);
2274 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002276 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002278
Jan Kara3bf25cb2007-05-08 00:35:16 -07002279 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 unlock_kernel();
2282
2283 return accum;
2284}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002285
2286static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
2288 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002289 struct udf_sb_info *sbi;
2290 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002292 sbi = UDF_SB(sb);
2293 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002294 struct logicalVolIntegrityDesc *lvid =
2295 (struct logicalVolIntegrityDesc *)
2296 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002297 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002298 accum = le32_to_cpu(
2299 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 if (accum == 0xFFFFFFFF)
2301 accum = 0;
2302 }
2303 }
2304
2305 if (accum)
2306 return accum;
2307
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002308 map = &sbi->s_partmaps[sbi->s_partition];
2309 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002310 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002311 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002313 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002314 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002315 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 }
2317 if (accum)
2318 return accum;
2319
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002320 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002321 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002322 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002324 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002325 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002326 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328
2329 return accum;
2330}