blob: 04802cc39b18d8f8016c3ec6b0dd052045df8031 [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800561 uopt.flags = sbi->s_flags;
562 uopt.uid = sbi->s_uid;
563 uopt.gid = sbi->s_gid;
564 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100565 uopt.fmode = sbi->s_fmode;
566 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Miklos Szeredi6da80892008-02-08 04:21:50 -0800568 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return -EINVAL;
570
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800571 sbi->s_flags = uopt.flags;
572 sbi->s_uid = uopt.uid;
573 sbi->s_gid = uopt.gid;
574 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100575 sbi->s_fmode = uopt.fmode;
576 sbi->s_dmode = uopt.dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800578 if (sbi->s_lvid_bh) {
579 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (write_rev > UDF_MAX_WRITE_VERSION)
581 *flags |= MS_RDONLY;
582 }
583
584 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
585 return 0;
586 if (*flags & MS_RDONLY)
587 udf_close_lvid(sb);
588 else
589 udf_open_lvid(sb);
590
591 return 0;
592}
593
Jan Kara40346002009-03-19 16:21:38 +0100594/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
595/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
596static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200599 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 int sectorsize;
601 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700602 int nsr02 = 0;
603 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800604 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800606 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (sb->s_blocksize < sizeof(struct volStructDesc))
608 sectorsize = sizeof(struct volStructDesc);
609 else
610 sectorsize = sb->s_blocksize;
611
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800612 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200615 (unsigned int)(sector >> sb->s_blocksize_bits),
616 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700618 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /* Read a block */
620 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
621 if (!bh)
622 break;
623
624 /* Look for ISO descriptors */
625 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800626 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700628 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700629 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800631 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
632 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700633 switch (vsd->structType) {
634 case 0:
635 udf_debug("ISO9660 Boot Record found\n");
636 break;
637 case 1:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800638 udf_debug("ISO9660 Primary Volume Descriptor "
639 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700640 break;
641 case 2:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800642 udf_debug("ISO9660 Supplementary Volume "
643 "Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700644 break;
645 case 3:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800646 udf_debug("ISO9660 Volume Partition Descriptor "
647 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700648 break;
649 case 255:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800650 udf_debug("ISO9660 Volume Descriptor Set "
651 "Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700652 break;
653 default:
654 udf_debug("ISO9660 VRS (%u) found\n",
655 vsd->structType);
656 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800658 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
659 VSD_STD_ID_LEN))
660 ; /* nothing */
661 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
662 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700663 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800665 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
666 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800668 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
669 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700671 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
673
674 if (nsr03)
675 return nsr03;
676 else if (nsr02)
677 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800678 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return -1;
680 else
681 return 0;
682}
683
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800684static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200685 struct kernel_lb_addr *fileset,
686 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 struct buffer_head *bh = NULL;
689 long lastblock;
690 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800691 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700694 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200695 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700697 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700699 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700700 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return 1;
702 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800706 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800707 if (!bh) {
708 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200709 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700711/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700713
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800714 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700715 (newfileset.partitionReferenceNum != 0xFFFF &&
716 fileset->logicalBlockNum == 0xFFFFFFFF &&
717 fileset->partitionReferenceNum == 0xFFFF);
718 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800719 lastblock = sbi->s_partmaps
720 [newfileset.partitionReferenceNum]
721 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 newfileset.logicalBlockNum = 0;
723
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700724 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200725 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800726 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700727 if (!bh) {
728 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 continue;
730 }
731
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700732 switch (ident) {
733 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700734 {
735 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800736 sp = (struct spaceBitmapDesc *)
737 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700738 newfileset.logicalBlockNum += 1 +
739 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800740 sizeof(struct spaceBitmapDesc)
741 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700742 brelse(bh);
743 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700745 case TAG_IDENT_FSD:
746 *fileset = newfileset;
747 break;
748 default:
749 newfileset.logicalBlockNum++;
750 brelse(bh);
751 bh = NULL;
752 break;
753 }
754 } while (newfileset.logicalBlockNum < lastblock &&
755 fileset->logicalBlockNum == 0xFFFFFFFF &&
756 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758 }
759
760 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700761 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700763 fileset->logicalBlockNum,
764 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800766 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700768 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return 0;
770 }
771 return 1;
772}
773
Jan Karac0eb31e2008-04-01 16:50:35 +0200774static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100777 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200778 struct buffer_head *bh;
779 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100780 int ret = 1;
781
782 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
783 if (!instr)
784 return 1;
785
786 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
787 if (!outstr)
788 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200789
790 bh = udf_read_tagged(sb, block, block, &ident);
791 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100792 goto out2;
793
Jan Karac0eb31e2008-04-01 16:50:35 +0200794 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 pvoldesc = (struct primaryVolDesc *)bh->b_data;
797
Marcin Slusarz56774802008-02-10 11:25:31 +0100798 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
799 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100800#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200801 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +0100802 udf_debug("recording time %04u/%02u/%02u"
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800803 " %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100804 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
805 ts->minute, le16_to_cpu(ts->typeAndTimezone));
806#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100809 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
810 if (udf_CS0toUTF8(outstr, instr)) {
811 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
812 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800813 udf_debug("volIdent[] = '%s'\n",
814 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100817 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
818 if (udf_CS0toUTF8(outstr, instr))
819 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200820
821 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100822 ret = 0;
823out2:
824 kfree(outstr);
825out1:
826 kfree(instr);
827 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Jan Karabfb257a2008-04-08 20:37:21 +0200830static int udf_load_metadata_files(struct super_block *sb, int partition)
831{
832 struct udf_sb_info *sbi = UDF_SB(sb);
833 struct udf_part_map *map;
834 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200835 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200836 int fe_error = 0;
837
838 map = &sbi->s_partmaps[partition];
839 mdata = &map->s_type_specific.s_metadata;
840
841 /* metadata address */
842 addr.logicalBlockNum = mdata->s_meta_file_loc;
843 addr.partitionReferenceNum = map->s_partition_num;
844
845 udf_debug("Metadata file location: block = %d part = %d\n",
846 addr.logicalBlockNum, addr.partitionReferenceNum);
847
Pekka Enberg97e961f2008-10-15 12:29:03 +0200848 mdata->s_metadata_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200849
850 if (mdata->s_metadata_fe == NULL) {
851 udf_warning(sb, __func__, "metadata inode efe not found, "
852 "will try mirror inode.");
853 fe_error = 1;
854 } else if (UDF_I(mdata->s_metadata_fe)->i_alloc_type !=
855 ICBTAG_FLAG_AD_SHORT) {
856 udf_warning(sb, __func__, "metadata inode efe does not have "
857 "short allocation descriptors!");
858 fe_error = 1;
859 iput(mdata->s_metadata_fe);
860 mdata->s_metadata_fe = NULL;
861 }
862
863 /* mirror file entry */
864 addr.logicalBlockNum = mdata->s_mirror_file_loc;
865 addr.partitionReferenceNum = map->s_partition_num;
866
867 udf_debug("Mirror metadata file location: block = %d part = %d\n",
868 addr.logicalBlockNum, addr.partitionReferenceNum);
869
Pekka Enberg97e961f2008-10-15 12:29:03 +0200870 mdata->s_mirror_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200871
872 if (mdata->s_mirror_fe == NULL) {
873 if (fe_error) {
874 udf_error(sb, __func__, "mirror inode efe not found "
875 "and metadata inode is missing too, exiting...");
876 goto error_exit;
877 } else
878 udf_warning(sb, __func__, "mirror inode efe not found,"
879 " but metadata inode is OK");
880 } else if (UDF_I(mdata->s_mirror_fe)->i_alloc_type !=
881 ICBTAG_FLAG_AD_SHORT) {
882 udf_warning(sb, __func__, "mirror inode efe does not have "
883 "short allocation descriptors!");
884 iput(mdata->s_mirror_fe);
885 mdata->s_mirror_fe = NULL;
886 if (fe_error)
887 goto error_exit;
888 }
889
890 /*
891 * bitmap file entry
892 * Note:
893 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
894 */
895 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
896 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
897 addr.partitionReferenceNum = map->s_partition_num;
898
899 udf_debug("Bitmap file location: block = %d part = %d\n",
900 addr.logicalBlockNum, addr.partitionReferenceNum);
901
Pekka Enberg97e961f2008-10-15 12:29:03 +0200902 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200903
904 if (mdata->s_bitmap_fe == NULL) {
905 if (sb->s_flags & MS_RDONLY)
906 udf_warning(sb, __func__, "bitmap inode efe "
907 "not found but it's ok since the disc"
908 " is mounted read-only");
909 else {
910 udf_error(sb, __func__, "bitmap inode efe not "
911 "found and attempted read-write mount");
912 goto error_exit;
913 }
914 }
915 }
916
917 udf_debug("udf_load_metadata_files Ok\n");
918
919 return 0;
920
921error_exit:
922 return 1;
923}
924
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700925static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200926 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 struct fileSetDesc *fset;
929
930 fset = (struct fileSetDesc *)bh->b_data;
931
932 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
933
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800934 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700936 udf_debug("Rootdir at block=%d, partition=%d\n",
937 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800940int udf_compute_nr_groups(struct super_block *sb, u32 partition)
941{
942 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +0100943 return DIV_ROUND_UP(map->s_partition_len +
944 (sizeof(struct spaceBitmapDesc) << 3),
945 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800946}
947
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800948static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
949{
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800950 struct udf_bitmap *bitmap;
951 int nr_groups;
952 int size;
953
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800954 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800955 size = sizeof(struct udf_bitmap) +
956 (sizeof(struct buffer_head *) * nr_groups);
957
958 if (size <= PAGE_SIZE)
959 bitmap = kmalloc(size, GFP_KERNEL);
960 else
961 bitmap = vmalloc(size); /* TODO: get rid of vmalloc */
962
963 if (bitmap == NULL) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700964 udf_error(sb, __func__,
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800965 "Unable to allocate space for bitmap "
966 "and %d buffer_head pointers", nr_groups);
967 return NULL;
968 }
969
970 memset(bitmap, 0x00, size);
971 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
972 bitmap->s_nr_groups = nr_groups;
973 return bitmap;
974}
975
Jan Kara3fb38df2008-04-02 12:26:36 +0200976static int udf_fill_partdesc_info(struct super_block *sb,
977 struct partitionDesc *p, int p_index)
978{
979 struct udf_part_map *map;
980 struct udf_sb_info *sbi = UDF_SB(sb);
981 struct partitionHeaderDesc *phd;
982
983 map = &sbi->s_partmaps[p_index];
984
985 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
986 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
987
988 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
989 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
990 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
991 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
992 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
993 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
994 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
995 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
996
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200997 udf_debug("Partition (%d type %x) starts at physical %d, "
998 "block length %d\n", p_index,
Jan Kara3fb38df2008-04-02 12:26:36 +0200999 map->s_partition_type, map->s_partition_root,
1000 map->s_partition_len);
1001
1002 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1003 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1004 return 0;
1005
1006 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1007 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001008 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001009 .logicalBlockNum = le32_to_cpu(
1010 phd->unallocSpaceTable.extPosition),
1011 .partitionReferenceNum = p_index,
1012 };
1013
Pekka Enberg97e961f2008-10-15 12:29:03 +02001014 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001015 if (!map->s_uspace.s_table) {
1016 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1017 p_index);
1018 return 1;
1019 }
1020 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1021 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1022 p_index, map->s_uspace.s_table->i_ino);
1023 }
1024
1025 if (phd->unallocSpaceBitmap.extLength) {
1026 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1027 if (!bitmap)
1028 return 1;
1029 map->s_uspace.s_bitmap = bitmap;
1030 bitmap->s_extLength = le32_to_cpu(
1031 phd->unallocSpaceBitmap.extLength);
1032 bitmap->s_extPosition = le32_to_cpu(
1033 phd->unallocSpaceBitmap.extPosition);
1034 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
1035 udf_debug("unallocSpaceBitmap (part %d) @ %d\n", p_index,
1036 bitmap->s_extPosition);
1037 }
1038
1039 if (phd->partitionIntegrityTable.extLength)
1040 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1041
1042 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001043 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001044 .logicalBlockNum = le32_to_cpu(
1045 phd->freedSpaceTable.extPosition),
1046 .partitionReferenceNum = p_index,
1047 };
1048
Pekka Enberg97e961f2008-10-15 12:29:03 +02001049 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001050 if (!map->s_fspace.s_table) {
1051 udf_debug("cannot load freedSpaceTable (part %d)\n",
1052 p_index);
1053 return 1;
1054 }
1055
1056 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1057 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1058 p_index, map->s_fspace.s_table->i_ino);
1059 }
1060
1061 if (phd->freedSpaceBitmap.extLength) {
1062 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1063 if (!bitmap)
1064 return 1;
1065 map->s_fspace.s_bitmap = bitmap;
1066 bitmap->s_extLength = le32_to_cpu(
1067 phd->freedSpaceBitmap.extLength);
1068 bitmap->s_extPosition = le32_to_cpu(
1069 phd->freedSpaceBitmap.extPosition);
1070 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
1071 udf_debug("freedSpaceBitmap (part %d) @ %d\n", p_index,
1072 bitmap->s_extPosition);
1073 }
1074 return 0;
1075}
1076
Jan Kara38b74a52008-04-02 16:01:35 +02001077static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1078{
1079 struct udf_sb_info *sbi = UDF_SB(sb);
1080 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001081 struct kernel_lb_addr ino;
Jan Karafa5e0812008-04-08 02:08:53 +02001082 struct buffer_head *bh = NULL;
1083 struct udf_inode_info *vati;
1084 uint32_t pos;
1085 struct virtualAllocationTable20 *vat20;
Jan Kara38b74a52008-04-02 16:01:35 +02001086
1087 /* VAT file entry is in the last recorded block */
1088 ino.partitionReferenceNum = type1_index;
1089 ino.logicalBlockNum = sbi->s_last_block - map->s_partition_root;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001090 sbi->s_vat_inode = udf_iget(sb, &ino);
Jan Kara38b74a52008-04-02 16:01:35 +02001091 if (!sbi->s_vat_inode)
1092 return 1;
1093
1094 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001095 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001096 map->s_type_specific.s_virtual.s_num_entries =
1097 (sbi->s_vat_inode->i_size - 36) >> 2;
1098 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001099 vati = UDF_I(sbi->s_vat_inode);
1100 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1101 pos = udf_block_map(sbi->s_vat_inode, 0);
1102 bh = sb_bread(sb, pos);
1103 if (!bh)
1104 return 1;
1105 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1106 } else {
1107 vat20 = (struct virtualAllocationTable20 *)
1108 vati->i_ext.i_data;
1109 }
Jan Kara38b74a52008-04-02 16:01:35 +02001110
Jan Kara38b74a52008-04-02 16:01:35 +02001111 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001112 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001113 map->s_type_specific.s_virtual.s_num_entries =
1114 (sbi->s_vat_inode->i_size -
1115 map->s_type_specific.s_virtual.
1116 s_start_offset) >> 2;
1117 brelse(bh);
1118 }
1119 return 0;
1120}
1121
Jan Karac0eb31e2008-04-01 16:50:35 +02001122static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Jan Karac0eb31e2008-04-01 16:50:35 +02001124 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001125 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001126 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001127 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001128 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001129 uint16_t partitionNumber;
1130 uint16_t ident;
1131 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Jan Karac0eb31e2008-04-01 16:50:35 +02001133 bh = udf_read_tagged(sb, block, block, &ident);
1134 if (!bh)
1135 return 1;
1136 if (ident != TAG_IDENT_PD)
1137 goto out_bh;
1138
1139 p = (struct partitionDesc *)bh->b_data;
1140 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001141
Jan Karabfb257a2008-04-08 20:37:21 +02001142 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001143 for (i = 0; i < sbi->s_partitions; i++) {
1144 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001145 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001146 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001147 if (map->s_partition_num == partitionNumber &&
1148 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1149 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001151 }
1152
Jan Kara38b74a52008-04-02 16:01:35 +02001153 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001154 udf_debug("Partition (%d) not found in partition map\n",
1155 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001156 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001157 }
1158
Jan Kara3fb38df2008-04-02 12:26:36 +02001159 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001160
1161 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001162 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1163 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001164 */
1165 type1_idx = i;
1166 for (i = 0; i < sbi->s_partitions; i++) {
1167 map = &sbi->s_partmaps[i];
1168
1169 if (map->s_partition_num == partitionNumber &&
1170 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001171 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1172 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001173 break;
1174 }
1175
1176 if (i >= sbi->s_partitions)
1177 goto out_bh;
1178
1179 ret = udf_fill_partdesc_info(sb, p, i);
1180 if (ret)
1181 goto out_bh;
1182
Jan Karabfb257a2008-04-08 20:37:21 +02001183 if (map->s_partition_type == UDF_METADATA_MAP25) {
1184 ret = udf_load_metadata_files(sb, i);
1185 if (ret) {
1186 printk(KERN_ERR "UDF-fs: error loading MetaData "
1187 "partition map %d\n", i);
1188 goto out_bh;
1189 }
1190 } else {
1191 ret = udf_load_vat(sb, i, type1_idx);
1192 if (ret)
1193 goto out_bh;
1194 /*
1195 * Mark filesystem read-only if we have a partition with
1196 * virtual map since we don't handle writing to it (we
1197 * overwrite blocks instead of relocating them).
1198 */
1199 sb->s_flags |= MS_RDONLY;
1200 printk(KERN_NOTICE "UDF-fs: Filesystem marked read-only "
1201 "because writing to pseudooverwrite partition is "
1202 "not implemented.\n");
1203 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001204out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001205 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001206 brelse(bh);
1207 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
Jan Karac0eb31e2008-04-01 16:50:35 +02001210static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001211 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
1213 struct logicalVolDesc *lvd;
1214 int i, j, offset;
1215 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001216 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001217 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001218 uint16_t ident;
1219 struct buffer_head *bh;
1220 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Jan Karac0eb31e2008-04-01 16:50:35 +02001222 bh = udf_read_tagged(sb, block, block, &ident);
1223 if (!bh)
1224 return 1;
1225 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 lvd = (struct logicalVolDesc *)bh->b_data;
1227
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -08001228 i = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
Jan Karac0eb31e2008-04-01 16:50:35 +02001229 if (i != 0) {
1230 ret = i;
1231 goto out_bh;
1232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001234 for (i = 0, offset = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001235 i < sbi->s_partitions && offset < le32_to_cpu(lvd->mapTableLength);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001236 i++, offset += gpm->partitionMapLength) {
1237 struct udf_part_map *map = &sbi->s_partmaps[i];
1238 gpm = (struct genericPartitionMap *)
1239 &(lvd->partitionMaps[offset]);
1240 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001241 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001242 struct genericPartitionMap1 *gpm1 =
1243 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001244 map->s_partition_type = UDF_TYPE1_MAP15;
1245 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1246 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1247 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001248 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001249 struct udfPartitionMap2 *upm2 =
1250 (struct udfPartitionMap2 *)gpm;
1251 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1252 strlen(UDF_ID_VIRTUAL))) {
1253 u16 suf =
1254 le16_to_cpu(((__le16 *)upm2->partIdent.
1255 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001256 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001257 map->s_partition_type =
1258 UDF_VIRTUAL_MAP15;
1259 map->s_partition_func =
1260 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001261 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001262 map->s_partition_type =
1263 UDF_VIRTUAL_MAP20;
1264 map->s_partition_func =
1265 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001267 } else if (!strncmp(upm2->partIdent.ident,
1268 UDF_ID_SPARABLE,
1269 strlen(UDF_ID_SPARABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 uint32_t loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 struct sparingTable *st;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001272 struct sparablePartitionMap *spm =
1273 (struct sparablePartitionMap *)gpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001275 map->s_partition_type = UDF_SPARABLE_MAP15;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001276 map->s_type_specific.s_sparing.s_packet_len =
1277 le16_to_cpu(spm->packetLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001278 for (j = 0; j < spm->numSparingTables; j++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001279 struct buffer_head *bh2;
1280
1281 loc = le32_to_cpu(
1282 spm->locSparingTable[j]);
1283 bh2 = udf_read_tagged(sb, loc, loc,
1284 &ident);
1285 map->s_type_specific.s_sparing.
1286 s_spar_map[j] = bh2;
1287
Marcin Slusarz165923f2008-02-10 11:33:08 +01001288 if (bh2 == NULL)
1289 continue;
1290
1291 st = (struct sparingTable *)bh2->b_data;
1292 if (ident != 0 || strncmp(
1293 st->sparingIdent.ident,
1294 UDF_ID_SPARING,
1295 strlen(UDF_ID_SPARING))) {
1296 brelse(bh2);
1297 map->s_type_specific.s_sparing.
1298 s_spar_map[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
1300 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001301 map->s_partition_func = udf_get_pblock_spar15;
Jan Karabfb257a2008-04-08 20:37:21 +02001302 } else if (!strncmp(upm2->partIdent.ident,
1303 UDF_ID_METADATA,
1304 strlen(UDF_ID_METADATA))) {
1305 struct udf_meta_data *mdata =
1306 &map->s_type_specific.s_metadata;
1307 struct metadataPartitionMap *mdm =
1308 (struct metadataPartitionMap *)
1309 &(lvd->partitionMaps[offset]);
1310 udf_debug("Parsing Logical vol part %d "
1311 "type %d id=%s\n", i, type,
1312 UDF_ID_METADATA);
1313
1314 map->s_partition_type = UDF_METADATA_MAP25;
1315 map->s_partition_func = udf_get_pblock_meta25;
1316
1317 mdata->s_meta_file_loc =
1318 le32_to_cpu(mdm->metadataFileLoc);
1319 mdata->s_mirror_file_loc =
1320 le32_to_cpu(mdm->metadataMirrorFileLoc);
1321 mdata->s_bitmap_file_loc =
1322 le32_to_cpu(mdm->metadataBitmapFileLoc);
1323 mdata->s_alloc_unit_size =
1324 le32_to_cpu(mdm->allocUnitSize);
1325 mdata->s_align_unit_size =
1326 le16_to_cpu(mdm->alignUnitSize);
1327 mdata->s_dup_md_flag =
1328 mdm->flags & 0x01;
1329
1330 udf_debug("Metadata Ident suffix=0x%x\n",
1331 (le16_to_cpu(
1332 ((__le16 *)
1333 mdm->partIdent.identSuffix)[0])));
1334 udf_debug("Metadata part num=%d\n",
1335 le16_to_cpu(mdm->partitionNum));
1336 udf_debug("Metadata part alloc unit size=%d\n",
1337 le32_to_cpu(mdm->allocUnitSize));
1338 udf_debug("Metadata file loc=%d\n",
1339 le32_to_cpu(mdm->metadataFileLoc));
1340 udf_debug("Mirror file loc=%d\n",
1341 le32_to_cpu(mdm->metadataMirrorFileLoc));
1342 udf_debug("Bitmap file loc=%d\n",
1343 le32_to_cpu(mdm->metadataBitmapFileLoc));
1344 udf_debug("Duplicate Flag: %d %d\n",
1345 mdata->s_dup_md_flag, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001346 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001347 udf_debug("Unknown ident: %s\n",
1348 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 continue;
1350 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001351 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1352 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
1354 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001355 i, map->s_partition_num, type,
1356 map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001359 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001360 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362 *fileset = lelb_to_cpu(la->extLocation);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001363 udf_debug("FileSet found in LogicalVolDesc at block=%d, "
1364 "partition=%d\n", fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001365 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367 if (lvd->integritySeqExt.extLength)
1368 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001369
Jan Karac0eb31e2008-04-01 16:50:35 +02001370out_bh:
1371 brelse(bh);
1372 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373}
1374
1375/*
1376 * udf_load_logicalvolint
1377 *
1378 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001379static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 struct buffer_head *bh = NULL;
1382 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001383 struct udf_sb_info *sbi = UDF_SB(sb);
1384 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001387 (bh = udf_read_tagged(sb, loc.extLocation,
1388 loc.extLocation, &ident)) &&
1389 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001390 sbi->s_lvid_bh = bh;
1391 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001392
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001393 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001394 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001395 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001396
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001397 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001398 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001400 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001402 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001403 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
1406/*
1407 * udf_process_sequence
1408 *
1409 * PURPOSE
1410 * Process a main/reserve volume descriptor sequence.
1411 *
1412 * PRE-CONDITIONS
1413 * sb Pointer to _locked_ superblock.
1414 * block First block of first extent of the sequence.
1415 * lastblock Lastblock of first extent of the sequence.
1416 *
1417 * HISTORY
1418 * July 1, 1997 - Andrew E. Mileski
1419 * Written, tested, and released.
1420 */
Jan Kara200a3592008-03-04 13:03:09 +01001421static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001422 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 struct buffer_head *bh = NULL;
1425 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001426 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 struct generic_desc *gd;
1428 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001429 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 uint32_t vdsn;
1431 uint16_t ident;
1432 long next_s = 0, next_e = 0;
1433
1434 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1435
Jan Karac0eb31e2008-04-01 16:50:35 +02001436 /*
1437 * Read the main descriptor sequence and find which descriptors
1438 * are in it.
1439 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001440 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001443 if (!bh) {
1444 printk(KERN_ERR "udf: Block %Lu of volume descriptor "
1445 "sequence is corrupted or we could not read "
1446 "it.\n", (unsigned long long)block);
1447 return 1;
1448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1451 gd = (struct generic_desc *)bh->b_data;
1452 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001453 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001454 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001455 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1456 if (vdsn >= curr->volDescSeqNum) {
1457 curr->volDescSeqNum = vdsn;
1458 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001459 }
1460 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001461 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001462 curr = &vds[VDS_POS_VOL_DESC_PTR];
1463 if (vdsn >= curr->volDescSeqNum) {
1464 curr->volDescSeqNum = vdsn;
1465 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001467 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001468 next_s = le32_to_cpu(
1469 vdp->nextVolDescSeqExt.extLocation);
1470 next_e = le32_to_cpu(
1471 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001472 next_e = next_e >> sb->s_blocksize_bits;
1473 next_e += next_s;
1474 }
1475 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001476 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001477 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1478 if (vdsn >= curr->volDescSeqNum) {
1479 curr->volDescSeqNum = vdsn;
1480 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001481 }
1482 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001483 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001484 curr = &vds[VDS_POS_PARTITION_DESC];
1485 if (!curr->block)
1486 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001487 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001488 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001489 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1490 if (vdsn >= curr->volDescSeqNum) {
1491 curr->volDescSeqNum = vdsn;
1492 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001493 }
1494 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001495 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001496 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1497 if (vdsn >= curr->volDescSeqNum) {
1498 curr->volDescSeqNum = vdsn;
1499 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001500 }
1501 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001502 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001503 vds[VDS_POS_TERMINATING_DESC].block = block;
1504 if (next_e) {
1505 block = next_s;
1506 lastblock = next_e;
1507 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001508 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001509 done = 1;
1510 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001512 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001514 /*
1515 * Now read interesting descriptors again and process them
1516 * in a suitable order
1517 */
1518 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
1519 printk(KERN_ERR "udf: Primary Volume Descriptor not found!\n");
1520 return 1;
1521 }
1522 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1523 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Jan Karac0eb31e2008-04-01 16:50:35 +02001525 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1526 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1527 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001528
Jan Karac0eb31e2008-04-01 16:50:35 +02001529 if (vds[VDS_POS_PARTITION_DESC].block) {
1530 /*
1531 * We rescan the whole descriptor sequence to find
1532 * partition descriptor blocks and process them.
1533 */
1534 for (block = vds[VDS_POS_PARTITION_DESC].block;
1535 block < vds[VDS_POS_TERMINATING_DESC].block;
1536 block++)
1537 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001538 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 }
1540
1541 return 0;
1542}
1543
Jan Kara40346002009-03-19 16:21:38 +01001544static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1545 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Jan Kara40346002009-03-19 16:21:38 +01001547 struct anchorVolDescPtr *anchor;
1548 long main_s, main_e, reserve_s, reserve_e;
1549 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Jan Kara40346002009-03-19 16:21:38 +01001551 sbi = UDF_SB(sb);
1552 anchor = (struct anchorVolDescPtr *)bh->b_data;
1553
1554 /* Locate the main sequence */
1555 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1556 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1557 main_e = main_e >> sb->s_blocksize_bits;
1558 main_e += main_s;
1559
1560 /* Locate the reserve sequence */
1561 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1562 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1563 reserve_e = reserve_e >> sb->s_blocksize_bits;
1564 reserve_e += reserve_s;
1565
1566 /* Process the main & reserve sequences */
1567 /* responsible for finding the PartitionDesc(s) */
1568 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1569 return 1;
1570 return !udf_process_sequence(sb, reserve_s, reserve_e, fileset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571}
1572
Jan Kara40346002009-03-19 16:21:38 +01001573/*
1574 * Check whether there is an anchor block in the given block and
1575 * load Volume Descriptor Sequence if so.
1576 */
1577static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1578 struct kernel_lb_addr *fileset)
1579{
1580 struct buffer_head *bh;
1581 uint16_t ident;
1582 int ret;
1583
1584 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1585 udf_fixed_to_variable(block) >=
1586 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1587 return 0;
1588
1589 bh = udf_read_tagged(sb, block, block, &ident);
1590 if (!bh)
1591 return 0;
1592 if (ident != TAG_IDENT_AVDP) {
1593 brelse(bh);
1594 return 0;
1595 }
1596 ret = udf_load_sequence(sb, bh, fileset);
1597 brelse(bh);
1598 return ret;
1599}
1600
1601/* Search for an anchor volume descriptor pointer */
1602static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1603 struct kernel_lb_addr *fileset)
1604{
1605 sector_t last[6];
1606 int i;
1607 struct udf_sb_info *sbi = UDF_SB(sb);
1608 int last_count = 0;
1609
1610 /* First try user provided anchor */
1611 if (sbi->s_anchor) {
1612 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1613 return lastblock;
1614 }
1615 /*
1616 * according to spec, anchor is in either:
1617 * block 256
1618 * lastblock-256
1619 * lastblock
1620 * however, if the disc isn't closed, it could be 512.
1621 */
1622 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1623 return lastblock;
1624 /*
1625 * The trouble is which block is the last one. Drives often misreport
1626 * this so we try various possibilities.
1627 */
1628 last[last_count++] = lastblock;
1629 if (lastblock >= 1)
1630 last[last_count++] = lastblock - 1;
1631 last[last_count++] = lastblock + 1;
1632 if (lastblock >= 2)
1633 last[last_count++] = lastblock - 2;
1634 if (lastblock >= 150)
1635 last[last_count++] = lastblock - 150;
1636 if (lastblock >= 152)
1637 last[last_count++] = lastblock - 152;
1638
1639 for (i = 0; i < last_count; i++) {
1640 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1641 sb->s_blocksize_bits)
1642 continue;
1643 if (udf_check_anchor_block(sb, last[i], fileset))
1644 return last[i];
1645 if (last[i] < 256)
1646 continue;
1647 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1648 return last[i];
1649 }
1650
1651 /* Finally try block 512 in case media is open */
1652 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1653 return last[0];
1654 return 0;
1655}
1656
1657/*
1658 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1659 * area specified by it. The function expects sbi->s_lastblock to be the last
1660 * block on the media.
1661 *
1662 * Return 1 if ok, 0 if not found.
1663 *
1664 */
1665static int udf_find_anchor(struct super_block *sb,
1666 struct kernel_lb_addr *fileset)
1667{
1668 sector_t lastblock;
1669 struct udf_sb_info *sbi = UDF_SB(sb);
1670
1671 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1672 if (lastblock)
1673 goto out;
1674
1675 /* No anchor found? Try VARCONV conversion of block numbers */
1676 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1677 /* Firstly, we try to not convert number of the last block */
1678 lastblock = udf_scan_anchors(sb,
1679 udf_variable_to_fixed(sbi->s_last_block),
1680 fileset);
1681 if (lastblock)
1682 goto out;
1683
1684 /* Secondly, we try with converted number of the last block */
1685 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1686 if (!lastblock) {
1687 /* VARCONV didn't help. Clear it. */
1688 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1689 return 0;
1690 }
1691out:
1692 sbi->s_last_block = lastblock;
1693 return 1;
1694}
1695
1696/*
1697 * Check Volume Structure Descriptor, find Anchor block and load Volume
1698 * Descriptor Sequence
1699 */
1700static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1701 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001702{
1703 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara40346002009-03-19 16:21:38 +01001704 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001705
1706 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1707 if (!silent)
1708 printk(KERN_WARNING "UDF-fs: Bad block size\n");
1709 return 0;
1710 }
1711 sbi->s_last_block = uopt->lastblock;
Jan Kara40346002009-03-19 16:21:38 +01001712 if (!uopt->novrs) {
1713 /* Check that it is NSR02 compliant */
1714 nsr_off = udf_check_vsd(sb);
1715 if (!nsr_off) {
1716 if (!silent)
1717 printk(KERN_WARNING "UDF-fs: No VRS found\n");
1718 return 0;
1719 }
1720 if (nsr_off == -1)
1721 udf_debug("Failed to read byte 32768. Assuming open "
1722 "disc. Skipping validity check\n");
1723 if (!sbi->s_last_block)
1724 sbi->s_last_block = udf_get_last_block(sb);
1725 } else {
1726 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001727 }
Jan Kara40346002009-03-19 16:21:38 +01001728
1729 /* Look for anchor block and load Volume Descriptor Sequence */
1730 sbi->s_anchor = uopt->anchor;
1731 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001732 if (!silent)
1733 printk(KERN_WARNING "UDF-fs: No anchor found\n");
1734 return 0;
1735 }
1736 return 1;
1737}
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739static void udf_open_lvid(struct super_block *sb)
1740{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001741 struct udf_sb_info *sbi = UDF_SB(sb);
1742 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001743 struct logicalVolIntegrityDesc *lvid;
1744 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001745
Marcin Slusarz165923f2008-02-10 11:33:08 +01001746 if (!bh)
1747 return;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001748 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1749 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Marcin Slusarz165923f2008-02-10 11:33:08 +01001751 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1752 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1753 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1754 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001755 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Marcin Slusarz165923f2008-02-10 11:33:08 +01001757 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001758 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001759 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001760
1761 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1762 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001763 sbi->s_lvid_dirty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
1766static void udf_close_lvid(struct super_block *sb)
1767{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001768 struct udf_sb_info *sbi = UDF_SB(sb);
1769 struct buffer_head *bh = sbi->s_lvid_bh;
1770 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001771 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001772
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001773 if (!bh)
1774 return;
1775
1776 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001777 lvidiu = udf_sb_lvidiu(sbi);
1778 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1779 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1780 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1781 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1782 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1783 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1784 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1785 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1786 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1787 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Marcin Slusarz165923f2008-02-10 11:33:08 +01001789 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001790 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001791 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001792
1793 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1794 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001795 sbi->s_lvid_dirty = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796}
1797
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001798static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1799{
1800 int i;
1801 int nr_groups = bitmap->s_nr_groups;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001802 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1803 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001804
1805 for (i = 0; i < nr_groups; i++)
1806 if (bitmap->s_block_bitmap[i])
1807 brelse(bitmap->s_block_bitmap[i]);
1808
1809 if (size <= PAGE_SIZE)
1810 kfree(bitmap);
1811 else
1812 vfree(bitmap);
1813}
1814
Jan Kara2e0838f2008-04-01 18:08:51 +02001815static void udf_free_partition(struct udf_part_map *map)
1816{
1817 int i;
Jan Karabfb257a2008-04-08 20:37:21 +02001818 struct udf_meta_data *mdata;
Jan Kara2e0838f2008-04-01 18:08:51 +02001819
1820 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1821 iput(map->s_uspace.s_table);
1822 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1823 iput(map->s_fspace.s_table);
1824 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1825 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1826 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1827 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1828 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1829 for (i = 0; i < 4; i++)
1830 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
Jan Karabfb257a2008-04-08 20:37:21 +02001831 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1832 mdata = &map->s_type_specific.s_metadata;
1833 iput(mdata->s_metadata_fe);
1834 mdata->s_metadata_fe = NULL;
1835
1836 iput(mdata->s_mirror_fe);
1837 mdata->s_mirror_fe = NULL;
1838
1839 iput(mdata->s_bitmap_fe);
1840 mdata->s_bitmap_fe = NULL;
1841 }
Jan Kara2e0838f2008-04-01 18:08:51 +02001842}
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844static int udf_fill_super(struct super_block *sb, void *options, int silent)
1845{
1846 int i;
Jan Kara40346002009-03-19 16:21:38 +01001847 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001848 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001850 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 struct udf_sb_info *sbi;
1852
1853 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1854 uopt.uid = -1;
1855 uopt.gid = -1;
1856 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001857 uopt.fmode = UDF_INVALID_MODE;
1858 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001860 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 if (!sbi)
1862 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001866 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Miklos Szeredi6da80892008-02-08 04:21:50 -08001868 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 goto error_out;
1870
1871 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001872 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 udf_error(sb, "udf_read_super",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001874 "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 goto error_out;
1876 }
1877#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001878 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 uopt.nls_map = load_nls_default();
1880 if (!uopt.nls_map)
1881 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1882 else
1883 udf_debug("Using default NLS map\n");
1884 }
1885#endif
1886 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1887 uopt.flags |= (1 << UDF_FLAG_UTF8);
1888
1889 fileset.logicalBlockNum = 0xFFFFFFFF;
1890 fileset.partitionReferenceNum = 0xFFFF;
1891
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001892 sbi->s_flags = uopt.flags;
1893 sbi->s_uid = uopt.uid;
1894 sbi->s_gid = uopt.gid;
1895 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001896 sbi->s_fmode = uopt.fmode;
1897 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001898 sbi->s_nls_map = uopt.nls_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001900 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001901 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001903 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001905 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 /* Fill in the rest of the superblock */
1908 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001909 sb->s_export_op = &udf_export_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 sb->dq_op = NULL;
1911 sb->s_dirt = 0;
1912 sb->s_magic = UDF_SUPER_MAGIC;
1913 sb->s_time_gran = 1000;
1914
Jan Kara40346002009-03-19 16:21:38 +01001915 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
1916 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1917 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04001918 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara40346002009-03-19 16:21:38 +01001919 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1920 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
1921 if (!silent)
1922 printk(KERN_NOTICE
1923 "UDF-fs: Rescanning with blocksize "
1924 "%d\n", UDF_DEFAULT_BLOCKSIZE);
1925 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
1926 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1927 }
1928 }
1929 if (!ret) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001930 printk(KERN_WARNING "UDF-fs: No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 goto error_out;
1932 }
1933
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001934 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001936 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001937 struct logicalVolIntegrityDescImpUse *lvidiu =
1938 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001939 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
1940 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001941 /* uint16_t maxUDFWriteRev =
1942 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001944 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001945 printk(KERN_ERR "UDF-fs: minUDFReadRev=%x "
1946 "(max is %x)\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001947 le16_to_cpu(lvidiu->minUDFReadRev),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001948 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001950 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001953 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
1956 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
1957 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
1958 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
1959 }
1960
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001961 if (!sbi->s_partitions) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001962 printk(KERN_WARNING "UDF-fs: No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 goto error_out;
1964 }
1965
Marcin Slusarz4b111112008-02-08 04:20:36 -08001966 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
1967 UDF_PART_FLAG_READ_ONLY) {
1968 printk(KERN_NOTICE "UDF-fs: Partition marked readonly; "
1969 "forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07001970 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02001971 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07001972
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001973 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001974 printk(KERN_WARNING "UDF-fs: No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 goto error_out;
1976 }
1977
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001978 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001979 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01001980 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Adrian Bunka9ca6632008-02-08 04:20:47 -08001981 udf_info("UDF: Mounting volume '%s', "
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001982 "timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarz56774802008-02-10 11:25:31 +01001983 sbi->s_volume_ident, le16_to_cpu(ts.year), ts.month, ts.day,
1984 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 }
1986 if (!(sb->s_flags & MS_RDONLY))
1987 udf_open_lvid(sb);
1988
1989 /* Assign the root inode */
1990 /* assign inodes by physical block number */
1991 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02001992 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001993 if (!inode) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001994 printk(KERN_ERR "UDF-fs: Error in udf_iget, block=%d, "
1995 "partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001996 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 goto error_out;
1998 }
1999
2000 /* Allocate a dentry for the root inode */
2001 sb->s_root = d_alloc_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002002 if (!sb->s_root) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002003 printk(KERN_ERR "UDF-fs: Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 iput(inode);
2005 goto error_out;
2006 }
Jan Kara31170b62007-05-08 00:35:21 -07002007 sb->s_maxbytes = MAX_LFS_FILESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 return 0;
2009
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002010error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002011 if (sbi->s_vat_inode)
2012 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002013 if (sbi->s_partitions)
2014 for (i = 0; i < sbi->s_partitions; i++)
2015 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016#ifdef CONFIG_UDF_NLS
2017 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002018 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019#endif
2020 if (!(sb->s_flags & MS_RDONLY))
2021 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002022 brelse(sbi->s_lvid_bh);
2023
2024 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 kfree(sbi);
2026 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 return -EINVAL;
2029}
2030
Adrian Bunkb8145a72008-02-17 10:19:55 +02002031static void udf_error(struct super_block *sb, const char *function,
2032 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
2034 va_list args;
2035
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002036 if (!(sb->s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 /* mark sb error */
2038 sb->s_dirt = 1;
2039 }
2040 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002041 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 va_end(args);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002043 printk(KERN_CRIT "UDF-fs error (device %s): %s: %s\n",
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002044 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045}
2046
2047void udf_warning(struct super_block *sb, const char *function,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002048 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049{
2050 va_list args;
2051
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002052 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002053 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 va_end(args);
2055 printk(KERN_WARNING "UDF-fs warning (device %s): %s: %s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002056 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057}
2058
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002059static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
2061 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002062 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002064 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002065
2066 lock_kernel();
2067
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002068 if (sbi->s_vat_inode)
2069 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002070 if (sbi->s_partitions)
2071 for (i = 0; i < sbi->s_partitions; i++)
2072 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073#ifdef CONFIG_UDF_NLS
2074 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002075 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076#endif
2077 if (!(sb->s_flags & MS_RDONLY))
2078 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002079 brelse(sbi->s_lvid_bh);
2080 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 kfree(sb->s_fs_info);
2082 sb->s_fs_info = NULL;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002083
2084 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085}
2086
Jan Kara146bca72009-03-16 18:27:37 +01002087static int udf_sync_fs(struct super_block *sb, int wait)
2088{
2089 struct udf_sb_info *sbi = UDF_SB(sb);
2090
2091 mutex_lock(&sbi->s_alloc_mutex);
2092 if (sbi->s_lvid_dirty) {
2093 /*
2094 * Blockdevice will be synced later so we don't have to submit
2095 * the buffer for IO
2096 */
2097 mark_buffer_dirty(sbi->s_lvid_bh);
2098 sb->s_dirt = 0;
2099 sbi->s_lvid_dirty = 0;
2100 }
2101 mutex_unlock(&sbi->s_alloc_mutex);
2102
2103 return 0;
2104}
2105
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002106static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
David Howells726c3342006-06-23 02:02:58 -07002108 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002109 struct udf_sb_info *sbi = UDF_SB(sb);
2110 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002111 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002112
2113 if (sbi->s_lvid_bh != NULL)
2114 lvidiu = udf_sb_lvidiu(sbi);
2115 else
2116 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 buf->f_type = UDF_SUPER_MAGIC;
2119 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002120 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 buf->f_bfree = udf_count_free(sb);
2122 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002123 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2124 le32_to_cpu(lvidiu->numDirs)) : 0)
2125 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002127 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002128 buf->f_fsid.val[0] = (u32)id;
2129 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 return 0;
2132}
2133
Marcin Slusarz4b111112008-02-08 04:20:36 -08002134static unsigned int udf_count_free_bitmap(struct super_block *sb,
2135 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
2137 struct buffer_head *bh = NULL;
2138 unsigned int accum = 0;
2139 int index;
2140 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002141 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 uint8_t *ptr;
2144 uint16_t ident;
2145 struct spaceBitmapDesc *bm;
2146
2147 lock_kernel();
2148
2149 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002150 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002151 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002153 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 printk(KERN_ERR "udf: udf_count_free failed\n");
2155 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002156 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002157 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 printk(KERN_ERR "udf: udf_count_free failed\n");
2159 goto out;
2160 }
2161
2162 bm = (struct spaceBitmapDesc *)bh->b_data;
2163 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002164 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2165 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002167 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002168 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2169 accum += bitmap_weight((const unsigned long *)(ptr + index),
2170 cur_bytes * 8);
2171 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002172 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002173 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002174 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002176 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 udf_debug("read failed\n");
2178 goto out;
2179 }
2180 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002181 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
2183 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002184 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002186out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 unlock_kernel();
2188
2189 return accum;
2190}
2191
Marcin Slusarz4b111112008-02-08 04:20:36 -08002192static unsigned int udf_count_free_table(struct super_block *sb,
2193 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
2195 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002196 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002197 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002199 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201 lock_kernel();
2202
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002203 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002204 epos.offset = sizeof(struct unallocSpaceEntry);
2205 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002207 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002209
Jan Kara3bf25cb2007-05-08 00:35:16 -07002210 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 unlock_kernel();
2213
2214 return accum;
2215}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002216
2217static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
2219 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002220 struct udf_sb_info *sbi;
2221 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002223 sbi = UDF_SB(sb);
2224 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002225 struct logicalVolIntegrityDesc *lvid =
2226 (struct logicalVolIntegrityDesc *)
2227 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002228 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002229 accum = le32_to_cpu(
2230 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 if (accum == 0xFFFFFFFF)
2232 accum = 0;
2233 }
2234 }
2235
2236 if (accum)
2237 return accum;
2238
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002239 map = &sbi->s_partmaps[sbi->s_partition];
2240 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002241 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002242 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002244 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002245 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002246 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 }
2248 if (accum)
2249 return accum;
2250
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002251 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002252 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002253 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002255 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002256 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002257 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 }
2259
2260 return accum;
2261}