blob: 612d1e2e285a158bfd1bf7661621565dda955de9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * super.c
3 *
4 * PURPOSE
5 * Super block routines for the OSTA-UDF(tm) filesystem.
6 *
7 * DESCRIPTION
8 * OSTA-UDF(tm) = Optical Storage Technology Association
9 * Universal Disk Format.
10 *
11 * This code is based on version 2.00 of the UDF specification,
12 * and revision 3 of the ECMA 167 standard [equivalent to ISO 13346].
13 * http://www.osta.org/
14 * http://www.ecma.ch/
15 * http://www.iso.org/
16 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * COPYRIGHT
18 * This file is distributed under the terms of the GNU General Public
19 * License (GPL). Copies of the GPL can be obtained from:
20 * ftp://prep.ai.mit.edu/pub/gnu/GPL
21 * Each contributing author retains all rights to their own work.
22 *
23 * (C) 1998 Dave Boynton
24 * (C) 1998-2004 Ben Fennema
25 * (C) 2000 Stelias Computing Inc
26 *
27 * HISTORY
28 *
29 * 09/24/98 dgb changed to allow compiling outside of kernel, and
30 * added some debugging.
31 * 10/01/98 dgb updated to allow (some) possibility of compiling w/2.0.34
32 * 10/16/98 attempting some multi-session support
33 * 10/17/98 added freespace count for "df"
34 * 11/11/98 gr added novrs option
35 * 11/26/98 dgb added fileset,anchor mount options
Marcin Slusarz3a71fc52008-02-08 04:20:28 -080036 * 12/06/98 blf really hosed things royally. vat/sparing support. sequenced
37 * vol descs. rewrote option handling based on isofs
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * 12/20/98 find the free space bitmap (if it exists)
39 */
40
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070041#include "udfdecl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/blkdev.h>
44#include <linux/slab.h>
45#include <linux/kernel.h>
46#include <linux/module.h>
47#include <linux/parser.h>
48#include <linux/stat.h>
49#include <linux/cdrom.h>
50#include <linux/nls.h>
51#include <linux/smp_lock.h>
52#include <linux/buffer_head.h>
53#include <linux/vfs.h>
54#include <linux/vmalloc.h>
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -080055#include <linux/errno.h>
Miklos Szeredi6da80892008-02-08 04:21:50 -080056#include <linux/mount.h>
57#include <linux/seq_file.h>
Marcin Slusarz01b954a2008-02-02 22:37:07 +010058#include <linux/bitmap.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020059#include <linux/crc-itu-t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/byteorder.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include "udf_sb.h"
63#include "udf_i.h"
64
65#include <linux/init.h>
66#include <asm/uaccess.h>
67
68#define VDS_POS_PRIMARY_VOL_DESC 0
69#define VDS_POS_UNALLOC_SPACE_DESC 1
70#define VDS_POS_LOGICAL_VOL_DESC 2
71#define VDS_POS_PARTITION_DESC 3
72#define VDS_POS_IMP_USE_VOL_DESC 4
73#define VDS_POS_VOL_DESC_PTR 5
74#define VDS_POS_TERMINATING_DESC 6
75#define VDS_POS_LENGTH 7
76
Miklos Szeredi6da80892008-02-08 04:21:50 -080077#define UDF_DEFAULT_BLOCKSIZE 2048
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static char error_buf[1024];
80
81/* These are the "meat" - everything else is stuffing */
82static int udf_fill_super(struct super_block *, void *, int);
83static void udf_put_super(struct super_block *);
Jan Kara146bca72009-03-16 18:27:37 +010084static int udf_sync_fs(struct super_block *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static int udf_remount_fs(struct super_block *, int *, char *);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020086static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020087static int udf_find_fileset(struct super_block *, struct kernel_lb_addr *,
88 struct kernel_lb_addr *);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070089static void udf_load_fileset(struct super_block *, struct buffer_head *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020090 struct kernel_lb_addr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static void udf_open_lvid(struct super_block *);
92static void udf_close_lvid(struct super_block *);
93static unsigned int udf_count_free(struct super_block *);
David Howells726c3342006-06-23 02:02:58 -070094static int udf_statfs(struct dentry *, struct kstatfs *);
Miklos Szeredi6da80892008-02-08 04:21:50 -080095static int udf_show_options(struct seq_file *, struct vfsmount *);
Adrian Bunkb8145a72008-02-17 10:19:55 +020096static void udf_error(struct super_block *sb, const char *function,
97 const char *fmt, ...);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Marcin Slusarz6c79e982008-02-08 04:20:30 -080099struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
100{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800101 struct logicalVolIntegrityDesc *lvid =
102 (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800103 __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800104 __u32 offset = number_of_partitions * 2 *
105 sizeof(uint32_t)/sizeof(uint8_t);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800106 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/* UDF filesystem type */
David Howells454e2392006-06-23 02:02:57 -0700110static int udf_get_sb(struct file_system_type *fs_type,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700111 int flags, const char *dev_name, void *data,
112 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
David Howells454e2392006-06-23 02:02:57 -0700114 return get_sb_bdev(fs_type, flags, dev_name, data, udf_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117static struct file_system_type udf_fstype = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700118 .owner = THIS_MODULE,
119 .name = "udf",
120 .get_sb = udf_get_sb,
121 .kill_sb = kill_block_super,
122 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700125static struct kmem_cache *udf_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127static struct inode *udf_alloc_inode(struct super_block *sb)
128{
129 struct udf_inode_info *ei;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800130 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if (!ei)
132 return NULL;
Dan Bastone95f87972006-08-13 23:24:18 -0700133
134 ei->i_unique = 0;
135 ei->i_lenExtents = 0;
136 ei->i_next_alloc_block = 0;
137 ei->i_next_alloc_goal = 0;
138 ei->i_strat4096 = 0;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return &ei->vfs_inode;
141}
142
143static void udf_destroy_inode(struct inode *inode)
144{
145 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
146}
147
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700148static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700150 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Christoph Lametera35afb82007-05-16 22:10:57 -0700152 ei->i_ext.i_data = NULL;
153 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156static int init_inodecache(void)
157{
158 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
159 sizeof(struct udf_inode_info),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700160 0, (SLAB_RECLAIM_ACCOUNT |
161 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900162 init_once);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700163 if (!udf_inode_cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return -ENOMEM;
165 return 0;
166}
167
168static void destroy_inodecache(void)
169{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700170 kmem_cache_destroy(udf_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173/* Superblock operations */
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800174static const struct super_operations udf_sb_ops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700175 .alloc_inode = udf_alloc_inode,
176 .destroy_inode = udf_destroy_inode,
177 .write_inode = udf_write_inode,
178 .delete_inode = udf_delete_inode,
179 .clear_inode = udf_clear_inode,
180 .put_super = udf_put_super,
Jan Kara146bca72009-03-16 18:27:37 +0100181 .sync_fs = udf_sync_fs,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700182 .statfs = udf_statfs,
183 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800184 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700187struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 unsigned char novrs;
189 unsigned int blocksize;
190 unsigned int session;
191 unsigned int lastblock;
192 unsigned int anchor;
193 unsigned int volume;
194 unsigned short partition;
195 unsigned int fileset;
196 unsigned int rootdir;
197 unsigned int flags;
198 mode_t umask;
199 gid_t gid;
200 uid_t uid;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100201 mode_t fmode;
202 mode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 struct nls_table *nls_map;
204};
205
206static int __init init_udf_fs(void)
207{
208 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 err = init_inodecache();
211 if (err)
212 goto out1;
213 err = register_filesystem(&udf_fstype);
214 if (err)
215 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700218
219out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700221
222out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return err;
224}
225
226static void __exit exit_udf_fs(void)
227{
228 unregister_filesystem(&udf_fstype);
229 destroy_inodecache();
230}
231
232module_init(init_udf_fs)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700233module_exit(exit_udf_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800235static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
236{
237 struct udf_sb_info *sbi = UDF_SB(sb);
238
239 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
240 GFP_KERNEL);
241 if (!sbi->s_partmaps) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700242 udf_error(sb, __func__,
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800243 "Unable to allocate space for %d partition maps",
244 count);
245 sbi->s_partitions = 0;
246 return -ENOMEM;
247 }
248
249 sbi->s_partitions = count;
250 return 0;
251}
252
Miklos Szeredi6da80892008-02-08 04:21:50 -0800253static int udf_show_options(struct seq_file *seq, struct vfsmount *mnt)
254{
255 struct super_block *sb = mnt->mnt_sb;
256 struct udf_sb_info *sbi = UDF_SB(sb);
257
258 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
259 seq_puts(seq, ",nostrict");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100260 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
Miklos Szeredi6da80892008-02-08 04:21:50 -0800261 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
262 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
263 seq_puts(seq, ",unhide");
264 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
265 seq_puts(seq, ",undelete");
266 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
267 seq_puts(seq, ",noadinicb");
268 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
269 seq_puts(seq, ",shortad");
270 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
271 seq_puts(seq, ",uid=forget");
272 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
273 seq_puts(seq, ",uid=ignore");
274 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
275 seq_puts(seq, ",gid=forget");
276 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
277 seq_puts(seq, ",gid=ignore");
278 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
279 seq_printf(seq, ",uid=%u", sbi->s_uid);
280 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
281 seq_printf(seq, ",gid=%u", sbi->s_gid);
282 if (sbi->s_umask != 0)
283 seq_printf(seq, ",umask=%o", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100284 if (sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100285 seq_printf(seq, ",mode=%o", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100286 if (sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100287 seq_printf(seq, ",dmode=%o", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800288 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
289 seq_printf(seq, ",session=%u", sbi->s_session);
290 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
291 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
Jan Kara40346002009-03-19 16:21:38 +0100292 if (sbi->s_anchor != 0)
293 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800294 /*
295 * volume, partition, fileset and rootdir seem to be ignored
296 * currently
297 */
298 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
299 seq_puts(seq, ",utf8");
300 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
301 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
302
303 return 0;
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/*
307 * udf_parse_options
308 *
309 * PURPOSE
310 * Parse mount options.
311 *
312 * DESCRIPTION
313 * The following mount options are supported:
314 *
315 * gid= Set the default group.
316 * umask= Set the default umask.
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100317 * mode= Set the default file permissions.
318 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * uid= Set the default user.
320 * bs= Set the block size.
321 * unhide Show otherwise hidden files.
322 * undelete Show deleted files in lists.
323 * adinicb Embed data in the inode (default)
324 * noadinicb Don't embed data in the inode
325 * shortad Use short ad's
326 * longad Use long ad's (default)
327 * nostrict Unset strict conformance
328 * iocharset= Set the NLS character set
329 *
330 * The remaining are for debugging and disaster recovery:
331 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700332 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 *
334 * The following expect a offset from 0.
335 *
336 * session= Set the CDROM session (default= last session)
337 * anchor= Override standard anchor location. (default= 256)
338 * volume= Override the VolumeDesc location. (unused)
339 * partition= Override the PartitionDesc location. (unused)
340 * lastblock= Set the last block of the filesystem/
341 *
342 * The following expect a offset from the partition root.
343 *
344 * fileset= Override the fileset block location. (unused)
345 * rootdir= Override the root directory location. (unused)
346 * WARNING: overriding the rootdir to a non-directory may
347 * yield highly unpredictable results.
348 *
349 * PRE-CONDITIONS
350 * options Pointer to mount options string.
351 * uopts Pointer to mount options variable.
352 *
353 * POST-CONDITIONS
354 * <return> 1 Mount options parsed okay.
355 * <return> 0 Error parsing mount options.
356 *
357 * HISTORY
358 * July 1, 1997 - Andrew E. Mileski
359 * Written, tested, and released.
360 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362enum {
363 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
364 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
365 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
366 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
367 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100368 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
369 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370};
371
Steven Whitehousea447c092008-10-13 10:46:57 +0100372static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700373 {Opt_novrs, "novrs"},
374 {Opt_nostrict, "nostrict"},
375 {Opt_bs, "bs=%u"},
376 {Opt_unhide, "unhide"},
377 {Opt_undelete, "undelete"},
378 {Opt_noadinicb, "noadinicb"},
379 {Opt_adinicb, "adinicb"},
380 {Opt_shortad, "shortad"},
381 {Opt_longad, "longad"},
382 {Opt_uforget, "uid=forget"},
383 {Opt_uignore, "uid=ignore"},
384 {Opt_gforget, "gid=forget"},
385 {Opt_gignore, "gid=ignore"},
386 {Opt_gid, "gid=%u"},
387 {Opt_uid, "uid=%u"},
388 {Opt_umask, "umask=%o"},
389 {Opt_session, "session=%u"},
390 {Opt_lastblock, "lastblock=%u"},
391 {Opt_anchor, "anchor=%u"},
392 {Opt_volume, "volume=%u"},
393 {Opt_partition, "partition=%u"},
394 {Opt_fileset, "fileset=%u"},
395 {Opt_rootdir, "rootdir=%u"},
396 {Opt_utf8, "utf8"},
397 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100398 {Opt_fmode, "mode=%o"},
399 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700400 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401};
402
Miklos Szeredi6da80892008-02-08 04:21:50 -0800403static int udf_parse_options(char *options, struct udf_options *uopt,
404 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 char *p;
407 int option;
408
409 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 uopt->partition = 0xFFFF;
411 uopt->session = 0xFFFFFFFF;
412 uopt->lastblock = 0;
413 uopt->anchor = 0;
414 uopt->volume = 0xFFFFFFFF;
415 uopt->rootdir = 0xFFFFFFFF;
416 uopt->fileset = 0xFFFFFFFF;
417 uopt->nls_map = NULL;
418
419 if (!options)
420 return 1;
421
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700422 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 substring_t args[MAX_OPT_ARGS];
424 int token;
425 if (!*p)
426 continue;
427
428 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700429 switch (token) {
430 case Opt_novrs:
431 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100432 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700433 case Opt_bs:
434 if (match_int(&args[0], &option))
435 return 0;
436 uopt->blocksize = option;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100437 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700438 break;
439 case Opt_unhide:
440 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
441 break;
442 case Opt_undelete:
443 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
444 break;
445 case Opt_noadinicb:
446 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
447 break;
448 case Opt_adinicb:
449 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
450 break;
451 case Opt_shortad:
452 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
453 break;
454 case Opt_longad:
455 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
456 break;
457 case Opt_gid:
458 if (match_int(args, &option))
459 return 0;
460 uopt->gid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700461 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700462 break;
463 case Opt_uid:
464 if (match_int(args, &option))
465 return 0;
466 uopt->uid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700467 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700468 break;
469 case Opt_umask:
470 if (match_octal(args, &option))
471 return 0;
472 uopt->umask = option;
473 break;
474 case Opt_nostrict:
475 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
476 break;
477 case Opt_session:
478 if (match_int(args, &option))
479 return 0;
480 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800481 if (!remount)
482 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700483 break;
484 case Opt_lastblock:
485 if (match_int(args, &option))
486 return 0;
487 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800488 if (!remount)
489 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700490 break;
491 case Opt_anchor:
492 if (match_int(args, &option))
493 return 0;
494 uopt->anchor = option;
495 break;
496 case Opt_volume:
497 if (match_int(args, &option))
498 return 0;
499 uopt->volume = option;
500 break;
501 case Opt_partition:
502 if (match_int(args, &option))
503 return 0;
504 uopt->partition = option;
505 break;
506 case Opt_fileset:
507 if (match_int(args, &option))
508 return 0;
509 uopt->fileset = option;
510 break;
511 case Opt_rootdir:
512 if (match_int(args, &option))
513 return 0;
514 uopt->rootdir = option;
515 break;
516 case Opt_utf8:
517 uopt->flags |= (1 << UDF_FLAG_UTF8);
518 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700520 case Opt_iocharset:
521 uopt->nls_map = load_nls(args[0].from);
522 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
523 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700525 case Opt_uignore:
526 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
527 break;
528 case Opt_uforget:
529 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
530 break;
531 case Opt_gignore:
532 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
533 break;
534 case Opt_gforget:
535 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
536 break;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100537 case Opt_fmode:
538 if (match_octal(args, &option))
539 return 0;
540 uopt->fmode = option & 0777;
541 break;
542 case Opt_dmode:
543 if (match_octal(args, &option))
544 return 0;
545 uopt->dmode = option & 0777;
546 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700547 default:
548 printk(KERN_ERR "udf: bad mount option \"%s\" "
549 "or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return 0;
551 }
552 }
553 return 1;
554}
555
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700556static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800559 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400560 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800562 uopt.flags = sbi->s_flags;
563 uopt.uid = sbi->s_uid;
564 uopt.gid = sbi->s_gid;
565 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100566 uopt.fmode = sbi->s_fmode;
567 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Miklos Szeredi6da80892008-02-08 04:21:50 -0800569 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return -EINVAL;
571
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200572 lock_kernel();
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800573 sbi->s_flags = uopt.flags;
574 sbi->s_uid = uopt.uid;
575 sbi->s_gid = uopt.gid;
576 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100577 sbi->s_fmode = uopt.fmode;
578 sbi->s_dmode = uopt.dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800580 if (sbi->s_lvid_bh) {
581 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (write_rev > UDF_MAX_WRITE_VERSION)
583 *flags |= MS_RDONLY;
584 }
585
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400586 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
587 goto out_unlock;
588
Jan Kara36350462010-05-19 16:28:56 +0200589 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200591 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 udf_open_lvid(sb);
593
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400594out_unlock:
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200595 unlock_kernel();
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400596 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Jan Kara40346002009-03-19 16:21:38 +0100599/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
600/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
601static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200604 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 int sectorsize;
606 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700607 int nsr02 = 0;
608 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800609 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800611 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (sb->s_blocksize < sizeof(struct volStructDesc))
613 sectorsize = sizeof(struct volStructDesc);
614 else
615 sectorsize = sb->s_blocksize;
616
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800617 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200620 (unsigned int)(sector >> sb->s_blocksize_bits),
621 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700623 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* Read a block */
625 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
626 if (!bh)
627 break;
628
629 /* Look for ISO descriptors */
630 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800631 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700633 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700634 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800636 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
637 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700638 switch (vsd->structType) {
639 case 0:
640 udf_debug("ISO9660 Boot Record found\n");
641 break;
642 case 1:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800643 udf_debug("ISO9660 Primary Volume Descriptor "
644 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700645 break;
646 case 2:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800647 udf_debug("ISO9660 Supplementary Volume "
648 "Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700649 break;
650 case 3:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800651 udf_debug("ISO9660 Volume Partition Descriptor "
652 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700653 break;
654 case 255:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800655 udf_debug("ISO9660 Volume Descriptor Set "
656 "Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700657 break;
658 default:
659 udf_debug("ISO9660 VRS (%u) found\n",
660 vsd->structType);
661 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800663 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
664 VSD_STD_ID_LEN))
665 ; /* nothing */
666 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
667 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700668 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800670 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
671 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800673 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
674 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700676 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
679 if (nsr03)
680 return nsr03;
681 else if (nsr02)
682 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800683 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return -1;
685 else
686 return 0;
687}
688
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800689static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200690 struct kernel_lb_addr *fileset,
691 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
693 struct buffer_head *bh = NULL;
694 long lastblock;
695 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800696 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700699 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200700 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700702 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700704 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700705 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 1;
707 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800711 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800712 if (!bh) {
713 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200714 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700716/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700718
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800719 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700720 (newfileset.partitionReferenceNum != 0xFFFF &&
721 fileset->logicalBlockNum == 0xFFFFFFFF &&
722 fileset->partitionReferenceNum == 0xFFFF);
723 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800724 lastblock = sbi->s_partmaps
725 [newfileset.partitionReferenceNum]
726 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 newfileset.logicalBlockNum = 0;
728
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700729 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200730 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800731 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700732 if (!bh) {
733 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 continue;
735 }
736
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700737 switch (ident) {
738 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700739 {
740 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800741 sp = (struct spaceBitmapDesc *)
742 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700743 newfileset.logicalBlockNum += 1 +
744 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800745 sizeof(struct spaceBitmapDesc)
746 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700747 brelse(bh);
748 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700750 case TAG_IDENT_FSD:
751 *fileset = newfileset;
752 break;
753 default:
754 newfileset.logicalBlockNum++;
755 brelse(bh);
756 bh = NULL;
757 break;
758 }
759 } while (newfileset.logicalBlockNum < lastblock &&
760 fileset->logicalBlockNum == 0xFFFFFFFF &&
761 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763 }
764
765 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700766 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700768 fileset->logicalBlockNum,
769 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800771 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700773 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 0;
775 }
776 return 1;
777}
778
Jan Karac0eb31e2008-04-01 16:50:35 +0200779static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100782 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200783 struct buffer_head *bh;
784 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100785 int ret = 1;
786
787 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
788 if (!instr)
789 return 1;
790
791 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
792 if (!outstr)
793 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200794
795 bh = udf_read_tagged(sb, block, block, &ident);
796 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100797 goto out2;
798
Jan Karac0eb31e2008-04-01 16:50:35 +0200799 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 pvoldesc = (struct primaryVolDesc *)bh->b_data;
802
Marcin Slusarz56774802008-02-10 11:25:31 +0100803 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
804 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100805#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200806 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +0100807 udf_debug("recording time %04u/%02u/%02u"
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800808 " %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100809 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
810 ts->minute, le16_to_cpu(ts->typeAndTimezone));
811#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100814 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
815 if (udf_CS0toUTF8(outstr, instr)) {
816 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
817 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800818 udf_debug("volIdent[] = '%s'\n",
819 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100822 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
823 if (udf_CS0toUTF8(outstr, instr))
824 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200825
826 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100827 ret = 0;
828out2:
829 kfree(outstr);
830out1:
831 kfree(instr);
832 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Jan Karabfb257a2008-04-08 20:37:21 +0200835static int udf_load_metadata_files(struct super_block *sb, int partition)
836{
837 struct udf_sb_info *sbi = UDF_SB(sb);
838 struct udf_part_map *map;
839 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200840 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200841 int fe_error = 0;
842
843 map = &sbi->s_partmaps[partition];
844 mdata = &map->s_type_specific.s_metadata;
845
846 /* metadata address */
847 addr.logicalBlockNum = mdata->s_meta_file_loc;
848 addr.partitionReferenceNum = map->s_partition_num;
849
850 udf_debug("Metadata file location: block = %d part = %d\n",
851 addr.logicalBlockNum, addr.partitionReferenceNum);
852
Pekka Enberg97e961f2008-10-15 12:29:03 +0200853 mdata->s_metadata_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200854
855 if (mdata->s_metadata_fe == NULL) {
856 udf_warning(sb, __func__, "metadata inode efe not found, "
857 "will try mirror inode.");
858 fe_error = 1;
859 } else if (UDF_I(mdata->s_metadata_fe)->i_alloc_type !=
860 ICBTAG_FLAG_AD_SHORT) {
861 udf_warning(sb, __func__, "metadata inode efe does not have "
862 "short allocation descriptors!");
863 fe_error = 1;
864 iput(mdata->s_metadata_fe);
865 mdata->s_metadata_fe = NULL;
866 }
867
868 /* mirror file entry */
869 addr.logicalBlockNum = mdata->s_mirror_file_loc;
870 addr.partitionReferenceNum = map->s_partition_num;
871
872 udf_debug("Mirror metadata file location: block = %d part = %d\n",
873 addr.logicalBlockNum, addr.partitionReferenceNum);
874
Pekka Enberg97e961f2008-10-15 12:29:03 +0200875 mdata->s_mirror_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200876
877 if (mdata->s_mirror_fe == NULL) {
878 if (fe_error) {
879 udf_error(sb, __func__, "mirror inode efe not found "
880 "and metadata inode is missing too, exiting...");
881 goto error_exit;
882 } else
883 udf_warning(sb, __func__, "mirror inode efe not found,"
884 " but metadata inode is OK");
885 } else if (UDF_I(mdata->s_mirror_fe)->i_alloc_type !=
886 ICBTAG_FLAG_AD_SHORT) {
887 udf_warning(sb, __func__, "mirror inode efe does not have "
888 "short allocation descriptors!");
889 iput(mdata->s_mirror_fe);
890 mdata->s_mirror_fe = NULL;
891 if (fe_error)
892 goto error_exit;
893 }
894
895 /*
896 * bitmap file entry
897 * Note:
898 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
899 */
900 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
901 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
902 addr.partitionReferenceNum = map->s_partition_num;
903
904 udf_debug("Bitmap file location: block = %d part = %d\n",
905 addr.logicalBlockNum, addr.partitionReferenceNum);
906
Pekka Enberg97e961f2008-10-15 12:29:03 +0200907 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200908
909 if (mdata->s_bitmap_fe == NULL) {
910 if (sb->s_flags & MS_RDONLY)
911 udf_warning(sb, __func__, "bitmap inode efe "
912 "not found but it's ok since the disc"
913 " is mounted read-only");
914 else {
915 udf_error(sb, __func__, "bitmap inode efe not "
916 "found and attempted read-write mount");
917 goto error_exit;
918 }
919 }
920 }
921
922 udf_debug("udf_load_metadata_files Ok\n");
923
924 return 0;
925
926error_exit:
927 return 1;
928}
929
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700930static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200931 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
933 struct fileSetDesc *fset;
934
935 fset = (struct fileSetDesc *)bh->b_data;
936
937 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
938
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800939 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700941 udf_debug("Rootdir at block=%d, partition=%d\n",
942 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800945int udf_compute_nr_groups(struct super_block *sb, u32 partition)
946{
947 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +0100948 return DIV_ROUND_UP(map->s_partition_len +
949 (sizeof(struct spaceBitmapDesc) << 3),
950 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800951}
952
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800953static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
954{
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800955 struct udf_bitmap *bitmap;
956 int nr_groups;
957 int size;
958
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800959 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800960 size = sizeof(struct udf_bitmap) +
961 (sizeof(struct buffer_head *) * nr_groups);
962
963 if (size <= PAGE_SIZE)
964 bitmap = kmalloc(size, GFP_KERNEL);
965 else
966 bitmap = vmalloc(size); /* TODO: get rid of vmalloc */
967
968 if (bitmap == NULL) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700969 udf_error(sb, __func__,
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800970 "Unable to allocate space for bitmap "
971 "and %d buffer_head pointers", nr_groups);
972 return NULL;
973 }
974
975 memset(bitmap, 0x00, size);
976 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
977 bitmap->s_nr_groups = nr_groups;
978 return bitmap;
979}
980
Jan Kara3fb38df2008-04-02 12:26:36 +0200981static int udf_fill_partdesc_info(struct super_block *sb,
982 struct partitionDesc *p, int p_index)
983{
984 struct udf_part_map *map;
985 struct udf_sb_info *sbi = UDF_SB(sb);
986 struct partitionHeaderDesc *phd;
987
988 map = &sbi->s_partmaps[p_index];
989
990 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
991 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
992
993 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
994 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
995 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
996 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
997 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
998 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
999 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
1000 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1001
Sebastian Manciulea706047a2008-04-14 17:13:01 +02001002 udf_debug("Partition (%d type %x) starts at physical %d, "
1003 "block length %d\n", p_index,
Jan Kara3fb38df2008-04-02 12:26:36 +02001004 map->s_partition_type, map->s_partition_root,
1005 map->s_partition_len);
1006
1007 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1008 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1009 return 0;
1010
1011 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1012 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001013 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001014 .logicalBlockNum = le32_to_cpu(
1015 phd->unallocSpaceTable.extPosition),
1016 .partitionReferenceNum = p_index,
1017 };
1018
Pekka Enberg97e961f2008-10-15 12:29:03 +02001019 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001020 if (!map->s_uspace.s_table) {
1021 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1022 p_index);
1023 return 1;
1024 }
1025 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1026 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1027 p_index, map->s_uspace.s_table->i_ino);
1028 }
1029
1030 if (phd->unallocSpaceBitmap.extLength) {
1031 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1032 if (!bitmap)
1033 return 1;
1034 map->s_uspace.s_bitmap = bitmap;
1035 bitmap->s_extLength = le32_to_cpu(
1036 phd->unallocSpaceBitmap.extLength);
1037 bitmap->s_extPosition = le32_to_cpu(
1038 phd->unallocSpaceBitmap.extPosition);
1039 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
1040 udf_debug("unallocSpaceBitmap (part %d) @ %d\n", p_index,
1041 bitmap->s_extPosition);
1042 }
1043
1044 if (phd->partitionIntegrityTable.extLength)
1045 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1046
1047 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001048 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001049 .logicalBlockNum = le32_to_cpu(
1050 phd->freedSpaceTable.extPosition),
1051 .partitionReferenceNum = p_index,
1052 };
1053
Pekka Enberg97e961f2008-10-15 12:29:03 +02001054 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001055 if (!map->s_fspace.s_table) {
1056 udf_debug("cannot load freedSpaceTable (part %d)\n",
1057 p_index);
1058 return 1;
1059 }
1060
1061 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1062 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1063 p_index, map->s_fspace.s_table->i_ino);
1064 }
1065
1066 if (phd->freedSpaceBitmap.extLength) {
1067 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1068 if (!bitmap)
1069 return 1;
1070 map->s_fspace.s_bitmap = bitmap;
1071 bitmap->s_extLength = le32_to_cpu(
1072 phd->freedSpaceBitmap.extLength);
1073 bitmap->s_extPosition = le32_to_cpu(
1074 phd->freedSpaceBitmap.extPosition);
1075 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
1076 udf_debug("freedSpaceBitmap (part %d) @ %d\n", p_index,
1077 bitmap->s_extPosition);
1078 }
1079 return 0;
1080}
1081
Jan Karae971b0b2009-11-30 19:47:55 +01001082static void udf_find_vat_block(struct super_block *sb, int p_index,
1083 int type1_index, sector_t start_block)
1084{
1085 struct udf_sb_info *sbi = UDF_SB(sb);
1086 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1087 sector_t vat_block;
1088 struct kernel_lb_addr ino;
1089
1090 /*
1091 * VAT file entry is in the last recorded block. Some broken disks have
1092 * it a few blocks before so try a bit harder...
1093 */
1094 ino.partitionReferenceNum = type1_index;
1095 for (vat_block = start_block;
1096 vat_block >= map->s_partition_root &&
1097 vat_block >= start_block - 3 &&
1098 !sbi->s_vat_inode; vat_block--) {
1099 ino.logicalBlockNum = vat_block - map->s_partition_root;
1100 sbi->s_vat_inode = udf_iget(sb, &ino);
1101 }
1102}
1103
Jan Kara38b74a52008-04-02 16:01:35 +02001104static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1105{
1106 struct udf_sb_info *sbi = UDF_SB(sb);
1107 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001108 struct buffer_head *bh = NULL;
1109 struct udf_inode_info *vati;
1110 uint32_t pos;
1111 struct virtualAllocationTable20 *vat20;
Jan Kara4bf17af2009-07-14 19:30:23 +02001112 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001113
Jan Karae971b0b2009-11-30 19:47:55 +01001114 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001115 if (!sbi->s_vat_inode &&
1116 sbi->s_last_block != blocks - 1) {
1117 printk(KERN_NOTICE "UDF-fs: Failed to read VAT inode from the"
1118 " last recorded block (%lu), retrying with the last "
1119 "block of the device (%lu).\n",
1120 (unsigned long)sbi->s_last_block,
1121 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001122 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001123 }
Jan Kara38b74a52008-04-02 16:01:35 +02001124 if (!sbi->s_vat_inode)
1125 return 1;
1126
1127 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001128 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001129 map->s_type_specific.s_virtual.s_num_entries =
1130 (sbi->s_vat_inode->i_size - 36) >> 2;
1131 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001132 vati = UDF_I(sbi->s_vat_inode);
1133 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1134 pos = udf_block_map(sbi->s_vat_inode, 0);
1135 bh = sb_bread(sb, pos);
1136 if (!bh)
1137 return 1;
1138 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1139 } else {
1140 vat20 = (struct virtualAllocationTable20 *)
1141 vati->i_ext.i_data;
1142 }
Jan Kara38b74a52008-04-02 16:01:35 +02001143
Jan Kara38b74a52008-04-02 16:01:35 +02001144 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001145 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001146 map->s_type_specific.s_virtual.s_num_entries =
1147 (sbi->s_vat_inode->i_size -
1148 map->s_type_specific.s_virtual.
1149 s_start_offset) >> 2;
1150 brelse(bh);
1151 }
1152 return 0;
1153}
1154
Jan Karac0eb31e2008-04-01 16:50:35 +02001155static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
Jan Karac0eb31e2008-04-01 16:50:35 +02001157 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001158 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001159 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001160 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001161 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001162 uint16_t partitionNumber;
1163 uint16_t ident;
1164 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Jan Karac0eb31e2008-04-01 16:50:35 +02001166 bh = udf_read_tagged(sb, block, block, &ident);
1167 if (!bh)
1168 return 1;
1169 if (ident != TAG_IDENT_PD)
1170 goto out_bh;
1171
1172 p = (struct partitionDesc *)bh->b_data;
1173 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001174
Jan Karabfb257a2008-04-08 20:37:21 +02001175 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001176 for (i = 0; i < sbi->s_partitions; i++) {
1177 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001178 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001179 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001180 if (map->s_partition_num == partitionNumber &&
1181 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1182 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001184 }
1185
Jan Kara38b74a52008-04-02 16:01:35 +02001186 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001187 udf_debug("Partition (%d) not found in partition map\n",
1188 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001189 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001190 }
1191
Jan Kara3fb38df2008-04-02 12:26:36 +02001192 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001193
1194 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001195 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1196 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001197 */
1198 type1_idx = i;
1199 for (i = 0; i < sbi->s_partitions; i++) {
1200 map = &sbi->s_partmaps[i];
1201
1202 if (map->s_partition_num == partitionNumber &&
1203 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001204 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1205 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001206 break;
1207 }
1208
1209 if (i >= sbi->s_partitions)
1210 goto out_bh;
1211
1212 ret = udf_fill_partdesc_info(sb, p, i);
1213 if (ret)
1214 goto out_bh;
1215
Jan Karabfb257a2008-04-08 20:37:21 +02001216 if (map->s_partition_type == UDF_METADATA_MAP25) {
1217 ret = udf_load_metadata_files(sb, i);
1218 if (ret) {
1219 printk(KERN_ERR "UDF-fs: error loading MetaData "
1220 "partition map %d\n", i);
1221 goto out_bh;
1222 }
1223 } else {
1224 ret = udf_load_vat(sb, i, type1_idx);
1225 if (ret)
1226 goto out_bh;
1227 /*
1228 * Mark filesystem read-only if we have a partition with
1229 * virtual map since we don't handle writing to it (we
1230 * overwrite blocks instead of relocating them).
1231 */
1232 sb->s_flags |= MS_RDONLY;
1233 printk(KERN_NOTICE "UDF-fs: Filesystem marked read-only "
1234 "because writing to pseudooverwrite partition is "
1235 "not implemented.\n");
1236 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001237out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001238 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001239 brelse(bh);
1240 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
Jan Karac0eb31e2008-04-01 16:50:35 +02001243static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001244 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
1246 struct logicalVolDesc *lvd;
1247 int i, j, offset;
1248 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001249 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001250 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001251 uint16_t ident;
1252 struct buffer_head *bh;
1253 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Jan Karac0eb31e2008-04-01 16:50:35 +02001255 bh = udf_read_tagged(sb, block, block, &ident);
1256 if (!bh)
1257 return 1;
1258 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 lvd = (struct logicalVolDesc *)bh->b_data;
1260
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -08001261 i = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
Jan Karac0eb31e2008-04-01 16:50:35 +02001262 if (i != 0) {
1263 ret = i;
1264 goto out_bh;
1265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001267 for (i = 0, offset = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001268 i < sbi->s_partitions && offset < le32_to_cpu(lvd->mapTableLength);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001269 i++, offset += gpm->partitionMapLength) {
1270 struct udf_part_map *map = &sbi->s_partmaps[i];
1271 gpm = (struct genericPartitionMap *)
1272 &(lvd->partitionMaps[offset]);
1273 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001274 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001275 struct genericPartitionMap1 *gpm1 =
1276 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001277 map->s_partition_type = UDF_TYPE1_MAP15;
1278 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1279 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1280 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001281 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001282 struct udfPartitionMap2 *upm2 =
1283 (struct udfPartitionMap2 *)gpm;
1284 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1285 strlen(UDF_ID_VIRTUAL))) {
1286 u16 suf =
1287 le16_to_cpu(((__le16 *)upm2->partIdent.
1288 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001289 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001290 map->s_partition_type =
1291 UDF_VIRTUAL_MAP15;
1292 map->s_partition_func =
1293 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001294 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001295 map->s_partition_type =
1296 UDF_VIRTUAL_MAP20;
1297 map->s_partition_func =
1298 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001300 } else if (!strncmp(upm2->partIdent.ident,
1301 UDF_ID_SPARABLE,
1302 strlen(UDF_ID_SPARABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 uint32_t loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 struct sparingTable *st;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001305 struct sparablePartitionMap *spm =
1306 (struct sparablePartitionMap *)gpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001308 map->s_partition_type = UDF_SPARABLE_MAP15;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001309 map->s_type_specific.s_sparing.s_packet_len =
1310 le16_to_cpu(spm->packetLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001311 for (j = 0; j < spm->numSparingTables; j++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001312 struct buffer_head *bh2;
1313
1314 loc = le32_to_cpu(
1315 spm->locSparingTable[j]);
1316 bh2 = udf_read_tagged(sb, loc, loc,
1317 &ident);
1318 map->s_type_specific.s_sparing.
1319 s_spar_map[j] = bh2;
1320
Marcin Slusarz165923f2008-02-10 11:33:08 +01001321 if (bh2 == NULL)
1322 continue;
1323
1324 st = (struct sparingTable *)bh2->b_data;
1325 if (ident != 0 || strncmp(
1326 st->sparingIdent.ident,
1327 UDF_ID_SPARING,
1328 strlen(UDF_ID_SPARING))) {
1329 brelse(bh2);
1330 map->s_type_specific.s_sparing.
1331 s_spar_map[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 }
1333 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001334 map->s_partition_func = udf_get_pblock_spar15;
Jan Karabfb257a2008-04-08 20:37:21 +02001335 } else if (!strncmp(upm2->partIdent.ident,
1336 UDF_ID_METADATA,
1337 strlen(UDF_ID_METADATA))) {
1338 struct udf_meta_data *mdata =
1339 &map->s_type_specific.s_metadata;
1340 struct metadataPartitionMap *mdm =
1341 (struct metadataPartitionMap *)
1342 &(lvd->partitionMaps[offset]);
1343 udf_debug("Parsing Logical vol part %d "
1344 "type %d id=%s\n", i, type,
1345 UDF_ID_METADATA);
1346
1347 map->s_partition_type = UDF_METADATA_MAP25;
1348 map->s_partition_func = udf_get_pblock_meta25;
1349
1350 mdata->s_meta_file_loc =
1351 le32_to_cpu(mdm->metadataFileLoc);
1352 mdata->s_mirror_file_loc =
1353 le32_to_cpu(mdm->metadataMirrorFileLoc);
1354 mdata->s_bitmap_file_loc =
1355 le32_to_cpu(mdm->metadataBitmapFileLoc);
1356 mdata->s_alloc_unit_size =
1357 le32_to_cpu(mdm->allocUnitSize);
1358 mdata->s_align_unit_size =
1359 le16_to_cpu(mdm->alignUnitSize);
1360 mdata->s_dup_md_flag =
1361 mdm->flags & 0x01;
1362
1363 udf_debug("Metadata Ident suffix=0x%x\n",
1364 (le16_to_cpu(
1365 ((__le16 *)
1366 mdm->partIdent.identSuffix)[0])));
1367 udf_debug("Metadata part num=%d\n",
1368 le16_to_cpu(mdm->partitionNum));
1369 udf_debug("Metadata part alloc unit size=%d\n",
1370 le32_to_cpu(mdm->allocUnitSize));
1371 udf_debug("Metadata file loc=%d\n",
1372 le32_to_cpu(mdm->metadataFileLoc));
1373 udf_debug("Mirror file loc=%d\n",
1374 le32_to_cpu(mdm->metadataMirrorFileLoc));
1375 udf_debug("Bitmap file loc=%d\n",
1376 le32_to_cpu(mdm->metadataBitmapFileLoc));
1377 udf_debug("Duplicate Flag: %d %d\n",
1378 mdata->s_dup_md_flag, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001379 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001380 udf_debug("Unknown ident: %s\n",
1381 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 continue;
1383 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001384 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1385 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001388 i, map->s_partition_num, type,
1389 map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
1391
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001392 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001393 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 *fileset = lelb_to_cpu(la->extLocation);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001396 udf_debug("FileSet found in LogicalVolDesc at block=%d, "
1397 "partition=%d\n", fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001398 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
1400 if (lvd->integritySeqExt.extLength)
1401 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001402
Jan Karac0eb31e2008-04-01 16:50:35 +02001403out_bh:
1404 brelse(bh);
1405 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
1408/*
1409 * udf_load_logicalvolint
1410 *
1411 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001412static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
1414 struct buffer_head *bh = NULL;
1415 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001416 struct udf_sb_info *sbi = UDF_SB(sb);
1417 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001420 (bh = udf_read_tagged(sb, loc.extLocation,
1421 loc.extLocation, &ident)) &&
1422 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001423 sbi->s_lvid_bh = bh;
1424 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001425
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001426 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001427 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001428 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001429
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001430 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001431 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001433 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001435 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001436 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438
1439/*
1440 * udf_process_sequence
1441 *
1442 * PURPOSE
1443 * Process a main/reserve volume descriptor sequence.
1444 *
1445 * PRE-CONDITIONS
1446 * sb Pointer to _locked_ superblock.
1447 * block First block of first extent of the sequence.
1448 * lastblock Lastblock of first extent of the sequence.
1449 *
1450 * HISTORY
1451 * July 1, 1997 - Andrew E. Mileski
1452 * Written, tested, and released.
1453 */
Jan Kara200a3592008-03-04 13:03:09 +01001454static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001455 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 struct buffer_head *bh = NULL;
1458 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001459 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 struct generic_desc *gd;
1461 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001462 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 uint32_t vdsn;
1464 uint16_t ident;
1465 long next_s = 0, next_e = 0;
1466
1467 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1468
Jan Karac0eb31e2008-04-01 16:50:35 +02001469 /*
1470 * Read the main descriptor sequence and find which descriptors
1471 * are in it.
1472 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001473 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001476 if (!bh) {
1477 printk(KERN_ERR "udf: Block %Lu of volume descriptor "
1478 "sequence is corrupted or we could not read "
1479 "it.\n", (unsigned long long)block);
1480 return 1;
1481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1484 gd = (struct generic_desc *)bh->b_data;
1485 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001486 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001487 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001488 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1489 if (vdsn >= curr->volDescSeqNum) {
1490 curr->volDescSeqNum = vdsn;
1491 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001492 }
1493 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001494 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001495 curr = &vds[VDS_POS_VOL_DESC_PTR];
1496 if (vdsn >= curr->volDescSeqNum) {
1497 curr->volDescSeqNum = vdsn;
1498 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001500 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001501 next_s = le32_to_cpu(
1502 vdp->nextVolDescSeqExt.extLocation);
1503 next_e = le32_to_cpu(
1504 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001505 next_e = next_e >> sb->s_blocksize_bits;
1506 next_e += next_s;
1507 }
1508 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001509 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001510 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1511 if (vdsn >= curr->volDescSeqNum) {
1512 curr->volDescSeqNum = vdsn;
1513 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001514 }
1515 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001516 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001517 curr = &vds[VDS_POS_PARTITION_DESC];
1518 if (!curr->block)
1519 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001520 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001521 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001522 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1523 if (vdsn >= curr->volDescSeqNum) {
1524 curr->volDescSeqNum = vdsn;
1525 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001526 }
1527 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001528 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001529 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1530 if (vdsn >= curr->volDescSeqNum) {
1531 curr->volDescSeqNum = vdsn;
1532 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001533 }
1534 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001535 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001536 vds[VDS_POS_TERMINATING_DESC].block = block;
1537 if (next_e) {
1538 block = next_s;
1539 lastblock = next_e;
1540 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001541 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001542 done = 1;
1543 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001545 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001547 /*
1548 * Now read interesting descriptors again and process them
1549 * in a suitable order
1550 */
1551 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
1552 printk(KERN_ERR "udf: Primary Volume Descriptor not found!\n");
1553 return 1;
1554 }
1555 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1556 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Jan Karac0eb31e2008-04-01 16:50:35 +02001558 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1559 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1560 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001561
Jan Karac0eb31e2008-04-01 16:50:35 +02001562 if (vds[VDS_POS_PARTITION_DESC].block) {
1563 /*
1564 * We rescan the whole descriptor sequence to find
1565 * partition descriptor blocks and process them.
1566 */
1567 for (block = vds[VDS_POS_PARTITION_DESC].block;
1568 block < vds[VDS_POS_TERMINATING_DESC].block;
1569 block++)
1570 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001571 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
1573
1574 return 0;
1575}
1576
Jan Kara40346002009-03-19 16:21:38 +01001577static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1578 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
Jan Kara40346002009-03-19 16:21:38 +01001580 struct anchorVolDescPtr *anchor;
1581 long main_s, main_e, reserve_s, reserve_e;
1582 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Jan Kara40346002009-03-19 16:21:38 +01001584 sbi = UDF_SB(sb);
1585 anchor = (struct anchorVolDescPtr *)bh->b_data;
1586
1587 /* Locate the main sequence */
1588 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1589 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1590 main_e = main_e >> sb->s_blocksize_bits;
1591 main_e += main_s;
1592
1593 /* Locate the reserve sequence */
1594 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1595 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1596 reserve_e = reserve_e >> sb->s_blocksize_bits;
1597 reserve_e += reserve_s;
1598
1599 /* Process the main & reserve sequences */
1600 /* responsible for finding the PartitionDesc(s) */
1601 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1602 return 1;
1603 return !udf_process_sequence(sb, reserve_s, reserve_e, fileset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
Jan Kara40346002009-03-19 16:21:38 +01001606/*
1607 * Check whether there is an anchor block in the given block and
1608 * load Volume Descriptor Sequence if so.
1609 */
1610static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1611 struct kernel_lb_addr *fileset)
1612{
1613 struct buffer_head *bh;
1614 uint16_t ident;
1615 int ret;
1616
1617 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1618 udf_fixed_to_variable(block) >=
1619 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1620 return 0;
1621
1622 bh = udf_read_tagged(sb, block, block, &ident);
1623 if (!bh)
1624 return 0;
1625 if (ident != TAG_IDENT_AVDP) {
1626 brelse(bh);
1627 return 0;
1628 }
1629 ret = udf_load_sequence(sb, bh, fileset);
1630 brelse(bh);
1631 return ret;
1632}
1633
1634/* Search for an anchor volume descriptor pointer */
1635static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1636 struct kernel_lb_addr *fileset)
1637{
1638 sector_t last[6];
1639 int i;
1640 struct udf_sb_info *sbi = UDF_SB(sb);
1641 int last_count = 0;
1642
1643 /* First try user provided anchor */
1644 if (sbi->s_anchor) {
1645 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1646 return lastblock;
1647 }
1648 /*
1649 * according to spec, anchor is in either:
1650 * block 256
1651 * lastblock-256
1652 * lastblock
1653 * however, if the disc isn't closed, it could be 512.
1654 */
1655 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1656 return lastblock;
1657 /*
1658 * The trouble is which block is the last one. Drives often misreport
1659 * this so we try various possibilities.
1660 */
1661 last[last_count++] = lastblock;
1662 if (lastblock >= 1)
1663 last[last_count++] = lastblock - 1;
1664 last[last_count++] = lastblock + 1;
1665 if (lastblock >= 2)
1666 last[last_count++] = lastblock - 2;
1667 if (lastblock >= 150)
1668 last[last_count++] = lastblock - 150;
1669 if (lastblock >= 152)
1670 last[last_count++] = lastblock - 152;
1671
1672 for (i = 0; i < last_count; i++) {
1673 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1674 sb->s_blocksize_bits)
1675 continue;
1676 if (udf_check_anchor_block(sb, last[i], fileset))
1677 return last[i];
1678 if (last[i] < 256)
1679 continue;
1680 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1681 return last[i];
1682 }
1683
1684 /* Finally try block 512 in case media is open */
1685 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1686 return last[0];
1687 return 0;
1688}
1689
1690/*
1691 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1692 * area specified by it. The function expects sbi->s_lastblock to be the last
1693 * block on the media.
1694 *
1695 * Return 1 if ok, 0 if not found.
1696 *
1697 */
1698static int udf_find_anchor(struct super_block *sb,
1699 struct kernel_lb_addr *fileset)
1700{
1701 sector_t lastblock;
1702 struct udf_sb_info *sbi = UDF_SB(sb);
1703
1704 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1705 if (lastblock)
1706 goto out;
1707
1708 /* No anchor found? Try VARCONV conversion of block numbers */
1709 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1710 /* Firstly, we try to not convert number of the last block */
1711 lastblock = udf_scan_anchors(sb,
1712 udf_variable_to_fixed(sbi->s_last_block),
1713 fileset);
1714 if (lastblock)
1715 goto out;
1716
1717 /* Secondly, we try with converted number of the last block */
1718 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1719 if (!lastblock) {
1720 /* VARCONV didn't help. Clear it. */
1721 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1722 return 0;
1723 }
1724out:
1725 sbi->s_last_block = lastblock;
1726 return 1;
1727}
1728
1729/*
1730 * Check Volume Structure Descriptor, find Anchor block and load Volume
1731 * Descriptor Sequence
1732 */
1733static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1734 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001735{
1736 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara40346002009-03-19 16:21:38 +01001737 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001738
1739 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1740 if (!silent)
1741 printk(KERN_WARNING "UDF-fs: Bad block size\n");
1742 return 0;
1743 }
1744 sbi->s_last_block = uopt->lastblock;
Jan Kara40346002009-03-19 16:21:38 +01001745 if (!uopt->novrs) {
1746 /* Check that it is NSR02 compliant */
1747 nsr_off = udf_check_vsd(sb);
1748 if (!nsr_off) {
1749 if (!silent)
1750 printk(KERN_WARNING "UDF-fs: No VRS found\n");
1751 return 0;
1752 }
1753 if (nsr_off == -1)
1754 udf_debug("Failed to read byte 32768. Assuming open "
1755 "disc. Skipping validity check\n");
1756 if (!sbi->s_last_block)
1757 sbi->s_last_block = udf_get_last_block(sb);
1758 } else {
1759 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001760 }
Jan Kara40346002009-03-19 16:21:38 +01001761
1762 /* Look for anchor block and load Volume Descriptor Sequence */
1763 sbi->s_anchor = uopt->anchor;
1764 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001765 if (!silent)
1766 printk(KERN_WARNING "UDF-fs: No anchor found\n");
1767 return 0;
1768 }
1769 return 1;
1770}
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772static void udf_open_lvid(struct super_block *sb)
1773{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001774 struct udf_sb_info *sbi = UDF_SB(sb);
1775 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001776 struct logicalVolIntegrityDesc *lvid;
1777 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001778
Marcin Slusarz165923f2008-02-10 11:33:08 +01001779 if (!bh)
1780 return;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001781 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1782 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Marcin Slusarz165923f2008-02-10 11:33:08 +01001784 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1785 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1786 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1787 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001788 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Marcin Slusarz165923f2008-02-10 11:33:08 +01001790 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001791 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001792 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001793
1794 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1795 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001796 sbi->s_lvid_dirty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
1799static void udf_close_lvid(struct super_block *sb)
1800{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001801 struct udf_sb_info *sbi = UDF_SB(sb);
1802 struct buffer_head *bh = sbi->s_lvid_bh;
1803 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001804 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001805
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001806 if (!bh)
1807 return;
1808
1809 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001810 lvidiu = udf_sb_lvidiu(sbi);
1811 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1812 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1813 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1814 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1815 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1816 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1817 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1818 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1819 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1820 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Marcin Slusarz165923f2008-02-10 11:33:08 +01001822 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001823 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001824 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001825
1826 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1827 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001828 sbi->s_lvid_dirty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001831static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1832{
1833 int i;
1834 int nr_groups = bitmap->s_nr_groups;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001835 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1836 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001837
1838 for (i = 0; i < nr_groups; i++)
1839 if (bitmap->s_block_bitmap[i])
1840 brelse(bitmap->s_block_bitmap[i]);
1841
1842 if (size <= PAGE_SIZE)
1843 kfree(bitmap);
1844 else
1845 vfree(bitmap);
1846}
1847
Jan Kara2e0838f2008-04-01 18:08:51 +02001848static void udf_free_partition(struct udf_part_map *map)
1849{
1850 int i;
Jan Karabfb257a2008-04-08 20:37:21 +02001851 struct udf_meta_data *mdata;
Jan Kara2e0838f2008-04-01 18:08:51 +02001852
1853 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1854 iput(map->s_uspace.s_table);
1855 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1856 iput(map->s_fspace.s_table);
1857 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1858 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1859 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1860 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1861 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1862 for (i = 0; i < 4; i++)
1863 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
Jan Karabfb257a2008-04-08 20:37:21 +02001864 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1865 mdata = &map->s_type_specific.s_metadata;
1866 iput(mdata->s_metadata_fe);
1867 mdata->s_metadata_fe = NULL;
1868
1869 iput(mdata->s_mirror_fe);
1870 mdata->s_mirror_fe = NULL;
1871
1872 iput(mdata->s_bitmap_fe);
1873 mdata->s_bitmap_fe = NULL;
1874 }
Jan Kara2e0838f2008-04-01 18:08:51 +02001875}
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877static int udf_fill_super(struct super_block *sb, void *options, int silent)
1878{
1879 int i;
Jan Kara40346002009-03-19 16:21:38 +01001880 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001881 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001883 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 struct udf_sb_info *sbi;
1885
1886 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1887 uopt.uid = -1;
1888 uopt.gid = -1;
1889 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001890 uopt.fmode = UDF_INVALID_MODE;
1891 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001893 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (!sbi)
1895 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001899 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Miklos Szeredi6da80892008-02-08 04:21:50 -08001901 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 goto error_out;
1903
1904 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001905 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 udf_error(sb, "udf_read_super",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001907 "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 goto error_out;
1909 }
1910#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001911 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 uopt.nls_map = load_nls_default();
1913 if (!uopt.nls_map)
1914 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1915 else
1916 udf_debug("Using default NLS map\n");
1917 }
1918#endif
1919 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1920 uopt.flags |= (1 << UDF_FLAG_UTF8);
1921
1922 fileset.logicalBlockNum = 0xFFFFFFFF;
1923 fileset.partitionReferenceNum = 0xFFFF;
1924
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001925 sbi->s_flags = uopt.flags;
1926 sbi->s_uid = uopt.uid;
1927 sbi->s_gid = uopt.gid;
1928 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001929 sbi->s_fmode = uopt.fmode;
1930 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001931 sbi->s_nls_map = uopt.nls_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001933 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001934 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001936 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001938 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 /* Fill in the rest of the superblock */
1941 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001942 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 sb->s_dirt = 0;
1945 sb->s_magic = UDF_SUPER_MAGIC;
1946 sb->s_time_gran = 1000;
1947
Jan Kara40346002009-03-19 16:21:38 +01001948 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
1949 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1950 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04001951 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara40346002009-03-19 16:21:38 +01001952 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1953 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
1954 if (!silent)
1955 printk(KERN_NOTICE
1956 "UDF-fs: Rescanning with blocksize "
1957 "%d\n", UDF_DEFAULT_BLOCKSIZE);
1958 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
1959 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1960 }
1961 }
1962 if (!ret) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001963 printk(KERN_WARNING "UDF-fs: No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 goto error_out;
1965 }
1966
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001967 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001969 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001970 struct logicalVolIntegrityDescImpUse *lvidiu =
1971 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001972 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
1973 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001974 /* uint16_t maxUDFWriteRev =
1975 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001977 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001978 printk(KERN_ERR "UDF-fs: minUDFReadRev=%x "
1979 "(max is %x)\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001980 le16_to_cpu(lvidiu->minUDFReadRev),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001981 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001983 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001986 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
1989 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
1990 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
1991 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
1992 }
1993
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001994 if (!sbi->s_partitions) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001995 printk(KERN_WARNING "UDF-fs: No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 goto error_out;
1997 }
1998
Marcin Slusarz4b111112008-02-08 04:20:36 -08001999 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2000 UDF_PART_FLAG_READ_ONLY) {
2001 printk(KERN_NOTICE "UDF-fs: Partition marked readonly; "
2002 "forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002003 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002004 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002005
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002006 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002007 printk(KERN_WARNING "UDF-fs: No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 goto error_out;
2009 }
2010
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002011 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002012 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002013 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Adrian Bunka9ca6632008-02-08 04:20:47 -08002014 udf_info("UDF: Mounting volume '%s', "
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002015 "timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarz56774802008-02-10 11:25:31 +01002016 sbi->s_volume_ident, le16_to_cpu(ts.year), ts.month, ts.day,
2017 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
2019 if (!(sb->s_flags & MS_RDONLY))
2020 udf_open_lvid(sb);
2021
2022 /* Assign the root inode */
2023 /* assign inodes by physical block number */
2024 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002025 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002026 if (!inode) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002027 printk(KERN_ERR "UDF-fs: Error in udf_iget, block=%d, "
2028 "partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002029 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 goto error_out;
2031 }
2032
2033 /* Allocate a dentry for the root inode */
2034 sb->s_root = d_alloc_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002035 if (!sb->s_root) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002036 printk(KERN_ERR "UDF-fs: Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 iput(inode);
2038 goto error_out;
2039 }
Jan Kara31170b62007-05-08 00:35:21 -07002040 sb->s_maxbytes = MAX_LFS_FILESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 return 0;
2042
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002043error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002044 if (sbi->s_vat_inode)
2045 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002046 if (sbi->s_partitions)
2047 for (i = 0; i < sbi->s_partitions; i++)
2048 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049#ifdef CONFIG_UDF_NLS
2050 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002051 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052#endif
2053 if (!(sb->s_flags & MS_RDONLY))
2054 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002055 brelse(sbi->s_lvid_bh);
2056
2057 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 kfree(sbi);
2059 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 return -EINVAL;
2062}
2063
Adrian Bunkb8145a72008-02-17 10:19:55 +02002064static void udf_error(struct super_block *sb, const char *function,
2065 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
2067 va_list args;
2068
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002069 if (!(sb->s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /* mark sb error */
2071 sb->s_dirt = 1;
2072 }
2073 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002074 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 va_end(args);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002076 printk(KERN_CRIT "UDF-fs error (device %s): %s: %s\n",
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002077 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
2080void udf_warning(struct super_block *sb, const char *function,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002081 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
2083 va_list args;
2084
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002085 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002086 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 va_end(args);
2088 printk(KERN_WARNING "UDF-fs warning (device %s): %s: %s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002089 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002092static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
2094 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002095 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002097 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002098
2099 lock_kernel();
2100
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002101 if (sbi->s_vat_inode)
2102 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002103 if (sbi->s_partitions)
2104 for (i = 0; i < sbi->s_partitions; i++)
2105 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106#ifdef CONFIG_UDF_NLS
2107 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002108 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109#endif
2110 if (!(sb->s_flags & MS_RDONLY))
2111 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002112 brelse(sbi->s_lvid_bh);
2113 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 kfree(sb->s_fs_info);
2115 sb->s_fs_info = NULL;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002116
2117 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
Jan Kara146bca72009-03-16 18:27:37 +01002120static int udf_sync_fs(struct super_block *sb, int wait)
2121{
2122 struct udf_sb_info *sbi = UDF_SB(sb);
2123
2124 mutex_lock(&sbi->s_alloc_mutex);
2125 if (sbi->s_lvid_dirty) {
2126 /*
2127 * Blockdevice will be synced later so we don't have to submit
2128 * the buffer for IO
2129 */
2130 mark_buffer_dirty(sbi->s_lvid_bh);
2131 sb->s_dirt = 0;
2132 sbi->s_lvid_dirty = 0;
2133 }
2134 mutex_unlock(&sbi->s_alloc_mutex);
2135
2136 return 0;
2137}
2138
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002139static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
David Howells726c3342006-06-23 02:02:58 -07002141 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002142 struct udf_sb_info *sbi = UDF_SB(sb);
2143 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002144 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002145
2146 if (sbi->s_lvid_bh != NULL)
2147 lvidiu = udf_sb_lvidiu(sbi);
2148 else
2149 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 buf->f_type = UDF_SUPER_MAGIC;
2152 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002153 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 buf->f_bfree = udf_count_free(sb);
2155 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002156 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2157 le32_to_cpu(lvidiu->numDirs)) : 0)
2158 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002160 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002161 buf->f_fsid.val[0] = (u32)id;
2162 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164 return 0;
2165}
2166
Marcin Slusarz4b111112008-02-08 04:20:36 -08002167static unsigned int udf_count_free_bitmap(struct super_block *sb,
2168 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
2170 struct buffer_head *bh = NULL;
2171 unsigned int accum = 0;
2172 int index;
2173 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002174 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 uint8_t *ptr;
2177 uint16_t ident;
2178 struct spaceBitmapDesc *bm;
2179
2180 lock_kernel();
2181
2182 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002183 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002184 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002186 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 printk(KERN_ERR "udf: udf_count_free failed\n");
2188 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002189 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002190 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 printk(KERN_ERR "udf: udf_count_free failed\n");
2192 goto out;
2193 }
2194
2195 bm = (struct spaceBitmapDesc *)bh->b_data;
2196 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002197 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2198 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002200 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002201 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2202 accum += bitmap_weight((const unsigned long *)(ptr + index),
2203 cur_bytes * 8);
2204 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002205 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002206 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002207 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002209 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 udf_debug("read failed\n");
2211 goto out;
2212 }
2213 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002214 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 }
2216 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002217 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002219out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 unlock_kernel();
2221
2222 return accum;
2223}
2224
Marcin Slusarz4b111112008-02-08 04:20:36 -08002225static unsigned int udf_count_free_table(struct super_block *sb,
2226 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
2228 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002229 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002230 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002232 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234 lock_kernel();
2235
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002236 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002237 epos.offset = sizeof(struct unallocSpaceEntry);
2238 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002240 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002242
Jan Kara3bf25cb2007-05-08 00:35:16 -07002243 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 unlock_kernel();
2246
2247 return accum;
2248}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002249
2250static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
2252 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002253 struct udf_sb_info *sbi;
2254 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002256 sbi = UDF_SB(sb);
2257 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002258 struct logicalVolIntegrityDesc *lvid =
2259 (struct logicalVolIntegrityDesc *)
2260 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002261 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002262 accum = le32_to_cpu(
2263 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 if (accum == 0xFFFFFFFF)
2265 accum = 0;
2266 }
2267 }
2268
2269 if (accum)
2270 return accum;
2271
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002272 map = &sbi->s_partmaps[sbi->s_partition];
2273 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002274 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002275 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002277 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002278 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002279 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
2281 if (accum)
2282 return accum;
2283
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002284 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002285 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002286 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002288 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002289 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002290 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 }
2292
2293 return accum;
2294}