blob: 36a467ca1622d5061bb044918598666553b69870 [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 *);
84static void udf_write_super(struct super_block *);
85static int udf_remount_fs(struct super_block *, int *, char *);
86static int udf_check_valid(struct super_block *, int, int);
87static int udf_vrs(struct super_block *sb, int silent);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020088static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static void udf_find_anchor(struct super_block *);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020090static int udf_find_fileset(struct super_block *, struct kernel_lb_addr *,
91 struct kernel_lb_addr *);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070092static void udf_load_fileset(struct super_block *, struct buffer_head *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020093 struct kernel_lb_addr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static void udf_open_lvid(struct super_block *);
95static void udf_close_lvid(struct super_block *);
96static unsigned int udf_count_free(struct super_block *);
David Howells726c3342006-06-23 02:02:58 -070097static int udf_statfs(struct dentry *, struct kstatfs *);
Miklos Szeredi6da80892008-02-08 04:21:50 -080098static int udf_show_options(struct seq_file *, struct vfsmount *);
Adrian Bunkb8145a72008-02-17 10:19:55 +020099static void udf_error(struct super_block *sb, const char *function,
100 const char *fmt, ...);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800102struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
103{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800104 struct logicalVolIntegrityDesc *lvid =
105 (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800106 __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800107 __u32 offset = number_of_partitions * 2 *
108 sizeof(uint32_t)/sizeof(uint8_t);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800109 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* UDF filesystem type */
David Howells454e2392006-06-23 02:02:57 -0700113static int udf_get_sb(struct file_system_type *fs_type,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700114 int flags, const char *dev_name, void *data,
115 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
David Howells454e2392006-06-23 02:02:57 -0700117 return get_sb_bdev(fs_type, flags, dev_name, data, udf_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
120static struct file_system_type udf_fstype = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700121 .owner = THIS_MODULE,
122 .name = "udf",
123 .get_sb = udf_get_sb,
124 .kill_sb = kill_block_super,
125 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700128static struct kmem_cache *udf_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130static struct inode *udf_alloc_inode(struct super_block *sb)
131{
132 struct udf_inode_info *ei;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800133 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (!ei)
135 return NULL;
Dan Bastone95f87972006-08-13 23:24:18 -0700136
137 ei->i_unique = 0;
138 ei->i_lenExtents = 0;
139 ei->i_next_alloc_block = 0;
140 ei->i_next_alloc_goal = 0;
141 ei->i_strat4096 = 0;
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return &ei->vfs_inode;
144}
145
146static void udf_destroy_inode(struct inode *inode)
147{
148 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
149}
150
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700151static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700153 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Christoph Lametera35afb82007-05-16 22:10:57 -0700155 ei->i_ext.i_data = NULL;
156 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159static int init_inodecache(void)
160{
161 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
162 sizeof(struct udf_inode_info),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700163 0, (SLAB_RECLAIM_ACCOUNT |
164 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900165 init_once);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700166 if (!udf_inode_cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return -ENOMEM;
168 return 0;
169}
170
171static void destroy_inodecache(void)
172{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700173 kmem_cache_destroy(udf_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176/* Superblock operations */
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800177static const struct super_operations udf_sb_ops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700178 .alloc_inode = udf_alloc_inode,
179 .destroy_inode = udf_destroy_inode,
180 .write_inode = udf_write_inode,
181 .delete_inode = udf_delete_inode,
182 .clear_inode = udf_clear_inode,
183 .put_super = udf_put_super,
184 .write_super = udf_write_super,
185 .statfs = udf_statfs,
186 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800187 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700190struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 unsigned char novrs;
192 unsigned int blocksize;
193 unsigned int session;
194 unsigned int lastblock;
195 unsigned int anchor;
196 unsigned int volume;
197 unsigned short partition;
198 unsigned int fileset;
199 unsigned int rootdir;
200 unsigned int flags;
201 mode_t umask;
202 gid_t gid;
203 uid_t uid;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100204 mode_t fmode;
205 mode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct nls_table *nls_map;
207};
208
209static int __init init_udf_fs(void)
210{
211 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 err = init_inodecache();
214 if (err)
215 goto out1;
216 err = register_filesystem(&udf_fstype);
217 if (err)
218 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700221
222out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700224
225out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return err;
227}
228
229static void __exit exit_udf_fs(void)
230{
231 unregister_filesystem(&udf_fstype);
232 destroy_inodecache();
233}
234
235module_init(init_udf_fs)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700236module_exit(exit_udf_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800238static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
239{
240 struct udf_sb_info *sbi = UDF_SB(sb);
241
242 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
243 GFP_KERNEL);
244 if (!sbi->s_partmaps) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700245 udf_error(sb, __func__,
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800246 "Unable to allocate space for %d partition maps",
247 count);
248 sbi->s_partitions = 0;
249 return -ENOMEM;
250 }
251
252 sbi->s_partitions = count;
253 return 0;
254}
255
Miklos Szeredi6da80892008-02-08 04:21:50 -0800256static int udf_show_options(struct seq_file *seq, struct vfsmount *mnt)
257{
258 struct super_block *sb = mnt->mnt_sb;
259 struct udf_sb_info *sbi = UDF_SB(sb);
260
261 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
262 seq_puts(seq, ",nostrict");
263 if (sb->s_blocksize != UDF_DEFAULT_BLOCKSIZE)
264 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
265 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
266 seq_puts(seq, ",unhide");
267 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
268 seq_puts(seq, ",undelete");
269 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
270 seq_puts(seq, ",noadinicb");
271 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
272 seq_puts(seq, ",shortad");
273 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
274 seq_puts(seq, ",uid=forget");
275 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
276 seq_puts(seq, ",uid=ignore");
277 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
278 seq_puts(seq, ",gid=forget");
279 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
280 seq_puts(seq, ",gid=ignore");
281 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
282 seq_printf(seq, ",uid=%u", sbi->s_uid);
283 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
284 seq_printf(seq, ",gid=%u", sbi->s_gid);
285 if (sbi->s_umask != 0)
286 seq_printf(seq, ",umask=%o", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100287 if (sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100288 seq_printf(seq, ",mode=%o", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100289 if (sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100290 seq_printf(seq, ",dmode=%o", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800291 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
292 seq_printf(seq, ",session=%u", sbi->s_session);
293 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
294 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
295 /*
296 * s_anchor[2] could be zeroed out in case there is no anchor
297 * in the specified block, but then the "anchor=N" option
298 * originally given by the user wasn't effective, so it's OK
299 * if we don't show it.
300 */
301 if (sbi->s_anchor[2] != 0)
302 seq_printf(seq, ",anchor=%u", sbi->s_anchor[2]);
303 /*
304 * volume, partition, fileset and rootdir seem to be ignored
305 * currently
306 */
307 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
308 seq_puts(seq, ",utf8");
309 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
310 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
311
312 return 0;
313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/*
316 * udf_parse_options
317 *
318 * PURPOSE
319 * Parse mount options.
320 *
321 * DESCRIPTION
322 * The following mount options are supported:
323 *
324 * gid= Set the default group.
325 * umask= Set the default umask.
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100326 * mode= Set the default file permissions.
327 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 * uid= Set the default user.
329 * bs= Set the block size.
330 * unhide Show otherwise hidden files.
331 * undelete Show deleted files in lists.
332 * adinicb Embed data in the inode (default)
333 * noadinicb Don't embed data in the inode
334 * shortad Use short ad's
335 * longad Use long ad's (default)
336 * nostrict Unset strict conformance
337 * iocharset= Set the NLS character set
338 *
339 * The remaining are for debugging and disaster recovery:
340 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700341 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 *
343 * The following expect a offset from 0.
344 *
345 * session= Set the CDROM session (default= last session)
346 * anchor= Override standard anchor location. (default= 256)
347 * volume= Override the VolumeDesc location. (unused)
348 * partition= Override the PartitionDesc location. (unused)
349 * lastblock= Set the last block of the filesystem/
350 *
351 * The following expect a offset from the partition root.
352 *
353 * fileset= Override the fileset block location. (unused)
354 * rootdir= Override the root directory location. (unused)
355 * WARNING: overriding the rootdir to a non-directory may
356 * yield highly unpredictable results.
357 *
358 * PRE-CONDITIONS
359 * options Pointer to mount options string.
360 * uopts Pointer to mount options variable.
361 *
362 * POST-CONDITIONS
363 * <return> 1 Mount options parsed okay.
364 * <return> 0 Error parsing mount options.
365 *
366 * HISTORY
367 * July 1, 1997 - Andrew E. Mileski
368 * Written, tested, and released.
369 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371enum {
372 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
373 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
374 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
375 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
376 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100377 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
378 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379};
380
Steven Whitehousea447c092008-10-13 10:46:57 +0100381static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700382 {Opt_novrs, "novrs"},
383 {Opt_nostrict, "nostrict"},
384 {Opt_bs, "bs=%u"},
385 {Opt_unhide, "unhide"},
386 {Opt_undelete, "undelete"},
387 {Opt_noadinicb, "noadinicb"},
388 {Opt_adinicb, "adinicb"},
389 {Opt_shortad, "shortad"},
390 {Opt_longad, "longad"},
391 {Opt_uforget, "uid=forget"},
392 {Opt_uignore, "uid=ignore"},
393 {Opt_gforget, "gid=forget"},
394 {Opt_gignore, "gid=ignore"},
395 {Opt_gid, "gid=%u"},
396 {Opt_uid, "uid=%u"},
397 {Opt_umask, "umask=%o"},
398 {Opt_session, "session=%u"},
399 {Opt_lastblock, "lastblock=%u"},
400 {Opt_anchor, "anchor=%u"},
401 {Opt_volume, "volume=%u"},
402 {Opt_partition, "partition=%u"},
403 {Opt_fileset, "fileset=%u"},
404 {Opt_rootdir, "rootdir=%u"},
405 {Opt_utf8, "utf8"},
406 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100407 {Opt_fmode, "mode=%o"},
408 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700409 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410};
411
Miklos Szeredi6da80892008-02-08 04:21:50 -0800412static int udf_parse_options(char *options, struct udf_options *uopt,
413 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 char *p;
416 int option;
417
418 uopt->novrs = 0;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800419 uopt->blocksize = UDF_DEFAULT_BLOCKSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 uopt->partition = 0xFFFF;
421 uopt->session = 0xFFFFFFFF;
422 uopt->lastblock = 0;
423 uopt->anchor = 0;
424 uopt->volume = 0xFFFFFFFF;
425 uopt->rootdir = 0xFFFFFFFF;
426 uopt->fileset = 0xFFFFFFFF;
427 uopt->nls_map = NULL;
428
429 if (!options)
430 return 1;
431
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700432 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 substring_t args[MAX_OPT_ARGS];
434 int token;
435 if (!*p)
436 continue;
437
438 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700439 switch (token) {
440 case Opt_novrs:
441 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100442 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700443 case Opt_bs:
444 if (match_int(&args[0], &option))
445 return 0;
446 uopt->blocksize = option;
447 break;
448 case Opt_unhide:
449 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
450 break;
451 case Opt_undelete:
452 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
453 break;
454 case Opt_noadinicb:
455 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
456 break;
457 case Opt_adinicb:
458 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
459 break;
460 case Opt_shortad:
461 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
462 break;
463 case Opt_longad:
464 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
465 break;
466 case Opt_gid:
467 if (match_int(args, &option))
468 return 0;
469 uopt->gid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700470 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700471 break;
472 case Opt_uid:
473 if (match_int(args, &option))
474 return 0;
475 uopt->uid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700476 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700477 break;
478 case Opt_umask:
479 if (match_octal(args, &option))
480 return 0;
481 uopt->umask = option;
482 break;
483 case Opt_nostrict:
484 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
485 break;
486 case Opt_session:
487 if (match_int(args, &option))
488 return 0;
489 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800490 if (!remount)
491 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700492 break;
493 case Opt_lastblock:
494 if (match_int(args, &option))
495 return 0;
496 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800497 if (!remount)
498 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700499 break;
500 case Opt_anchor:
501 if (match_int(args, &option))
502 return 0;
503 uopt->anchor = option;
504 break;
505 case Opt_volume:
506 if (match_int(args, &option))
507 return 0;
508 uopt->volume = option;
509 break;
510 case Opt_partition:
511 if (match_int(args, &option))
512 return 0;
513 uopt->partition = option;
514 break;
515 case Opt_fileset:
516 if (match_int(args, &option))
517 return 0;
518 uopt->fileset = option;
519 break;
520 case Opt_rootdir:
521 if (match_int(args, &option))
522 return 0;
523 uopt->rootdir = option;
524 break;
525 case Opt_utf8:
526 uopt->flags |= (1 << UDF_FLAG_UTF8);
527 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700529 case Opt_iocharset:
530 uopt->nls_map = load_nls(args[0].from);
531 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
532 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700534 case Opt_uignore:
535 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
536 break;
537 case Opt_uforget:
538 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
539 break;
540 case Opt_gignore:
541 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
542 break;
543 case Opt_gforget:
544 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
545 break;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100546 case Opt_fmode:
547 if (match_octal(args, &option))
548 return 0;
549 uopt->fmode = option & 0777;
550 break;
551 case Opt_dmode:
552 if (match_octal(args, &option))
553 return 0;
554 uopt->dmode = option & 0777;
555 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700556 default:
557 printk(KERN_ERR "udf: bad mount option \"%s\" "
558 "or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return 0;
560 }
561 }
562 return 1;
563}
564
Marcin Slusarzbd45a422008-02-08 04:20:35 -0800565static void udf_write_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 lock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (!(sb->s_flags & MS_RDONLY))
570 udf_open_lvid(sb);
571 sb->s_dirt = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 unlock_kernel();
574}
575
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700576static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800579 struct udf_sb_info *sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800581 uopt.flags = sbi->s_flags;
582 uopt.uid = sbi->s_uid;
583 uopt.gid = sbi->s_gid;
584 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100585 uopt.fmode = sbi->s_fmode;
586 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Miklos Szeredi6da80892008-02-08 04:21:50 -0800588 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return -EINVAL;
590
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800591 sbi->s_flags = uopt.flags;
592 sbi->s_uid = uopt.uid;
593 sbi->s_gid = uopt.gid;
594 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100595 sbi->s_fmode = uopt.fmode;
596 sbi->s_dmode = uopt.dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800598 if (sbi->s_lvid_bh) {
599 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (write_rev > UDF_MAX_WRITE_VERSION)
601 *flags |= MS_RDONLY;
602 }
603
604 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
605 return 0;
606 if (*flags & MS_RDONLY)
607 udf_close_lvid(sb);
608 else
609 udf_open_lvid(sb);
610
611 return 0;
612}
613
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700614static int udf_vrs(struct super_block *sb, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200617 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 int sectorsize;
619 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700620 int iso9660 = 0;
621 int nsr02 = 0;
622 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800623 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 /* Block size must be a multiple of 512 */
626 if (sb->s_blocksize & 511)
627 return 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800628 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 if (sb->s_blocksize < sizeof(struct volStructDesc))
631 sectorsize = sizeof(struct volStructDesc);
632 else
633 sectorsize = sb->s_blocksize;
634
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800635 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200638 (unsigned int)(sector >> sb->s_blocksize_bits),
639 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700641 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* Read a block */
643 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
644 if (!bh)
645 break;
646
647 /* Look for ISO descriptors */
648 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800649 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700651 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700652 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800654 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
655 VSD_STD_ID_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 iso9660 = sector;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700657 switch (vsd->structType) {
658 case 0:
659 udf_debug("ISO9660 Boot Record found\n");
660 break;
661 case 1:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800662 udf_debug("ISO9660 Primary Volume Descriptor "
663 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700664 break;
665 case 2:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800666 udf_debug("ISO9660 Supplementary Volume "
667 "Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700668 break;
669 case 3:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800670 udf_debug("ISO9660 Volume Partition Descriptor "
671 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700672 break;
673 case 255:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800674 udf_debug("ISO9660 Volume Descriptor Set "
675 "Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700676 break;
677 default:
678 udf_debug("ISO9660 VRS (%u) found\n",
679 vsd->structType);
680 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800682 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
683 VSD_STD_ID_LEN))
684 ; /* nothing */
685 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
686 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700687 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800689 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
690 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800692 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
693 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700695 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697
698 if (nsr03)
699 return nsr03;
700 else if (nsr02)
701 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800702 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return -1;
704 else
705 return 0;
706}
707
708/*
Jan Kara423cf6d2008-04-07 15:59:23 +0200709 * Check whether there is an anchor block in the given block
710 */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200711static int udf_check_anchor_block(struct super_block *sb, sector_t block)
Jan Kara423cf6d2008-04-07 15:59:23 +0200712{
Tomas Janouseke8183c22008-06-23 15:12:35 +0200713 struct buffer_head *bh;
Jan Kara423cf6d2008-04-07 15:59:23 +0200714 uint16_t ident;
Jan Kara423cf6d2008-04-07 15:59:23 +0200715
Tomas Janouseke8183c22008-06-23 15:12:35 +0200716 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
717 udf_fixed_to_variable(block) >=
718 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
719 return 0;
Jan Kara423cf6d2008-04-07 15:59:23 +0200720
Tomas Janouseke8183c22008-06-23 15:12:35 +0200721 bh = udf_read_tagged(sb, block, block, &ident);
Jan Kara423cf6d2008-04-07 15:59:23 +0200722 if (!bh)
723 return 0;
Jan Kara423cf6d2008-04-07 15:59:23 +0200724 brelse(bh);
Tomas Janouseke8183c22008-06-23 15:12:35 +0200725
726 return ident == TAG_IDENT_AVDP;
Jan Kara423cf6d2008-04-07 15:59:23 +0200727}
728
729/* Search for an anchor volume descriptor pointer */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200730static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock)
Jan Kara423cf6d2008-04-07 15:59:23 +0200731{
Jan Kara5fb28aa2008-04-07 16:15:04 +0200732 sector_t last[6];
Jan Kara423cf6d2008-04-07 15:59:23 +0200733 int i;
734 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Karaf90981f2008-12-03 17:31:39 +0100735 int last_count = 0;
Jan Kara423cf6d2008-04-07 15:59:23 +0200736
Jan Karaf90981f2008-12-03 17:31:39 +0100737 last[last_count++] = lastblock;
738 if (lastblock >= 1)
739 last[last_count++] = lastblock - 1;
740 last[last_count++] = lastblock + 1;
741 if (lastblock >= 2)
742 last[last_count++] = lastblock - 2;
743 if (lastblock >= 150)
744 last[last_count++] = lastblock - 150;
745 if (lastblock >= 152)
746 last[last_count++] = lastblock - 152;
Jan Kara423cf6d2008-04-07 15:59:23 +0200747
748 /* according to spec, anchor is in either:
749 * block 256
750 * lastblock-256
751 * lastblock
752 * however, if the disc isn't closed, it could be 512 */
753
Jan Karaf90981f2008-12-03 17:31:39 +0100754 for (i = 0; i < last_count; i++) {
Jan Kara5fb28aa2008-04-07 16:15:04 +0200755 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
756 sb->s_blocksize_bits)
757 continue;
Jan Kara423cf6d2008-04-07 15:59:23 +0200758
Tomas Janouseke8183c22008-06-23 15:12:35 +0200759 if (udf_check_anchor_block(sb, last[i])) {
Jan Kara423cf6d2008-04-07 15:59:23 +0200760 sbi->s_anchor[0] = last[i];
761 sbi->s_anchor[1] = last[i] - 256;
762 return last[i];
763 }
764
765 if (last[i] < 256)
766 continue;
767
Tomas Janouseke8183c22008-06-23 15:12:35 +0200768 if (udf_check_anchor_block(sb, last[i] - 256)) {
Jan Kara423cf6d2008-04-07 15:59:23 +0200769 sbi->s_anchor[1] = last[i] - 256;
770 return last[i];
771 }
772 }
773
Tomas Janouseke8183c22008-06-23 15:12:35 +0200774 if (udf_check_anchor_block(sb, sbi->s_session + 256)) {
Jan Kara423cf6d2008-04-07 15:59:23 +0200775 sbi->s_anchor[0] = sbi->s_session + 256;
776 return last[0];
777 }
Tomas Janouseke8183c22008-06-23 15:12:35 +0200778 if (udf_check_anchor_block(sb, sbi->s_session + 512)) {
Jan Kara423cf6d2008-04-07 15:59:23 +0200779 sbi->s_anchor[0] = sbi->s_session + 512;
780 return last[0];
781 }
782 return 0;
783}
784
785/*
786 * Find an anchor volume descriptor. The function expects sbi->s_lastblock to
787 * be the last block on the media.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 *
Jan Kara423cf6d2008-04-07 15:59:23 +0200789 * Return 1 if not found, 0 if ok
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700792static void udf_find_anchor(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Jan Kara423cf6d2008-04-07 15:59:23 +0200794 sector_t lastblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 struct buffer_head *bh = NULL;
796 uint16_t ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 int i;
Jan Kara423cf6d2008-04-07 15:59:23 +0200798 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800799
Tomas Janouseke8183c22008-06-23 15:12:35 +0200800 lastblock = udf_scan_anchors(sb, sbi->s_last_block);
Jan Kara423cf6d2008-04-07 15:59:23 +0200801 if (lastblock)
802 goto check_anchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Jan Kara423cf6d2008-04-07 15:59:23 +0200804 /* No anchor found? Try VARCONV conversion of block numbers */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200805 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
Jan Kara423cf6d2008-04-07 15:59:23 +0200806 /* Firstly, we try to not convert number of the last block */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200807 lastblock = udf_scan_anchors(sb,
Jan Kara423cf6d2008-04-07 15:59:23 +0200808 udf_variable_to_fixed(sbi->s_last_block));
Tomas Janouseke8183c22008-06-23 15:12:35 +0200809 if (lastblock)
Jan Kara423cf6d2008-04-07 15:59:23 +0200810 goto check_anchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Jan Kara423cf6d2008-04-07 15:59:23 +0200812 /* Secondly, we try with converted number of the last block */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200813 lastblock = udf_scan_anchors(sb, sbi->s_last_block);
814 if (!lastblock) {
815 /* VARCONV didn't help. Clear it. */
816 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Jan Kara423cf6d2008-04-07 15:59:23 +0200819check_anchor:
820 /*
821 * Check located anchors and the anchor block supplied via
822 * mount options
823 */
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800824 for (i = 0; i < ARRAY_SIZE(sbi->s_anchor); i++) {
Marcin Slusarz165923f2008-02-10 11:33:08 +0100825 if (!sbi->s_anchor[i])
826 continue;
827 bh = udf_read_tagged(sb, sbi->s_anchor[i],
828 sbi->s_anchor[i], &ident);
829 if (!bh)
830 sbi->s_anchor[i] = 0;
831 else {
832 brelse(bh);
Jan Kara423cf6d2008-04-07 15:59:23 +0200833 if (ident != TAG_IDENT_AVDP)
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800834 sbi->s_anchor[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836 }
837
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800838 sbi->s_last_block = lastblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800841static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200842 struct kernel_lb_addr *fileset,
843 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
845 struct buffer_head *bh = NULL;
846 long lastblock;
847 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800848 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700851 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200852 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700854 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700856 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700857 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return 1;
859 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800863 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800864 if (!bh) {
865 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200866 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700868/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700870
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800871 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700872 (newfileset.partitionReferenceNum != 0xFFFF &&
873 fileset->logicalBlockNum == 0xFFFFFFFF &&
874 fileset->partitionReferenceNum == 0xFFFF);
875 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800876 lastblock = sbi->s_partmaps
877 [newfileset.partitionReferenceNum]
878 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 newfileset.logicalBlockNum = 0;
880
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700881 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200882 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800883 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700884 if (!bh) {
885 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 continue;
887 }
888
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700889 switch (ident) {
890 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700891 {
892 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800893 sp = (struct spaceBitmapDesc *)
894 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700895 newfileset.logicalBlockNum += 1 +
896 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800897 sizeof(struct spaceBitmapDesc)
898 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700899 brelse(bh);
900 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700902 case TAG_IDENT_FSD:
903 *fileset = newfileset;
904 break;
905 default:
906 newfileset.logicalBlockNum++;
907 brelse(bh);
908 bh = NULL;
909 break;
910 }
911 } while (newfileset.logicalBlockNum < lastblock &&
912 fileset->logicalBlockNum == 0xFFFFFFFF &&
913 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915 }
916
917 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700918 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700920 fileset->logicalBlockNum,
921 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800923 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700925 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return 0;
927 }
928 return 1;
929}
930
Jan Karac0eb31e2008-04-01 16:50:35 +0200931static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
933 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100934 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200935 struct buffer_head *bh;
936 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100937 int ret = 1;
938
939 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
940 if (!instr)
941 return 1;
942
943 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
944 if (!outstr)
945 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200946
947 bh = udf_read_tagged(sb, block, block, &ident);
948 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100949 goto out2;
950
Jan Karac0eb31e2008-04-01 16:50:35 +0200951 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 pvoldesc = (struct primaryVolDesc *)bh->b_data;
954
Marcin Slusarz56774802008-02-10 11:25:31 +0100955 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
956 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100957#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200958 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +0100959 udf_debug("recording time %04u/%02u/%02u"
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800960 " %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100961 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
962 ts->minute, le16_to_cpu(ts->typeAndTimezone));
963#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100966 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
967 if (udf_CS0toUTF8(outstr, instr)) {
968 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
969 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800970 udf_debug("volIdent[] = '%s'\n",
971 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100974 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
975 if (udf_CS0toUTF8(outstr, instr))
976 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200977
978 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100979 ret = 0;
980out2:
981 kfree(outstr);
982out1:
983 kfree(instr);
984 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Jan Karabfb257a2008-04-08 20:37:21 +0200987static int udf_load_metadata_files(struct super_block *sb, int partition)
988{
989 struct udf_sb_info *sbi = UDF_SB(sb);
990 struct udf_part_map *map;
991 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200992 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200993 int fe_error = 0;
994
995 map = &sbi->s_partmaps[partition];
996 mdata = &map->s_type_specific.s_metadata;
997
998 /* metadata address */
999 addr.logicalBlockNum = mdata->s_meta_file_loc;
1000 addr.partitionReferenceNum = map->s_partition_num;
1001
1002 udf_debug("Metadata file location: block = %d part = %d\n",
1003 addr.logicalBlockNum, addr.partitionReferenceNum);
1004
Pekka Enberg97e961f2008-10-15 12:29:03 +02001005 mdata->s_metadata_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +02001006
1007 if (mdata->s_metadata_fe == NULL) {
1008 udf_warning(sb, __func__, "metadata inode efe not found, "
1009 "will try mirror inode.");
1010 fe_error = 1;
1011 } else if (UDF_I(mdata->s_metadata_fe)->i_alloc_type !=
1012 ICBTAG_FLAG_AD_SHORT) {
1013 udf_warning(sb, __func__, "metadata inode efe does not have "
1014 "short allocation descriptors!");
1015 fe_error = 1;
1016 iput(mdata->s_metadata_fe);
1017 mdata->s_metadata_fe = NULL;
1018 }
1019
1020 /* mirror file entry */
1021 addr.logicalBlockNum = mdata->s_mirror_file_loc;
1022 addr.partitionReferenceNum = map->s_partition_num;
1023
1024 udf_debug("Mirror metadata file location: block = %d part = %d\n",
1025 addr.logicalBlockNum, addr.partitionReferenceNum);
1026
Pekka Enberg97e961f2008-10-15 12:29:03 +02001027 mdata->s_mirror_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +02001028
1029 if (mdata->s_mirror_fe == NULL) {
1030 if (fe_error) {
1031 udf_error(sb, __func__, "mirror inode efe not found "
1032 "and metadata inode is missing too, exiting...");
1033 goto error_exit;
1034 } else
1035 udf_warning(sb, __func__, "mirror inode efe not found,"
1036 " but metadata inode is OK");
1037 } else if (UDF_I(mdata->s_mirror_fe)->i_alloc_type !=
1038 ICBTAG_FLAG_AD_SHORT) {
1039 udf_warning(sb, __func__, "mirror inode efe does not have "
1040 "short allocation descriptors!");
1041 iput(mdata->s_mirror_fe);
1042 mdata->s_mirror_fe = NULL;
1043 if (fe_error)
1044 goto error_exit;
1045 }
1046
1047 /*
1048 * bitmap file entry
1049 * Note:
1050 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
1051 */
1052 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
1053 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
1054 addr.partitionReferenceNum = map->s_partition_num;
1055
1056 udf_debug("Bitmap file location: block = %d part = %d\n",
1057 addr.logicalBlockNum, addr.partitionReferenceNum);
1058
Pekka Enberg97e961f2008-10-15 12:29:03 +02001059 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +02001060
1061 if (mdata->s_bitmap_fe == NULL) {
1062 if (sb->s_flags & MS_RDONLY)
1063 udf_warning(sb, __func__, "bitmap inode efe "
1064 "not found but it's ok since the disc"
1065 " is mounted read-only");
1066 else {
1067 udf_error(sb, __func__, "bitmap inode efe not "
1068 "found and attempted read-write mount");
1069 goto error_exit;
1070 }
1071 }
1072 }
1073
1074 udf_debug("udf_load_metadata_files Ok\n");
1075
1076 return 0;
1077
1078error_exit:
1079 return 1;
1080}
1081
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001082static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001083 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
1085 struct fileSetDesc *fset;
1086
1087 fset = (struct fileSetDesc *)bh->b_data;
1088
1089 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
1090
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001091 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001093 udf_debug("Rootdir at block=%d, partition=%d\n",
1094 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
1096
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001097int udf_compute_nr_groups(struct super_block *sb, u32 partition)
1098{
1099 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +01001100 return DIV_ROUND_UP(map->s_partition_len +
1101 (sizeof(struct spaceBitmapDesc) << 3),
1102 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001103}
1104
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001105static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
1106{
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001107 struct udf_bitmap *bitmap;
1108 int nr_groups;
1109 int size;
1110
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001111 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001112 size = sizeof(struct udf_bitmap) +
1113 (sizeof(struct buffer_head *) * nr_groups);
1114
1115 if (size <= PAGE_SIZE)
1116 bitmap = kmalloc(size, GFP_KERNEL);
1117 else
1118 bitmap = vmalloc(size); /* TODO: get rid of vmalloc */
1119
1120 if (bitmap == NULL) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -07001121 udf_error(sb, __func__,
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001122 "Unable to allocate space for bitmap "
1123 "and %d buffer_head pointers", nr_groups);
1124 return NULL;
1125 }
1126
1127 memset(bitmap, 0x00, size);
1128 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
1129 bitmap->s_nr_groups = nr_groups;
1130 return bitmap;
1131}
1132
Jan Kara3fb38df2008-04-02 12:26:36 +02001133static int udf_fill_partdesc_info(struct super_block *sb,
1134 struct partitionDesc *p, int p_index)
1135{
1136 struct udf_part_map *map;
1137 struct udf_sb_info *sbi = UDF_SB(sb);
1138 struct partitionHeaderDesc *phd;
1139
1140 map = &sbi->s_partmaps[p_index];
1141
1142 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
1143 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
1144
1145 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
1146 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
1147 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
1148 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
1149 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
1150 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
1151 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
1152 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1153
Sebastian Manciulea706047a2008-04-14 17:13:01 +02001154 udf_debug("Partition (%d type %x) starts at physical %d, "
1155 "block length %d\n", p_index,
Jan Kara3fb38df2008-04-02 12:26:36 +02001156 map->s_partition_type, map->s_partition_root,
1157 map->s_partition_len);
1158
1159 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1160 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1161 return 0;
1162
1163 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1164 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001165 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001166 .logicalBlockNum = le32_to_cpu(
1167 phd->unallocSpaceTable.extPosition),
1168 .partitionReferenceNum = p_index,
1169 };
1170
Pekka Enberg97e961f2008-10-15 12:29:03 +02001171 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001172 if (!map->s_uspace.s_table) {
1173 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1174 p_index);
1175 return 1;
1176 }
1177 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1178 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1179 p_index, map->s_uspace.s_table->i_ino);
1180 }
1181
1182 if (phd->unallocSpaceBitmap.extLength) {
1183 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1184 if (!bitmap)
1185 return 1;
1186 map->s_uspace.s_bitmap = bitmap;
1187 bitmap->s_extLength = le32_to_cpu(
1188 phd->unallocSpaceBitmap.extLength);
1189 bitmap->s_extPosition = le32_to_cpu(
1190 phd->unallocSpaceBitmap.extPosition);
1191 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
1192 udf_debug("unallocSpaceBitmap (part %d) @ %d\n", p_index,
1193 bitmap->s_extPosition);
1194 }
1195
1196 if (phd->partitionIntegrityTable.extLength)
1197 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1198
1199 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001200 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001201 .logicalBlockNum = le32_to_cpu(
1202 phd->freedSpaceTable.extPosition),
1203 .partitionReferenceNum = p_index,
1204 };
1205
Pekka Enberg97e961f2008-10-15 12:29:03 +02001206 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001207 if (!map->s_fspace.s_table) {
1208 udf_debug("cannot load freedSpaceTable (part %d)\n",
1209 p_index);
1210 return 1;
1211 }
1212
1213 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1214 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1215 p_index, map->s_fspace.s_table->i_ino);
1216 }
1217
1218 if (phd->freedSpaceBitmap.extLength) {
1219 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1220 if (!bitmap)
1221 return 1;
1222 map->s_fspace.s_bitmap = bitmap;
1223 bitmap->s_extLength = le32_to_cpu(
1224 phd->freedSpaceBitmap.extLength);
1225 bitmap->s_extPosition = le32_to_cpu(
1226 phd->freedSpaceBitmap.extPosition);
1227 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
1228 udf_debug("freedSpaceBitmap (part %d) @ %d\n", p_index,
1229 bitmap->s_extPosition);
1230 }
1231 return 0;
1232}
1233
Jan Kara38b74a52008-04-02 16:01:35 +02001234static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1235{
1236 struct udf_sb_info *sbi = UDF_SB(sb);
1237 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001238 struct kernel_lb_addr ino;
Jan Karafa5e0812008-04-08 02:08:53 +02001239 struct buffer_head *bh = NULL;
1240 struct udf_inode_info *vati;
1241 uint32_t pos;
1242 struct virtualAllocationTable20 *vat20;
Jan Kara38b74a52008-04-02 16:01:35 +02001243
1244 /* VAT file entry is in the last recorded block */
1245 ino.partitionReferenceNum = type1_index;
1246 ino.logicalBlockNum = sbi->s_last_block - map->s_partition_root;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001247 sbi->s_vat_inode = udf_iget(sb, &ino);
Jan Kara38b74a52008-04-02 16:01:35 +02001248 if (!sbi->s_vat_inode)
1249 return 1;
1250
1251 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001252 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001253 map->s_type_specific.s_virtual.s_num_entries =
1254 (sbi->s_vat_inode->i_size - 36) >> 2;
1255 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001256 vati = UDF_I(sbi->s_vat_inode);
1257 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1258 pos = udf_block_map(sbi->s_vat_inode, 0);
1259 bh = sb_bread(sb, pos);
1260 if (!bh)
1261 return 1;
1262 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1263 } else {
1264 vat20 = (struct virtualAllocationTable20 *)
1265 vati->i_ext.i_data;
1266 }
Jan Kara38b74a52008-04-02 16:01:35 +02001267
Jan Kara38b74a52008-04-02 16:01:35 +02001268 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001269 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001270 map->s_type_specific.s_virtual.s_num_entries =
1271 (sbi->s_vat_inode->i_size -
1272 map->s_type_specific.s_virtual.
1273 s_start_offset) >> 2;
1274 brelse(bh);
1275 }
1276 return 0;
1277}
1278
Jan Karac0eb31e2008-04-01 16:50:35 +02001279static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Jan Karac0eb31e2008-04-01 16:50:35 +02001281 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001282 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001283 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001284 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001285 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001286 uint16_t partitionNumber;
1287 uint16_t ident;
1288 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Jan Karac0eb31e2008-04-01 16:50:35 +02001290 bh = udf_read_tagged(sb, block, block, &ident);
1291 if (!bh)
1292 return 1;
1293 if (ident != TAG_IDENT_PD)
1294 goto out_bh;
1295
1296 p = (struct partitionDesc *)bh->b_data;
1297 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001298
Jan Karabfb257a2008-04-08 20:37:21 +02001299 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001300 for (i = 0; i < sbi->s_partitions; i++) {
1301 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001302 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001303 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001304 if (map->s_partition_num == partitionNumber &&
1305 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1306 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001308 }
1309
Jan Kara38b74a52008-04-02 16:01:35 +02001310 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001311 udf_debug("Partition (%d) not found in partition map\n",
1312 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001313 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001314 }
1315
Jan Kara3fb38df2008-04-02 12:26:36 +02001316 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001317
1318 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001319 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1320 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001321 */
1322 type1_idx = i;
1323 for (i = 0; i < sbi->s_partitions; i++) {
1324 map = &sbi->s_partmaps[i];
1325
1326 if (map->s_partition_num == partitionNumber &&
1327 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001328 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1329 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001330 break;
1331 }
1332
1333 if (i >= sbi->s_partitions)
1334 goto out_bh;
1335
1336 ret = udf_fill_partdesc_info(sb, p, i);
1337 if (ret)
1338 goto out_bh;
1339
Jan Karabfb257a2008-04-08 20:37:21 +02001340 if (map->s_partition_type == UDF_METADATA_MAP25) {
1341 ret = udf_load_metadata_files(sb, i);
1342 if (ret) {
1343 printk(KERN_ERR "UDF-fs: error loading MetaData "
1344 "partition map %d\n", i);
1345 goto out_bh;
1346 }
1347 } else {
1348 ret = udf_load_vat(sb, i, type1_idx);
1349 if (ret)
1350 goto out_bh;
1351 /*
1352 * Mark filesystem read-only if we have a partition with
1353 * virtual map since we don't handle writing to it (we
1354 * overwrite blocks instead of relocating them).
1355 */
1356 sb->s_flags |= MS_RDONLY;
1357 printk(KERN_NOTICE "UDF-fs: Filesystem marked read-only "
1358 "because writing to pseudooverwrite partition is "
1359 "not implemented.\n");
1360 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001361out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001362 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001363 brelse(bh);
1364 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Jan Karac0eb31e2008-04-01 16:50:35 +02001367static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001368 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 struct logicalVolDesc *lvd;
1371 int i, j, offset;
1372 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001373 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001374 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001375 uint16_t ident;
1376 struct buffer_head *bh;
1377 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Jan Karac0eb31e2008-04-01 16:50:35 +02001379 bh = udf_read_tagged(sb, block, block, &ident);
1380 if (!bh)
1381 return 1;
1382 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 lvd = (struct logicalVolDesc *)bh->b_data;
1384
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -08001385 i = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
Jan Karac0eb31e2008-04-01 16:50:35 +02001386 if (i != 0) {
1387 ret = i;
1388 goto out_bh;
1389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001391 for (i = 0, offset = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001392 i < sbi->s_partitions && offset < le32_to_cpu(lvd->mapTableLength);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001393 i++, offset += gpm->partitionMapLength) {
1394 struct udf_part_map *map = &sbi->s_partmaps[i];
1395 gpm = (struct genericPartitionMap *)
1396 &(lvd->partitionMaps[offset]);
1397 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001398 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001399 struct genericPartitionMap1 *gpm1 =
1400 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001401 map->s_partition_type = UDF_TYPE1_MAP15;
1402 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1403 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1404 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001405 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001406 struct udfPartitionMap2 *upm2 =
1407 (struct udfPartitionMap2 *)gpm;
1408 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1409 strlen(UDF_ID_VIRTUAL))) {
1410 u16 suf =
1411 le16_to_cpu(((__le16 *)upm2->partIdent.
1412 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001413 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001414 map->s_partition_type =
1415 UDF_VIRTUAL_MAP15;
1416 map->s_partition_func =
1417 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001418 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001419 map->s_partition_type =
1420 UDF_VIRTUAL_MAP20;
1421 map->s_partition_func =
1422 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001424 } else if (!strncmp(upm2->partIdent.ident,
1425 UDF_ID_SPARABLE,
1426 strlen(UDF_ID_SPARABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 uint32_t loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 struct sparingTable *st;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001429 struct sparablePartitionMap *spm =
1430 (struct sparablePartitionMap *)gpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001432 map->s_partition_type = UDF_SPARABLE_MAP15;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001433 map->s_type_specific.s_sparing.s_packet_len =
1434 le16_to_cpu(spm->packetLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001435 for (j = 0; j < spm->numSparingTables; j++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001436 struct buffer_head *bh2;
1437
1438 loc = le32_to_cpu(
1439 spm->locSparingTable[j]);
1440 bh2 = udf_read_tagged(sb, loc, loc,
1441 &ident);
1442 map->s_type_specific.s_sparing.
1443 s_spar_map[j] = bh2;
1444
Marcin Slusarz165923f2008-02-10 11:33:08 +01001445 if (bh2 == NULL)
1446 continue;
1447
1448 st = (struct sparingTable *)bh2->b_data;
1449 if (ident != 0 || strncmp(
1450 st->sparingIdent.ident,
1451 UDF_ID_SPARING,
1452 strlen(UDF_ID_SPARING))) {
1453 brelse(bh2);
1454 map->s_type_specific.s_sparing.
1455 s_spar_map[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
1457 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001458 map->s_partition_func = udf_get_pblock_spar15;
Jan Karabfb257a2008-04-08 20:37:21 +02001459 } else if (!strncmp(upm2->partIdent.ident,
1460 UDF_ID_METADATA,
1461 strlen(UDF_ID_METADATA))) {
1462 struct udf_meta_data *mdata =
1463 &map->s_type_specific.s_metadata;
1464 struct metadataPartitionMap *mdm =
1465 (struct metadataPartitionMap *)
1466 &(lvd->partitionMaps[offset]);
1467 udf_debug("Parsing Logical vol part %d "
1468 "type %d id=%s\n", i, type,
1469 UDF_ID_METADATA);
1470
1471 map->s_partition_type = UDF_METADATA_MAP25;
1472 map->s_partition_func = udf_get_pblock_meta25;
1473
1474 mdata->s_meta_file_loc =
1475 le32_to_cpu(mdm->metadataFileLoc);
1476 mdata->s_mirror_file_loc =
1477 le32_to_cpu(mdm->metadataMirrorFileLoc);
1478 mdata->s_bitmap_file_loc =
1479 le32_to_cpu(mdm->metadataBitmapFileLoc);
1480 mdata->s_alloc_unit_size =
1481 le32_to_cpu(mdm->allocUnitSize);
1482 mdata->s_align_unit_size =
1483 le16_to_cpu(mdm->alignUnitSize);
1484 mdata->s_dup_md_flag =
1485 mdm->flags & 0x01;
1486
1487 udf_debug("Metadata Ident suffix=0x%x\n",
1488 (le16_to_cpu(
1489 ((__le16 *)
1490 mdm->partIdent.identSuffix)[0])));
1491 udf_debug("Metadata part num=%d\n",
1492 le16_to_cpu(mdm->partitionNum));
1493 udf_debug("Metadata part alloc unit size=%d\n",
1494 le32_to_cpu(mdm->allocUnitSize));
1495 udf_debug("Metadata file loc=%d\n",
1496 le32_to_cpu(mdm->metadataFileLoc));
1497 udf_debug("Mirror file loc=%d\n",
1498 le32_to_cpu(mdm->metadataMirrorFileLoc));
1499 udf_debug("Bitmap file loc=%d\n",
1500 le32_to_cpu(mdm->metadataBitmapFileLoc));
1501 udf_debug("Duplicate Flag: %d %d\n",
1502 mdata->s_dup_md_flag, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001503 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001504 udf_debug("Unknown ident: %s\n",
1505 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 continue;
1507 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001508 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1509 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
1511 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001512 i, map->s_partition_num, type,
1513 map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001516 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001517 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 *fileset = lelb_to_cpu(la->extLocation);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001520 udf_debug("FileSet found in LogicalVolDesc at block=%d, "
1521 "partition=%d\n", fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001522 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524 if (lvd->integritySeqExt.extLength)
1525 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001526
Jan Karac0eb31e2008-04-01 16:50:35 +02001527out_bh:
1528 brelse(bh);
1529 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
1531
1532/*
1533 * udf_load_logicalvolint
1534 *
1535 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001536static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
1538 struct buffer_head *bh = NULL;
1539 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001540 struct udf_sb_info *sbi = UDF_SB(sb);
1541 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001544 (bh = udf_read_tagged(sb, loc.extLocation,
1545 loc.extLocation, &ident)) &&
1546 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001547 sbi->s_lvid_bh = bh;
1548 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001549
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001550 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001551 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001552 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001553
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001554 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001555 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001557 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001559 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001560 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
1563/*
1564 * udf_process_sequence
1565 *
1566 * PURPOSE
1567 * Process a main/reserve volume descriptor sequence.
1568 *
1569 * PRE-CONDITIONS
1570 * sb Pointer to _locked_ superblock.
1571 * block First block of first extent of the sequence.
1572 * lastblock Lastblock of first extent of the sequence.
1573 *
1574 * HISTORY
1575 * July 1, 1997 - Andrew E. Mileski
1576 * Written, tested, and released.
1577 */
Jan Kara200a3592008-03-04 13:03:09 +01001578static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001579 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
1581 struct buffer_head *bh = NULL;
1582 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001583 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 struct generic_desc *gd;
1585 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001586 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 uint32_t vdsn;
1588 uint16_t ident;
1589 long next_s = 0, next_e = 0;
1590
1591 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1592
Jan Karac0eb31e2008-04-01 16:50:35 +02001593 /*
1594 * Read the main descriptor sequence and find which descriptors
1595 * are in it.
1596 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001597 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001600 if (!bh) {
1601 printk(KERN_ERR "udf: Block %Lu of volume descriptor "
1602 "sequence is corrupted or we could not read "
1603 "it.\n", (unsigned long long)block);
1604 return 1;
1605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1608 gd = (struct generic_desc *)bh->b_data;
1609 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001610 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001611 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001612 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1613 if (vdsn >= curr->volDescSeqNum) {
1614 curr->volDescSeqNum = vdsn;
1615 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001616 }
1617 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001618 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001619 curr = &vds[VDS_POS_VOL_DESC_PTR];
1620 if (vdsn >= curr->volDescSeqNum) {
1621 curr->volDescSeqNum = vdsn;
1622 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001624 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001625 next_s = le32_to_cpu(
1626 vdp->nextVolDescSeqExt.extLocation);
1627 next_e = le32_to_cpu(
1628 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001629 next_e = next_e >> sb->s_blocksize_bits;
1630 next_e += next_s;
1631 }
1632 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001633 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001634 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1635 if (vdsn >= curr->volDescSeqNum) {
1636 curr->volDescSeqNum = vdsn;
1637 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001638 }
1639 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001640 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001641 curr = &vds[VDS_POS_PARTITION_DESC];
1642 if (!curr->block)
1643 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001644 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001645 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001646 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1647 if (vdsn >= curr->volDescSeqNum) {
1648 curr->volDescSeqNum = vdsn;
1649 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001650 }
1651 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001652 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001653 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1654 if (vdsn >= curr->volDescSeqNum) {
1655 curr->volDescSeqNum = vdsn;
1656 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001657 }
1658 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001659 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001660 vds[VDS_POS_TERMINATING_DESC].block = block;
1661 if (next_e) {
1662 block = next_s;
1663 lastblock = next_e;
1664 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001665 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001666 done = 1;
1667 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001669 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001671 /*
1672 * Now read interesting descriptors again and process them
1673 * in a suitable order
1674 */
1675 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
1676 printk(KERN_ERR "udf: Primary Volume Descriptor not found!\n");
1677 return 1;
1678 }
1679 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1680 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Jan Karac0eb31e2008-04-01 16:50:35 +02001682 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1683 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1684 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001685
Jan Karac0eb31e2008-04-01 16:50:35 +02001686 if (vds[VDS_POS_PARTITION_DESC].block) {
1687 /*
1688 * We rescan the whole descriptor sequence to find
1689 * partition descriptor blocks and process them.
1690 */
1691 for (block = vds[VDS_POS_PARTITION_DESC].block;
1692 block < vds[VDS_POS_TERMINATING_DESC].block;
1693 block++)
1694 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001695 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 }
1697
1698 return 0;
1699}
1700
1701/*
1702 * udf_check_valid()
1703 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001704static int udf_check_valid(struct super_block *sb, int novrs, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
1706 long block;
Pavel Emelyanovd0db1812008-03-05 00:03:36 +01001707 struct udf_sb_info *sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001709 if (novrs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 udf_debug("Validity check skipped because of novrs option\n");
1711 return 0;
1712 }
1713 /* Check that it is NSR02 compliant */
1714 /* Process any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
Marcin Slusarz165923f2008-02-10 11:33:08 +01001715 block = udf_vrs(sb, silent);
Pavel Emelyanovd0db1812008-03-05 00:03:36 +01001716 if (block == -1)
1717 udf_debug("Failed to read byte 32768. Assuming open "
1718 "disc. Skipping validity check\n");
1719 if (block && !sbi->s_last_block)
Marcin Slusarz165923f2008-02-10 11:33:08 +01001720 sbi->s_last_block = udf_get_last_block(sb);
Pavel Emelyanovd0db1812008-03-05 00:03:36 +01001721 return !block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001724static int udf_load_sequence(struct super_block *sb, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
1726 struct anchorVolDescPtr *anchor;
1727 uint16_t ident;
1728 struct buffer_head *bh;
1729 long main_s, main_e, reserve_s, reserve_e;
Jan Kara38b74a52008-04-02 16:01:35 +02001730 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001731 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 if (!sb)
1734 return 1;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001735 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001737 for (i = 0; i < ARRAY_SIZE(sbi->s_anchor); i++) {
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001738 if (!sbi->s_anchor[i])
1739 continue;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001740
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001741 bh = udf_read_tagged(sb, sbi->s_anchor[i], sbi->s_anchor[i],
1742 &ident);
1743 if (!bh)
1744 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001746 anchor = (struct anchorVolDescPtr *)bh->b_data;
Tobias Klausere8c96f82006-03-24 03:15:34 -08001747
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001748 /* Locate the main sequence */
1749 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1750 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1751 main_e = main_e >> sb->s_blocksize_bits;
1752 main_e += main_s;
1753
1754 /* Locate the reserve sequence */
1755 reserve_s = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001756 anchor->reserveVolDescSeqExt.extLocation);
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001757 reserve_e = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001758 anchor->reserveVolDescSeqExt.extLength);
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001759 reserve_e = reserve_e >> sb->s_blocksize_bits;
1760 reserve_e += reserve_s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001762 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001764 /* Process the main & reserve sequences */
1765 /* responsible for finding the PartitionDesc(s) */
1766 if (!(udf_process_sequence(sb, main_s, main_e,
1767 fileset) &&
1768 udf_process_sequence(sb, reserve_s, reserve_e,
1769 fileset)))
1770 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
1772
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001773 if (i == ARRAY_SIZE(sbi->s_anchor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 udf_debug("No Anchor block found\n");
1775 return 1;
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001776 }
1777 udf_debug("Using anchor in block %d\n", sbi->s_anchor[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return 0;
1780}
1781
1782static void udf_open_lvid(struct super_block *sb)
1783{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001784 struct udf_sb_info *sbi = UDF_SB(sb);
1785 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001786 struct logicalVolIntegrityDesc *lvid;
1787 struct logicalVolIntegrityDescImpUse *lvidiu;
1788 if (!bh)
1789 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Marcin Slusarz165923f2008-02-10 11:33:08 +01001791 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1792 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Marcin Slusarz165923f2008-02-10 11:33:08 +01001794 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1795 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1796 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1797 CURRENT_TIME);
1798 lvid->integrityType = LVID_INTEGRITY_TYPE_OPEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Marcin Slusarz165923f2008-02-10 11:33:08 +01001800 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001801 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001802 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001803
1804 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1805 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
1808static void udf_close_lvid(struct super_block *sb)
1809{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001810 struct udf_sb_info *sbi = UDF_SB(sb);
1811 struct buffer_head *bh = sbi->s_lvid_bh;
1812 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001813 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001814
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001815 if (!bh)
1816 return;
1817
1818 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1819
Marcin Slusarz165923f2008-02-10 11:33:08 +01001820 if (lvid->integrityType != LVID_INTEGRITY_TYPE_OPEN)
1821 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Marcin Slusarz165923f2008-02-10 11:33:08 +01001823 lvidiu = udf_sb_lvidiu(sbi);
1824 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1825 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1826 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1827 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1828 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1829 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1830 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1831 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1832 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1833 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Marcin Slusarz165923f2008-02-10 11:33:08 +01001835 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001836 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001837 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001838
1839 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1840 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001843static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1844{
1845 int i;
1846 int nr_groups = bitmap->s_nr_groups;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001847 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1848 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001849
1850 for (i = 0; i < nr_groups; i++)
1851 if (bitmap->s_block_bitmap[i])
1852 brelse(bitmap->s_block_bitmap[i]);
1853
1854 if (size <= PAGE_SIZE)
1855 kfree(bitmap);
1856 else
1857 vfree(bitmap);
1858}
1859
Jan Kara2e0838f2008-04-01 18:08:51 +02001860static void udf_free_partition(struct udf_part_map *map)
1861{
1862 int i;
Jan Karabfb257a2008-04-08 20:37:21 +02001863 struct udf_meta_data *mdata;
Jan Kara2e0838f2008-04-01 18:08:51 +02001864
1865 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1866 iput(map->s_uspace.s_table);
1867 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1868 iput(map->s_fspace.s_table);
1869 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1870 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1871 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1872 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1873 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1874 for (i = 0; i < 4; i++)
1875 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
Jan Karabfb257a2008-04-08 20:37:21 +02001876 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1877 mdata = &map->s_type_specific.s_metadata;
1878 iput(mdata->s_metadata_fe);
1879 mdata->s_metadata_fe = NULL;
1880
1881 iput(mdata->s_mirror_fe);
1882 mdata->s_mirror_fe = NULL;
1883
1884 iput(mdata->s_bitmap_fe);
1885 mdata->s_bitmap_fe = NULL;
1886 }
Jan Kara2e0838f2008-04-01 18:08:51 +02001887}
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889static int udf_fill_super(struct super_block *sb, void *options, int silent)
1890{
1891 int i;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001892 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001894 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 struct udf_sb_info *sbi;
1896
1897 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1898 uopt.uid = -1;
1899 uopt.gid = -1;
1900 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001901 uopt.fmode = UDF_INVALID_MODE;
1902 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001904 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (!sbi)
1906 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001910 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Miklos Szeredi6da80892008-02-08 04:21:50 -08001912 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 goto error_out;
1914
1915 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001916 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 udf_error(sb, "udf_read_super",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001918 "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 goto error_out;
1920 }
1921#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001922 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 uopt.nls_map = load_nls_default();
1924 if (!uopt.nls_map)
1925 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1926 else
1927 udf_debug("Using default NLS map\n");
1928 }
1929#endif
1930 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1931 uopt.flags |= (1 << UDF_FLAG_UTF8);
1932
1933 fileset.logicalBlockNum = 0xFFFFFFFF;
1934 fileset.partitionReferenceNum = 0xFFFF;
1935
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001936 sbi->s_flags = uopt.flags;
1937 sbi->s_uid = uopt.uid;
1938 sbi->s_gid = uopt.gid;
1939 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001940 sbi->s_fmode = uopt.fmode;
1941 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001942 sbi->s_nls_map = uopt.nls_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 /* Set the block size for all transfers */
Christoph Hellwigf1f73ba82008-02-22 12:38:02 +01001945 if (!sb_min_blocksize(sb, uopt.blocksize)) {
1946 udf_debug("Bad block size (%d)\n", uopt.blocksize);
1947 printk(KERN_ERR "udf: bad block size (%d)\n", uopt.blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 goto error_out;
Christoph Hellwigf1f73ba82008-02-22 12:38:02 +01001949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001951 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001952 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001954 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001956 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001958 sbi->s_last_block = uopt.lastblock;
1959 sbi->s_anchor[0] = sbi->s_anchor[1] = 0;
1960 sbi->s_anchor[2] = uopt.anchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001962 if (udf_check_valid(sb, uopt.novrs, silent)) {
1963 /* read volume recognition sequences */
1964 printk(KERN_WARNING "UDF-fs: No VRS found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001965 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
1967
1968 udf_find_anchor(sb);
1969
1970 /* Fill in the rest of the superblock */
1971 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001972 sb->s_export_op = &udf_export_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 sb->dq_op = NULL;
1974 sb->s_dirt = 0;
1975 sb->s_magic = UDF_SUPER_MAGIC;
1976 sb->s_time_gran = 1000;
1977
Jan Kara38b74a52008-04-02 16:01:35 +02001978 if (udf_load_sequence(sb, &fileset)) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001979 printk(KERN_WARNING "UDF-fs: No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 goto error_out;
1981 }
1982
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001983 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001985 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001986 struct logicalVolIntegrityDescImpUse *lvidiu =
1987 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001988 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
1989 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001990 /* uint16_t maxUDFWriteRev =
1991 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001993 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001994 printk(KERN_ERR "UDF-fs: minUDFReadRev=%x "
1995 "(max is %x)\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001996 le16_to_cpu(lvidiu->minUDFReadRev),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001997 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001999 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002002 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2005 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2006 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2007 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2008 }
2009
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002010 if (!sbi->s_partitions) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002011 printk(KERN_WARNING "UDF-fs: No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 goto error_out;
2013 }
2014
Marcin Slusarz4b111112008-02-08 04:20:36 -08002015 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2016 UDF_PART_FLAG_READ_ONLY) {
2017 printk(KERN_NOTICE "UDF-fs: Partition marked readonly; "
2018 "forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002019 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002020 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002021
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002022 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002023 printk(KERN_WARNING "UDF-fs: No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 goto error_out;
2025 }
2026
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002027 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002028 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002029 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Adrian Bunka9ca6632008-02-08 04:20:47 -08002030 udf_info("UDF: Mounting volume '%s', "
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002031 "timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarz56774802008-02-10 11:25:31 +01002032 sbi->s_volume_ident, le16_to_cpu(ts.year), ts.month, ts.day,
2033 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
2035 if (!(sb->s_flags & MS_RDONLY))
2036 udf_open_lvid(sb);
2037
2038 /* Assign the root inode */
2039 /* assign inodes by physical block number */
2040 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002041 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002042 if (!inode) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002043 printk(KERN_ERR "UDF-fs: Error in udf_iget, block=%d, "
2044 "partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002045 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 goto error_out;
2047 }
2048
2049 /* Allocate a dentry for the root inode */
2050 sb->s_root = d_alloc_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002051 if (!sb->s_root) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002052 printk(KERN_ERR "UDF-fs: Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 iput(inode);
2054 goto error_out;
2055 }
Jan Kara31170b62007-05-08 00:35:21 -07002056 sb->s_maxbytes = MAX_LFS_FILESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 return 0;
2058
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002059error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002060 if (sbi->s_vat_inode)
2061 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002062 if (sbi->s_partitions)
2063 for (i = 0; i < sbi->s_partitions; i++)
2064 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065#ifdef CONFIG_UDF_NLS
2066 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002067 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068#endif
2069 if (!(sb->s_flags & MS_RDONLY))
2070 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002071 brelse(sbi->s_lvid_bh);
2072
2073 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 kfree(sbi);
2075 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 return -EINVAL;
2078}
2079
Adrian Bunkb8145a72008-02-17 10:19:55 +02002080static void udf_error(struct super_block *sb, const char *function,
2081 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
2083 va_list args;
2084
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002085 if (!(sb->s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 /* mark sb error */
2087 sb->s_dirt = 1;
2088 }
2089 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002090 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 va_end(args);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002092 printk(KERN_CRIT "UDF-fs error (device %s): %s: %s\n",
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002093 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
2096void udf_warning(struct super_block *sb, const char *function,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002097 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
2099 va_list args;
2100
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002101 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002102 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 va_end(args);
2104 printk(KERN_WARNING "UDF-fs warning (device %s): %s: %s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002105 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002108static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
2110 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002111 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002113 sbi = UDF_SB(sb);
2114 if (sbi->s_vat_inode)
2115 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002116 if (sbi->s_partitions)
2117 for (i = 0; i < sbi->s_partitions; i++)
2118 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119#ifdef CONFIG_UDF_NLS
2120 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002121 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122#endif
2123 if (!(sb->s_flags & MS_RDONLY))
2124 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002125 brelse(sbi->s_lvid_bh);
2126 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 kfree(sb->s_fs_info);
2128 sb->s_fs_info = NULL;
2129}
2130
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002131static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
David Howells726c3342006-06-23 02:02:58 -07002133 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002134 struct udf_sb_info *sbi = UDF_SB(sb);
2135 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002136 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002137
2138 if (sbi->s_lvid_bh != NULL)
2139 lvidiu = udf_sb_lvidiu(sbi);
2140 else
2141 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 buf->f_type = UDF_SUPER_MAGIC;
2144 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002145 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 buf->f_bfree = udf_count_free(sb);
2147 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002148 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2149 le32_to_cpu(lvidiu->numDirs)) : 0)
2150 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002152 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002153 buf->f_fsid.val[0] = (u32)id;
2154 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 return 0;
2157}
2158
Marcin Slusarz4b111112008-02-08 04:20:36 -08002159static unsigned int udf_count_free_bitmap(struct super_block *sb,
2160 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 struct buffer_head *bh = NULL;
2163 unsigned int accum = 0;
2164 int index;
2165 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002166 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 uint8_t *ptr;
2169 uint16_t ident;
2170 struct spaceBitmapDesc *bm;
2171
2172 lock_kernel();
2173
2174 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002175 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002176 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002178 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 printk(KERN_ERR "udf: udf_count_free failed\n");
2180 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002181 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002182 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 printk(KERN_ERR "udf: udf_count_free failed\n");
2184 goto out;
2185 }
2186
2187 bm = (struct spaceBitmapDesc *)bh->b_data;
2188 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002189 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2190 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002192 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002193 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2194 accum += bitmap_weight((const unsigned long *)(ptr + index),
2195 cur_bytes * 8);
2196 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002197 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002198 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002199 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002201 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 udf_debug("read failed\n");
2203 goto out;
2204 }
2205 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002206 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
2208 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002209 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002211out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 unlock_kernel();
2213
2214 return accum;
2215}
2216
Marcin Slusarz4b111112008-02-08 04:20:36 -08002217static unsigned int udf_count_free_table(struct super_block *sb,
2218 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
2220 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002221 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002222 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002224 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
2226 lock_kernel();
2227
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002228 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002229 epos.offset = sizeof(struct unallocSpaceEntry);
2230 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002232 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002234
Jan Kara3bf25cb2007-05-08 00:35:16 -07002235 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 unlock_kernel();
2238
2239 return accum;
2240}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002241
2242static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
2244 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002245 struct udf_sb_info *sbi;
2246 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002248 sbi = UDF_SB(sb);
2249 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002250 struct logicalVolIntegrityDesc *lvid =
2251 (struct logicalVolIntegrityDesc *)
2252 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002253 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002254 accum = le32_to_cpu(
2255 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 if (accum == 0xFFFFFFFF)
2257 accum = 0;
2258 }
2259 }
2260
2261 if (accum)
2262 return accum;
2263
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002264 map = &sbi->s_partmaps[sbi->s_partition];
2265 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002266 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002267 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002269 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002270 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002271 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 }
2273 if (accum)
2274 return accum;
2275
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002276 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002277 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002278 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002280 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002281 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002282 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
2284
2285 return accum;
2286}