blob: f4ef5560675fcad541fb50b2970e5d1c0dfe71c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * super.c
3 *
4 * PURPOSE
5 * Super block routines for the OSTA-UDF(tm) filesystem.
6 *
7 * DESCRIPTION
8 * OSTA-UDF(tm) = Optical Storage Technology Association
9 * Universal Disk Format.
10 *
11 * This code is based on version 2.00 of the UDF specification,
12 * and revision 3 of the ECMA 167 standard [equivalent to ISO 13346].
13 * http://www.osta.org/
14 * http://www.ecma.ch/
15 * http://www.iso.org/
16 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * COPYRIGHT
18 * This file is distributed under the terms of the GNU General Public
19 * License (GPL). Copies of the GPL can be obtained from:
20 * ftp://prep.ai.mit.edu/pub/gnu/GPL
21 * Each contributing author retains all rights to their own work.
22 *
23 * (C) 1998 Dave Boynton
24 * (C) 1998-2004 Ben Fennema
25 * (C) 2000 Stelias Computing Inc
26 *
27 * HISTORY
28 *
29 * 09/24/98 dgb changed to allow compiling outside of kernel, and
30 * added some debugging.
31 * 10/01/98 dgb updated to allow (some) possibility of compiling w/2.0.34
32 * 10/16/98 attempting some multi-session support
33 * 10/17/98 added freespace count for "df"
34 * 11/11/98 gr added novrs option
35 * 11/26/98 dgb added fileset,anchor mount options
Marcin Slusarz3a71fc52008-02-08 04:20:28 -080036 * 12/06/98 blf really hosed things royally. vat/sparing support. sequenced
37 * vol descs. rewrote option handling based on isofs
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * 12/20/98 find the free space bitmap (if it exists)
39 */
40
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070041#include "udfdecl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/blkdev.h>
44#include <linux/slab.h>
45#include <linux/kernel.h>
46#include <linux/module.h>
47#include <linux/parser.h>
48#include <linux/stat.h>
49#include <linux/cdrom.h>
50#include <linux/nls.h>
51#include <linux/smp_lock.h>
52#include <linux/buffer_head.h>
53#include <linux/vfs.h>
54#include <linux/vmalloc.h>
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -080055#include <linux/errno.h>
Miklos Szeredi6da80892008-02-08 04:21:50 -080056#include <linux/mount.h>
57#include <linux/seq_file.h>
Marcin Slusarz01b954a2008-02-02 22:37:07 +010058#include <linux/bitmap.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020059#include <linux/crc-itu-t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/byteorder.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include "udf_sb.h"
63#include "udf_i.h"
64
65#include <linux/init.h>
66#include <asm/uaccess.h>
67
68#define VDS_POS_PRIMARY_VOL_DESC 0
69#define VDS_POS_UNALLOC_SPACE_DESC 1
70#define VDS_POS_LOGICAL_VOL_DESC 2
71#define VDS_POS_PARTITION_DESC 3
72#define VDS_POS_IMP_USE_VOL_DESC 4
73#define VDS_POS_VOL_DESC_PTR 5
74#define VDS_POS_TERMINATING_DESC 6
75#define VDS_POS_LENGTH 7
76
Miklos Szeredi6da80892008-02-08 04:21:50 -080077#define UDF_DEFAULT_BLOCKSIZE 2048
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static char error_buf[1024];
80
81/* These are the "meat" - everything else is stuffing */
82static int udf_fill_super(struct super_block *, void *, int);
83static void udf_put_super(struct super_block *);
84static void udf_write_super(struct super_block *);
85static int udf_remount_fs(struct super_block *, int *, char *);
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,
181 .write_super = udf_write_super,
182 .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 Slusarz7ac9bcd2008-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 Slusarz7ac9bcd2008-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 Slusarz7ac9bcd2008-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);
292 /*
293 * s_anchor[2] could be zeroed out in case there is no anchor
294 * in the specified block, but then the "anchor=N" option
295 * originally given by the user wasn't effective, so it's OK
296 * if we don't show it.
297 */
298 if (sbi->s_anchor[2] != 0)
299 seq_printf(seq, ",anchor=%u", sbi->s_anchor[2]);
300 /*
301 * volume, partition, fileset and rootdir seem to be ignored
302 * currently
303 */
304 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
305 seq_puts(seq, ",utf8");
306 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
307 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
308
309 return 0;
310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/*
313 * udf_parse_options
314 *
315 * PURPOSE
316 * Parse mount options.
317 *
318 * DESCRIPTION
319 * The following mount options are supported:
320 *
321 * gid= Set the default group.
322 * umask= Set the default umask.
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100323 * mode= Set the default file permissions.
324 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * uid= Set the default user.
326 * bs= Set the block size.
327 * unhide Show otherwise hidden files.
328 * undelete Show deleted files in lists.
329 * adinicb Embed data in the inode (default)
330 * noadinicb Don't embed data in the inode
331 * shortad Use short ad's
332 * longad Use long ad's (default)
333 * nostrict Unset strict conformance
334 * iocharset= Set the NLS character set
335 *
336 * The remaining are for debugging and disaster recovery:
337 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700338 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 *
340 * The following expect a offset from 0.
341 *
342 * session= Set the CDROM session (default= last session)
343 * anchor= Override standard anchor location. (default= 256)
344 * volume= Override the VolumeDesc location. (unused)
345 * partition= Override the PartitionDesc location. (unused)
346 * lastblock= Set the last block of the filesystem/
347 *
348 * The following expect a offset from the partition root.
349 *
350 * fileset= Override the fileset block location. (unused)
351 * rootdir= Override the root directory location. (unused)
352 * WARNING: overriding the rootdir to a non-directory may
353 * yield highly unpredictable results.
354 *
355 * PRE-CONDITIONS
356 * options Pointer to mount options string.
357 * uopts Pointer to mount options variable.
358 *
359 * POST-CONDITIONS
360 * <return> 1 Mount options parsed okay.
361 * <return> 0 Error parsing mount options.
362 *
363 * HISTORY
364 * July 1, 1997 - Andrew E. Mileski
365 * Written, tested, and released.
366 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368enum {
369 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
370 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
371 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
372 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
373 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100374 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
375 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376};
377
Steven Whitehousea447c092008-10-13 10:46:57 +0100378static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700379 {Opt_novrs, "novrs"},
380 {Opt_nostrict, "nostrict"},
381 {Opt_bs, "bs=%u"},
382 {Opt_unhide, "unhide"},
383 {Opt_undelete, "undelete"},
384 {Opt_noadinicb, "noadinicb"},
385 {Opt_adinicb, "adinicb"},
386 {Opt_shortad, "shortad"},
387 {Opt_longad, "longad"},
388 {Opt_uforget, "uid=forget"},
389 {Opt_uignore, "uid=ignore"},
390 {Opt_gforget, "gid=forget"},
391 {Opt_gignore, "gid=ignore"},
392 {Opt_gid, "gid=%u"},
393 {Opt_uid, "uid=%u"},
394 {Opt_umask, "umask=%o"},
395 {Opt_session, "session=%u"},
396 {Opt_lastblock, "lastblock=%u"},
397 {Opt_anchor, "anchor=%u"},
398 {Opt_volume, "volume=%u"},
399 {Opt_partition, "partition=%u"},
400 {Opt_fileset, "fileset=%u"},
401 {Opt_rootdir, "rootdir=%u"},
402 {Opt_utf8, "utf8"},
403 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100404 {Opt_fmode, "mode=%o"},
405 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700406 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407};
408
Miklos Szeredi6da80892008-02-08 04:21:50 -0800409static int udf_parse_options(char *options, struct udf_options *uopt,
410 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 char *p;
413 int option;
414
415 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 uopt->partition = 0xFFFF;
417 uopt->session = 0xFFFFFFFF;
418 uopt->lastblock = 0;
419 uopt->anchor = 0;
420 uopt->volume = 0xFFFFFFFF;
421 uopt->rootdir = 0xFFFFFFFF;
422 uopt->fileset = 0xFFFFFFFF;
423 uopt->nls_map = NULL;
424
425 if (!options)
426 return 1;
427
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700428 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 substring_t args[MAX_OPT_ARGS];
430 int token;
431 if (!*p)
432 continue;
433
434 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700435 switch (token) {
436 case Opt_novrs:
437 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100438 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700439 case Opt_bs:
440 if (match_int(&args[0], &option))
441 return 0;
442 uopt->blocksize = option;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100443 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700444 break;
445 case Opt_unhide:
446 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
447 break;
448 case Opt_undelete:
449 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
450 break;
451 case Opt_noadinicb:
452 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
453 break;
454 case Opt_adinicb:
455 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
456 break;
457 case Opt_shortad:
458 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
459 break;
460 case Opt_longad:
461 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
462 break;
463 case Opt_gid:
464 if (match_int(args, &option))
465 return 0;
466 uopt->gid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700467 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700468 break;
469 case Opt_uid:
470 if (match_int(args, &option))
471 return 0;
472 uopt->uid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700473 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700474 break;
475 case Opt_umask:
476 if (match_octal(args, &option))
477 return 0;
478 uopt->umask = option;
479 break;
480 case Opt_nostrict:
481 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
482 break;
483 case Opt_session:
484 if (match_int(args, &option))
485 return 0;
486 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800487 if (!remount)
488 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700489 break;
490 case Opt_lastblock:
491 if (match_int(args, &option))
492 return 0;
493 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800494 if (!remount)
495 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700496 break;
497 case Opt_anchor:
498 if (match_int(args, &option))
499 return 0;
500 uopt->anchor = option;
501 break;
502 case Opt_volume:
503 if (match_int(args, &option))
504 return 0;
505 uopt->volume = option;
506 break;
507 case Opt_partition:
508 if (match_int(args, &option))
509 return 0;
510 uopt->partition = option;
511 break;
512 case Opt_fileset:
513 if (match_int(args, &option))
514 return 0;
515 uopt->fileset = option;
516 break;
517 case Opt_rootdir:
518 if (match_int(args, &option))
519 return 0;
520 uopt->rootdir = option;
521 break;
522 case Opt_utf8:
523 uopt->flags |= (1 << UDF_FLAG_UTF8);
524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700526 case Opt_iocharset:
527 uopt->nls_map = load_nls(args[0].from);
528 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
529 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700531 case Opt_uignore:
532 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
533 break;
534 case Opt_uforget:
535 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
536 break;
537 case Opt_gignore:
538 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
539 break;
540 case Opt_gforget:
541 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
542 break;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100543 case Opt_fmode:
544 if (match_octal(args, &option))
545 return 0;
546 uopt->fmode = option & 0777;
547 break;
548 case Opt_dmode:
549 if (match_octal(args, &option))
550 return 0;
551 uopt->dmode = option & 0777;
552 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700553 default:
554 printk(KERN_ERR "udf: bad mount option \"%s\" "
555 "or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return 0;
557 }
558 }
559 return 1;
560}
561
Marcin Slusarzbd45a422008-02-08 04:20:35 -0800562static void udf_write_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 lock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (!(sb->s_flags & MS_RDONLY))
567 udf_open_lvid(sb);
568 sb->s_dirt = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 unlock_kernel();
571}
572
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700573static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800576 struct udf_sb_info *sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800578 uopt.flags = sbi->s_flags;
579 uopt.uid = sbi->s_uid;
580 uopt.gid = sbi->s_gid;
581 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100582 uopt.fmode = sbi->s_fmode;
583 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Miklos Szeredi6da80892008-02-08 04:21:50 -0800585 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return -EINVAL;
587
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800588 sbi->s_flags = uopt.flags;
589 sbi->s_uid = uopt.uid;
590 sbi->s_gid = uopt.gid;
591 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100592 sbi->s_fmode = uopt.fmode;
593 sbi->s_dmode = uopt.dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800595 if (sbi->s_lvid_bh) {
596 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (write_rev > UDF_MAX_WRITE_VERSION)
598 *flags |= MS_RDONLY;
599 }
600
601 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
602 return 0;
603 if (*flags & MS_RDONLY)
604 udf_close_lvid(sb);
605 else
606 udf_open_lvid(sb);
607
608 return 0;
609}
610
Jan Kara225fede2009-03-11 16:02:04 +0100611static loff_t udf_vrs(struct super_block *sb, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200614 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 int sectorsize;
616 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700617 int iso9660 = 0;
618 int nsr02 = 0;
619 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800620 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 /* Block size must be a multiple of 512 */
623 if (sb->s_blocksize & 511)
624 return 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800625 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 if (sb->s_blocksize < sizeof(struct volStructDesc))
628 sectorsize = sizeof(struct volStructDesc);
629 else
630 sectorsize = sb->s_blocksize;
631
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800632 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200635 (unsigned int)(sector >> sb->s_blocksize_bits),
636 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700638 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* Read a block */
640 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
641 if (!bh)
642 break;
643
644 /* Look for ISO descriptors */
645 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800646 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700648 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700649 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800651 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
652 VSD_STD_ID_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 iso9660 = sector;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700654 switch (vsd->structType) {
655 case 0:
656 udf_debug("ISO9660 Boot Record found\n");
657 break;
658 case 1:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800659 udf_debug("ISO9660 Primary Volume Descriptor "
660 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700661 break;
662 case 2:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800663 udf_debug("ISO9660 Supplementary Volume "
664 "Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700665 break;
666 case 3:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800667 udf_debug("ISO9660 Volume Partition Descriptor "
668 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700669 break;
670 case 255:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800671 udf_debug("ISO9660 Volume Descriptor Set "
672 "Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700673 break;
674 default:
675 udf_debug("ISO9660 VRS (%u) found\n",
676 vsd->structType);
677 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800679 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
680 VSD_STD_ID_LEN))
681 ; /* nothing */
682 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
683 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700684 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800686 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
687 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800689 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
690 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700692 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694
695 if (nsr03)
696 return nsr03;
697 else if (nsr02)
698 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800699 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return -1;
701 else
702 return 0;
703}
704
705/*
Jan Kara423cf6d2008-04-07 15:59:23 +0200706 * Check whether there is an anchor block in the given block
707 */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200708static int udf_check_anchor_block(struct super_block *sb, sector_t block)
Jan Kara423cf6d2008-04-07 15:59:23 +0200709{
Tomas Janouseke8183c22008-06-23 15:12:35 +0200710 struct buffer_head *bh;
Jan Kara423cf6d2008-04-07 15:59:23 +0200711 uint16_t ident;
Jan Kara423cf6d2008-04-07 15:59:23 +0200712
Tomas Janouseke8183c22008-06-23 15:12:35 +0200713 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
714 udf_fixed_to_variable(block) >=
715 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
716 return 0;
Jan Kara423cf6d2008-04-07 15:59:23 +0200717
Tomas Janouseke8183c22008-06-23 15:12:35 +0200718 bh = udf_read_tagged(sb, block, block, &ident);
Jan Kara423cf6d2008-04-07 15:59:23 +0200719 if (!bh)
720 return 0;
Jan Kara423cf6d2008-04-07 15:59:23 +0200721 brelse(bh);
Tomas Janouseke8183c22008-06-23 15:12:35 +0200722
723 return ident == TAG_IDENT_AVDP;
Jan Kara423cf6d2008-04-07 15:59:23 +0200724}
725
726/* Search for an anchor volume descriptor pointer */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200727static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock)
Jan Kara423cf6d2008-04-07 15:59:23 +0200728{
Jan Kara5fb28aa2008-04-07 16:15:04 +0200729 sector_t last[6];
Jan Kara423cf6d2008-04-07 15:59:23 +0200730 int i;
731 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Karaf90981f2008-12-03 17:31:39 +0100732 int last_count = 0;
Jan Kara423cf6d2008-04-07 15:59:23 +0200733
Jan Karaf90981f2008-12-03 17:31:39 +0100734 last[last_count++] = lastblock;
735 if (lastblock >= 1)
736 last[last_count++] = lastblock - 1;
737 last[last_count++] = lastblock + 1;
738 if (lastblock >= 2)
739 last[last_count++] = lastblock - 2;
740 if (lastblock >= 150)
741 last[last_count++] = lastblock - 150;
742 if (lastblock >= 152)
743 last[last_count++] = lastblock - 152;
Jan Kara423cf6d2008-04-07 15:59:23 +0200744
745 /* according to spec, anchor is in either:
746 * block 256
747 * lastblock-256
748 * lastblock
749 * however, if the disc isn't closed, it could be 512 */
750
Jan Karaf90981f2008-12-03 17:31:39 +0100751 for (i = 0; i < last_count; i++) {
Jan Kara5fb28aa2008-04-07 16:15:04 +0200752 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
753 sb->s_blocksize_bits)
754 continue;
Jan Kara423cf6d2008-04-07 15:59:23 +0200755
Tomas Janouseke8183c22008-06-23 15:12:35 +0200756 if (udf_check_anchor_block(sb, last[i])) {
Jan Kara423cf6d2008-04-07 15:59:23 +0200757 sbi->s_anchor[0] = last[i];
758 sbi->s_anchor[1] = last[i] - 256;
759 return last[i];
760 }
761
762 if (last[i] < 256)
763 continue;
764
Tomas Janouseke8183c22008-06-23 15:12:35 +0200765 if (udf_check_anchor_block(sb, last[i] - 256)) {
Jan Kara423cf6d2008-04-07 15:59:23 +0200766 sbi->s_anchor[1] = last[i] - 256;
767 return last[i];
768 }
769 }
770
Tomas Janouseke8183c22008-06-23 15:12:35 +0200771 if (udf_check_anchor_block(sb, sbi->s_session + 256)) {
Jan Kara423cf6d2008-04-07 15:59:23 +0200772 sbi->s_anchor[0] = sbi->s_session + 256;
773 return last[0];
774 }
Tomas Janouseke8183c22008-06-23 15:12:35 +0200775 if (udf_check_anchor_block(sb, sbi->s_session + 512)) {
Jan Kara423cf6d2008-04-07 15:59:23 +0200776 sbi->s_anchor[0] = sbi->s_session + 512;
777 return last[0];
778 }
779 return 0;
780}
781
782/*
783 * Find an anchor volume descriptor. The function expects sbi->s_lastblock to
784 * be the last block on the media.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 *
Jan Kara423cf6d2008-04-07 15:59:23 +0200786 * Return 1 if not found, 0 if ok
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 */
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100789static int udf_find_anchor(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Jan Kara423cf6d2008-04-07 15:59:23 +0200791 sector_t lastblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 struct buffer_head *bh = NULL;
793 uint16_t ident;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int i;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100795 int anchor_found = 0;
Jan Kara423cf6d2008-04-07 15:59:23 +0200796 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800797
Tomas Janouseke8183c22008-06-23 15:12:35 +0200798 lastblock = udf_scan_anchors(sb, sbi->s_last_block);
Jan Kara423cf6d2008-04-07 15:59:23 +0200799 if (lastblock)
800 goto check_anchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Jan Kara423cf6d2008-04-07 15:59:23 +0200802 /* No anchor found? Try VARCONV conversion of block numbers */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200803 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
Jan Kara423cf6d2008-04-07 15:59:23 +0200804 /* Firstly, we try to not convert number of the last block */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200805 lastblock = udf_scan_anchors(sb,
Jan Kara423cf6d2008-04-07 15:59:23 +0200806 udf_variable_to_fixed(sbi->s_last_block));
Tomas Janouseke8183c22008-06-23 15:12:35 +0200807 if (lastblock)
Jan Kara423cf6d2008-04-07 15:59:23 +0200808 goto check_anchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Jan Kara423cf6d2008-04-07 15:59:23 +0200810 /* Secondly, we try with converted number of the last block */
Tomas Janouseke8183c22008-06-23 15:12:35 +0200811 lastblock = udf_scan_anchors(sb, sbi->s_last_block);
812 if (!lastblock) {
813 /* VARCONV didn't help. Clear it. */
814 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Jan Kara423cf6d2008-04-07 15:59:23 +0200817check_anchor:
818 /*
819 * Check located anchors and the anchor block supplied via
820 * mount options
821 */
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800822 for (i = 0; i < ARRAY_SIZE(sbi->s_anchor); i++) {
Marcin Slusarz165923f2008-02-10 11:33:08 +0100823 if (!sbi->s_anchor[i])
824 continue;
825 bh = udf_read_tagged(sb, sbi->s_anchor[i],
826 sbi->s_anchor[i], &ident);
827 if (!bh)
828 sbi->s_anchor[i] = 0;
829 else {
830 brelse(bh);
Jan Kara423cf6d2008-04-07 15:59:23 +0200831 if (ident != TAG_IDENT_AVDP)
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800832 sbi->s_anchor[i] = 0;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100833 else
834 anchor_found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836 }
837
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800838 sbi->s_last_block = lastblock;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100839 return anchor_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800842static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200843 struct kernel_lb_addr *fileset,
844 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 struct buffer_head *bh = NULL;
847 long lastblock;
848 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800849 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700852 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200853 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700855 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700857 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700858 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return 1;
860 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800864 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800865 if (!bh) {
866 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200867 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700869/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700871
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800872 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700873 (newfileset.partitionReferenceNum != 0xFFFF &&
874 fileset->logicalBlockNum == 0xFFFFFFFF &&
875 fileset->partitionReferenceNum == 0xFFFF);
876 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800877 lastblock = sbi->s_partmaps
878 [newfileset.partitionReferenceNum]
879 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 newfileset.logicalBlockNum = 0;
881
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700882 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200883 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800884 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700885 if (!bh) {
886 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 continue;
888 }
889
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700890 switch (ident) {
891 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700892 {
893 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800894 sp = (struct spaceBitmapDesc *)
895 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700896 newfileset.logicalBlockNum += 1 +
897 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800898 sizeof(struct spaceBitmapDesc)
899 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700900 brelse(bh);
901 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700903 case TAG_IDENT_FSD:
904 *fileset = newfileset;
905 break;
906 default:
907 newfileset.logicalBlockNum++;
908 brelse(bh);
909 bh = NULL;
910 break;
911 }
912 } while (newfileset.logicalBlockNum < lastblock &&
913 fileset->logicalBlockNum == 0xFFFFFFFF &&
914 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916 }
917
918 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700919 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700921 fileset->logicalBlockNum,
922 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800924 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700926 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return 0;
928 }
929 return 1;
930}
931
Jan Karac0eb31e2008-04-01 16:50:35 +0200932static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
934 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100935 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200936 struct buffer_head *bh;
937 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100938 int ret = 1;
939
940 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
941 if (!instr)
942 return 1;
943
944 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
945 if (!outstr)
946 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200947
948 bh = udf_read_tagged(sb, block, block, &ident);
949 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100950 goto out2;
951
Jan Karac0eb31e2008-04-01 16:50:35 +0200952 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 pvoldesc = (struct primaryVolDesc *)bh->b_data;
955
Marcin Slusarz56774802008-02-10 11:25:31 +0100956 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
957 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100958#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200959 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +0100960 udf_debug("recording time %04u/%02u/%02u"
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800961 " %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100962 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
963 ts->minute, le16_to_cpu(ts->typeAndTimezone));
964#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100967 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
968 if (udf_CS0toUTF8(outstr, instr)) {
969 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
970 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800971 udf_debug("volIdent[] = '%s'\n",
972 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100975 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
976 if (udf_CS0toUTF8(outstr, instr))
977 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200978
979 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100980 ret = 0;
981out2:
982 kfree(outstr);
983out1:
984 kfree(instr);
985 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986}
987
Jan Karabfb257a2008-04-08 20:37:21 +0200988static int udf_load_metadata_files(struct super_block *sb, int partition)
989{
990 struct udf_sb_info *sbi = UDF_SB(sb);
991 struct udf_part_map *map;
992 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200993 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200994 int fe_error = 0;
995
996 map = &sbi->s_partmaps[partition];
997 mdata = &map->s_type_specific.s_metadata;
998
999 /* metadata address */
1000 addr.logicalBlockNum = mdata->s_meta_file_loc;
1001 addr.partitionReferenceNum = map->s_partition_num;
1002
1003 udf_debug("Metadata file location: block = %d part = %d\n",
1004 addr.logicalBlockNum, addr.partitionReferenceNum);
1005
Pekka Enberg97e961f2008-10-15 12:29:03 +02001006 mdata->s_metadata_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +02001007
1008 if (mdata->s_metadata_fe == NULL) {
1009 udf_warning(sb, __func__, "metadata inode efe not found, "
1010 "will try mirror inode.");
1011 fe_error = 1;
1012 } else if (UDF_I(mdata->s_metadata_fe)->i_alloc_type !=
1013 ICBTAG_FLAG_AD_SHORT) {
1014 udf_warning(sb, __func__, "metadata inode efe does not have "
1015 "short allocation descriptors!");
1016 fe_error = 1;
1017 iput(mdata->s_metadata_fe);
1018 mdata->s_metadata_fe = NULL;
1019 }
1020
1021 /* mirror file entry */
1022 addr.logicalBlockNum = mdata->s_mirror_file_loc;
1023 addr.partitionReferenceNum = map->s_partition_num;
1024
1025 udf_debug("Mirror metadata file location: block = %d part = %d\n",
1026 addr.logicalBlockNum, addr.partitionReferenceNum);
1027
Pekka Enberg97e961f2008-10-15 12:29:03 +02001028 mdata->s_mirror_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +02001029
1030 if (mdata->s_mirror_fe == NULL) {
1031 if (fe_error) {
1032 udf_error(sb, __func__, "mirror inode efe not found "
1033 "and metadata inode is missing too, exiting...");
1034 goto error_exit;
1035 } else
1036 udf_warning(sb, __func__, "mirror inode efe not found,"
1037 " but metadata inode is OK");
1038 } else if (UDF_I(mdata->s_mirror_fe)->i_alloc_type !=
1039 ICBTAG_FLAG_AD_SHORT) {
1040 udf_warning(sb, __func__, "mirror inode efe does not have "
1041 "short allocation descriptors!");
1042 iput(mdata->s_mirror_fe);
1043 mdata->s_mirror_fe = NULL;
1044 if (fe_error)
1045 goto error_exit;
1046 }
1047
1048 /*
1049 * bitmap file entry
1050 * Note:
1051 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
1052 */
1053 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
1054 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
1055 addr.partitionReferenceNum = map->s_partition_num;
1056
1057 udf_debug("Bitmap file location: block = %d part = %d\n",
1058 addr.logicalBlockNum, addr.partitionReferenceNum);
1059
Pekka Enberg97e961f2008-10-15 12:29:03 +02001060 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +02001061
1062 if (mdata->s_bitmap_fe == NULL) {
1063 if (sb->s_flags & MS_RDONLY)
1064 udf_warning(sb, __func__, "bitmap inode efe "
1065 "not found but it's ok since the disc"
1066 " is mounted read-only");
1067 else {
1068 udf_error(sb, __func__, "bitmap inode efe not "
1069 "found and attempted read-write mount");
1070 goto error_exit;
1071 }
1072 }
1073 }
1074
1075 udf_debug("udf_load_metadata_files Ok\n");
1076
1077 return 0;
1078
1079error_exit:
1080 return 1;
1081}
1082
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001083static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001084 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 struct fileSetDesc *fset;
1087
1088 fset = (struct fileSetDesc *)bh->b_data;
1089
1090 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
1091
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001092 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001094 udf_debug("Rootdir at block=%d, partition=%d\n",
1095 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001098int udf_compute_nr_groups(struct super_block *sb, u32 partition)
1099{
1100 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +01001101 return DIV_ROUND_UP(map->s_partition_len +
1102 (sizeof(struct spaceBitmapDesc) << 3),
1103 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001104}
1105
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001106static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
1107{
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001108 struct udf_bitmap *bitmap;
1109 int nr_groups;
1110 int size;
1111
Marcin Slusarz883cb9d2008-02-08 04:20:34 -08001112 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001113 size = sizeof(struct udf_bitmap) +
1114 (sizeof(struct buffer_head *) * nr_groups);
1115
1116 if (size <= PAGE_SIZE)
1117 bitmap = kmalloc(size, GFP_KERNEL);
1118 else
1119 bitmap = vmalloc(size); /* TODO: get rid of vmalloc */
1120
1121 if (bitmap == NULL) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -07001122 udf_error(sb, __func__,
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001123 "Unable to allocate space for bitmap "
1124 "and %d buffer_head pointers", nr_groups);
1125 return NULL;
1126 }
1127
1128 memset(bitmap, 0x00, size);
1129 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
1130 bitmap->s_nr_groups = nr_groups;
1131 return bitmap;
1132}
1133
Jan Kara3fb38df2008-04-02 12:26:36 +02001134static int udf_fill_partdesc_info(struct super_block *sb,
1135 struct partitionDesc *p, int p_index)
1136{
1137 struct udf_part_map *map;
1138 struct udf_sb_info *sbi = UDF_SB(sb);
1139 struct partitionHeaderDesc *phd;
1140
1141 map = &sbi->s_partmaps[p_index];
1142
1143 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
1144 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
1145
1146 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
1147 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
1148 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
1149 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
1150 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
1151 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
1152 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
1153 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1154
Sebastian Manciulea706047a2008-04-14 17:13:01 +02001155 udf_debug("Partition (%d type %x) starts at physical %d, "
1156 "block length %d\n", p_index,
Jan Kara3fb38df2008-04-02 12:26:36 +02001157 map->s_partition_type, map->s_partition_root,
1158 map->s_partition_len);
1159
1160 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1161 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1162 return 0;
1163
1164 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1165 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001166 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001167 .logicalBlockNum = le32_to_cpu(
1168 phd->unallocSpaceTable.extPosition),
1169 .partitionReferenceNum = p_index,
1170 };
1171
Pekka Enberg97e961f2008-10-15 12:29:03 +02001172 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001173 if (!map->s_uspace.s_table) {
1174 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1175 p_index);
1176 return 1;
1177 }
1178 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1179 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1180 p_index, map->s_uspace.s_table->i_ino);
1181 }
1182
1183 if (phd->unallocSpaceBitmap.extLength) {
1184 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1185 if (!bitmap)
1186 return 1;
1187 map->s_uspace.s_bitmap = bitmap;
1188 bitmap->s_extLength = le32_to_cpu(
1189 phd->unallocSpaceBitmap.extLength);
1190 bitmap->s_extPosition = le32_to_cpu(
1191 phd->unallocSpaceBitmap.extPosition);
1192 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
1193 udf_debug("unallocSpaceBitmap (part %d) @ %d\n", p_index,
1194 bitmap->s_extPosition);
1195 }
1196
1197 if (phd->partitionIntegrityTable.extLength)
1198 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1199
1200 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001201 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001202 .logicalBlockNum = le32_to_cpu(
1203 phd->freedSpaceTable.extPosition),
1204 .partitionReferenceNum = p_index,
1205 };
1206
Pekka Enberg97e961f2008-10-15 12:29:03 +02001207 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001208 if (!map->s_fspace.s_table) {
1209 udf_debug("cannot load freedSpaceTable (part %d)\n",
1210 p_index);
1211 return 1;
1212 }
1213
1214 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1215 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1216 p_index, map->s_fspace.s_table->i_ino);
1217 }
1218
1219 if (phd->freedSpaceBitmap.extLength) {
1220 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1221 if (!bitmap)
1222 return 1;
1223 map->s_fspace.s_bitmap = bitmap;
1224 bitmap->s_extLength = le32_to_cpu(
1225 phd->freedSpaceBitmap.extLength);
1226 bitmap->s_extPosition = le32_to_cpu(
1227 phd->freedSpaceBitmap.extPosition);
1228 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
1229 udf_debug("freedSpaceBitmap (part %d) @ %d\n", p_index,
1230 bitmap->s_extPosition);
1231 }
1232 return 0;
1233}
1234
Jan Kara38b74a52008-04-02 16:01:35 +02001235static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1236{
1237 struct udf_sb_info *sbi = UDF_SB(sb);
1238 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001239 struct kernel_lb_addr ino;
Jan Karafa5e0812008-04-08 02:08:53 +02001240 struct buffer_head *bh = NULL;
1241 struct udf_inode_info *vati;
1242 uint32_t pos;
1243 struct virtualAllocationTable20 *vat20;
Jan Kara38b74a52008-04-02 16:01:35 +02001244
1245 /* VAT file entry is in the last recorded block */
1246 ino.partitionReferenceNum = type1_index;
1247 ino.logicalBlockNum = sbi->s_last_block - map->s_partition_root;
Pekka Enberg97e961f2008-10-15 12:29:03 +02001248 sbi->s_vat_inode = udf_iget(sb, &ino);
Jan Kara38b74a52008-04-02 16:01:35 +02001249 if (!sbi->s_vat_inode)
1250 return 1;
1251
1252 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001253 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001254 map->s_type_specific.s_virtual.s_num_entries =
1255 (sbi->s_vat_inode->i_size - 36) >> 2;
1256 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001257 vati = UDF_I(sbi->s_vat_inode);
1258 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1259 pos = udf_block_map(sbi->s_vat_inode, 0);
1260 bh = sb_bread(sb, pos);
1261 if (!bh)
1262 return 1;
1263 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1264 } else {
1265 vat20 = (struct virtualAllocationTable20 *)
1266 vati->i_ext.i_data;
1267 }
Jan Kara38b74a52008-04-02 16:01:35 +02001268
Jan Kara38b74a52008-04-02 16:01:35 +02001269 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001270 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001271 map->s_type_specific.s_virtual.s_num_entries =
1272 (sbi->s_vat_inode->i_size -
1273 map->s_type_specific.s_virtual.
1274 s_start_offset) >> 2;
1275 brelse(bh);
1276 }
1277 return 0;
1278}
1279
Jan Karac0eb31e2008-04-01 16:50:35 +02001280static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Jan Karac0eb31e2008-04-01 16:50:35 +02001282 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001283 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001284 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001285 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001286 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001287 uint16_t partitionNumber;
1288 uint16_t ident;
1289 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Jan Karac0eb31e2008-04-01 16:50:35 +02001291 bh = udf_read_tagged(sb, block, block, &ident);
1292 if (!bh)
1293 return 1;
1294 if (ident != TAG_IDENT_PD)
1295 goto out_bh;
1296
1297 p = (struct partitionDesc *)bh->b_data;
1298 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001299
Jan Karabfb257a2008-04-08 20:37:21 +02001300 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001301 for (i = 0; i < sbi->s_partitions; i++) {
1302 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001303 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001304 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001305 if (map->s_partition_num == partitionNumber &&
1306 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1307 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001309 }
1310
Jan Kara38b74a52008-04-02 16:01:35 +02001311 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001312 udf_debug("Partition (%d) not found in partition map\n",
1313 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001314 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001315 }
1316
Jan Kara3fb38df2008-04-02 12:26:36 +02001317 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001318
1319 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001320 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1321 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001322 */
1323 type1_idx = i;
1324 for (i = 0; i < sbi->s_partitions; i++) {
1325 map = &sbi->s_partmaps[i];
1326
1327 if (map->s_partition_num == partitionNumber &&
1328 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001329 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1330 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001331 break;
1332 }
1333
1334 if (i >= sbi->s_partitions)
1335 goto out_bh;
1336
1337 ret = udf_fill_partdesc_info(sb, p, i);
1338 if (ret)
1339 goto out_bh;
1340
Jan Karabfb257a2008-04-08 20:37:21 +02001341 if (map->s_partition_type == UDF_METADATA_MAP25) {
1342 ret = udf_load_metadata_files(sb, i);
1343 if (ret) {
1344 printk(KERN_ERR "UDF-fs: error loading MetaData "
1345 "partition map %d\n", i);
1346 goto out_bh;
1347 }
1348 } else {
1349 ret = udf_load_vat(sb, i, type1_idx);
1350 if (ret)
1351 goto out_bh;
1352 /*
1353 * Mark filesystem read-only if we have a partition with
1354 * virtual map since we don't handle writing to it (we
1355 * overwrite blocks instead of relocating them).
1356 */
1357 sb->s_flags |= MS_RDONLY;
1358 printk(KERN_NOTICE "UDF-fs: Filesystem marked read-only "
1359 "because writing to pseudooverwrite partition is "
1360 "not implemented.\n");
1361 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001362out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001363 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001364 brelse(bh);
1365 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
Jan Karac0eb31e2008-04-01 16:50:35 +02001368static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001369 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 struct logicalVolDesc *lvd;
1372 int i, j, offset;
1373 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001374 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001375 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001376 uint16_t ident;
1377 struct buffer_head *bh;
1378 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Jan Karac0eb31e2008-04-01 16:50:35 +02001380 bh = udf_read_tagged(sb, block, block, &ident);
1381 if (!bh)
1382 return 1;
1383 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 lvd = (struct logicalVolDesc *)bh->b_data;
1385
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -08001386 i = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
Jan Karac0eb31e2008-04-01 16:50:35 +02001387 if (i != 0) {
1388 ret = i;
1389 goto out_bh;
1390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001392 for (i = 0, offset = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001393 i < sbi->s_partitions && offset < le32_to_cpu(lvd->mapTableLength);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001394 i++, offset += gpm->partitionMapLength) {
1395 struct udf_part_map *map = &sbi->s_partmaps[i];
1396 gpm = (struct genericPartitionMap *)
1397 &(lvd->partitionMaps[offset]);
1398 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001399 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001400 struct genericPartitionMap1 *gpm1 =
1401 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001402 map->s_partition_type = UDF_TYPE1_MAP15;
1403 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1404 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1405 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001406 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001407 struct udfPartitionMap2 *upm2 =
1408 (struct udfPartitionMap2 *)gpm;
1409 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1410 strlen(UDF_ID_VIRTUAL))) {
1411 u16 suf =
1412 le16_to_cpu(((__le16 *)upm2->partIdent.
1413 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001414 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001415 map->s_partition_type =
1416 UDF_VIRTUAL_MAP15;
1417 map->s_partition_func =
1418 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001419 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001420 map->s_partition_type =
1421 UDF_VIRTUAL_MAP20;
1422 map->s_partition_func =
1423 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001425 } else if (!strncmp(upm2->partIdent.ident,
1426 UDF_ID_SPARABLE,
1427 strlen(UDF_ID_SPARABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 uint32_t loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 struct sparingTable *st;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001430 struct sparablePartitionMap *spm =
1431 (struct sparablePartitionMap *)gpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001433 map->s_partition_type = UDF_SPARABLE_MAP15;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001434 map->s_type_specific.s_sparing.s_packet_len =
1435 le16_to_cpu(spm->packetLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001436 for (j = 0; j < spm->numSparingTables; j++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001437 struct buffer_head *bh2;
1438
1439 loc = le32_to_cpu(
1440 spm->locSparingTable[j]);
1441 bh2 = udf_read_tagged(sb, loc, loc,
1442 &ident);
1443 map->s_type_specific.s_sparing.
1444 s_spar_map[j] = bh2;
1445
Marcin Slusarz165923f2008-02-10 11:33:08 +01001446 if (bh2 == NULL)
1447 continue;
1448
1449 st = (struct sparingTable *)bh2->b_data;
1450 if (ident != 0 || strncmp(
1451 st->sparingIdent.ident,
1452 UDF_ID_SPARING,
1453 strlen(UDF_ID_SPARING))) {
1454 brelse(bh2);
1455 map->s_type_specific.s_sparing.
1456 s_spar_map[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
1458 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001459 map->s_partition_func = udf_get_pblock_spar15;
Jan Karabfb257a2008-04-08 20:37:21 +02001460 } else if (!strncmp(upm2->partIdent.ident,
1461 UDF_ID_METADATA,
1462 strlen(UDF_ID_METADATA))) {
1463 struct udf_meta_data *mdata =
1464 &map->s_type_specific.s_metadata;
1465 struct metadataPartitionMap *mdm =
1466 (struct metadataPartitionMap *)
1467 &(lvd->partitionMaps[offset]);
1468 udf_debug("Parsing Logical vol part %d "
1469 "type %d id=%s\n", i, type,
1470 UDF_ID_METADATA);
1471
1472 map->s_partition_type = UDF_METADATA_MAP25;
1473 map->s_partition_func = udf_get_pblock_meta25;
1474
1475 mdata->s_meta_file_loc =
1476 le32_to_cpu(mdm->metadataFileLoc);
1477 mdata->s_mirror_file_loc =
1478 le32_to_cpu(mdm->metadataMirrorFileLoc);
1479 mdata->s_bitmap_file_loc =
1480 le32_to_cpu(mdm->metadataBitmapFileLoc);
1481 mdata->s_alloc_unit_size =
1482 le32_to_cpu(mdm->allocUnitSize);
1483 mdata->s_align_unit_size =
1484 le16_to_cpu(mdm->alignUnitSize);
1485 mdata->s_dup_md_flag =
1486 mdm->flags & 0x01;
1487
1488 udf_debug("Metadata Ident suffix=0x%x\n",
1489 (le16_to_cpu(
1490 ((__le16 *)
1491 mdm->partIdent.identSuffix)[0])));
1492 udf_debug("Metadata part num=%d\n",
1493 le16_to_cpu(mdm->partitionNum));
1494 udf_debug("Metadata part alloc unit size=%d\n",
1495 le32_to_cpu(mdm->allocUnitSize));
1496 udf_debug("Metadata file loc=%d\n",
1497 le32_to_cpu(mdm->metadataFileLoc));
1498 udf_debug("Mirror file loc=%d\n",
1499 le32_to_cpu(mdm->metadataMirrorFileLoc));
1500 udf_debug("Bitmap file loc=%d\n",
1501 le32_to_cpu(mdm->metadataBitmapFileLoc));
1502 udf_debug("Duplicate Flag: %d %d\n",
1503 mdata->s_dup_md_flag, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001504 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001505 udf_debug("Unknown ident: %s\n",
1506 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 continue;
1508 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001509 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1510 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
1512 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001513 i, map->s_partition_num, type,
1514 map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001517 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001518 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 *fileset = lelb_to_cpu(la->extLocation);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001521 udf_debug("FileSet found in LogicalVolDesc at block=%d, "
1522 "partition=%d\n", fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001523 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
1525 if (lvd->integritySeqExt.extLength)
1526 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001527
Jan Karac0eb31e2008-04-01 16:50:35 +02001528out_bh:
1529 brelse(bh);
1530 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531}
1532
1533/*
1534 * udf_load_logicalvolint
1535 *
1536 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001537static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 struct buffer_head *bh = NULL;
1540 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001541 struct udf_sb_info *sbi = UDF_SB(sb);
1542 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001545 (bh = udf_read_tagged(sb, loc.extLocation,
1546 loc.extLocation, &ident)) &&
1547 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001548 sbi->s_lvid_bh = bh;
1549 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001550
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001551 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001552 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001553 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001554
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001555 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001556 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001558 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001560 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001561 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
1564/*
1565 * udf_process_sequence
1566 *
1567 * PURPOSE
1568 * Process a main/reserve volume descriptor sequence.
1569 *
1570 * PRE-CONDITIONS
1571 * sb Pointer to _locked_ superblock.
1572 * block First block of first extent of the sequence.
1573 * lastblock Lastblock of first extent of the sequence.
1574 *
1575 * HISTORY
1576 * July 1, 1997 - Andrew E. Mileski
1577 * Written, tested, and released.
1578 */
Jan Kara200a3592008-03-04 13:03:09 +01001579static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001580 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
1582 struct buffer_head *bh = NULL;
1583 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001584 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 struct generic_desc *gd;
1586 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001587 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 uint32_t vdsn;
1589 uint16_t ident;
1590 long next_s = 0, next_e = 0;
1591
1592 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1593
Jan Karac0eb31e2008-04-01 16:50:35 +02001594 /*
1595 * Read the main descriptor sequence and find which descriptors
1596 * are in it.
1597 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001598 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001601 if (!bh) {
1602 printk(KERN_ERR "udf: Block %Lu of volume descriptor "
1603 "sequence is corrupted or we could not read "
1604 "it.\n", (unsigned long long)block);
1605 return 1;
1606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1609 gd = (struct generic_desc *)bh->b_data;
1610 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001611 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001612 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001613 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1614 if (vdsn >= curr->volDescSeqNum) {
1615 curr->volDescSeqNum = vdsn;
1616 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001617 }
1618 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001619 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001620 curr = &vds[VDS_POS_VOL_DESC_PTR];
1621 if (vdsn >= curr->volDescSeqNum) {
1622 curr->volDescSeqNum = vdsn;
1623 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001625 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001626 next_s = le32_to_cpu(
1627 vdp->nextVolDescSeqExt.extLocation);
1628 next_e = le32_to_cpu(
1629 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001630 next_e = next_e >> sb->s_blocksize_bits;
1631 next_e += next_s;
1632 }
1633 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001634 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001635 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1636 if (vdsn >= curr->volDescSeqNum) {
1637 curr->volDescSeqNum = vdsn;
1638 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001639 }
1640 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001641 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001642 curr = &vds[VDS_POS_PARTITION_DESC];
1643 if (!curr->block)
1644 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001645 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001646 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001647 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1648 if (vdsn >= curr->volDescSeqNum) {
1649 curr->volDescSeqNum = vdsn;
1650 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001651 }
1652 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001653 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001654 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1655 if (vdsn >= curr->volDescSeqNum) {
1656 curr->volDescSeqNum = vdsn;
1657 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001658 }
1659 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001660 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001661 vds[VDS_POS_TERMINATING_DESC].block = block;
1662 if (next_e) {
1663 block = next_s;
1664 lastblock = next_e;
1665 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001666 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001667 done = 1;
1668 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001670 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001672 /*
1673 * Now read interesting descriptors again and process them
1674 * in a suitable order
1675 */
1676 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
1677 printk(KERN_ERR "udf: Primary Volume Descriptor not found!\n");
1678 return 1;
1679 }
1680 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1681 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Jan Karac0eb31e2008-04-01 16:50:35 +02001683 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1684 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1685 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001686
Jan Karac0eb31e2008-04-01 16:50:35 +02001687 if (vds[VDS_POS_PARTITION_DESC].block) {
1688 /*
1689 * We rescan the whole descriptor sequence to find
1690 * partition descriptor blocks and process them.
1691 */
1692 for (block = vds[VDS_POS_PARTITION_DESC].block;
1693 block < vds[VDS_POS_TERMINATING_DESC].block;
1694 block++)
1695 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001696 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698
1699 return 0;
1700}
1701
1702/*
1703 * udf_check_valid()
1704 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001705static int udf_check_valid(struct super_block *sb, int novrs, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Jan Kara225fede2009-03-11 16:02:04 +01001707 loff_t block;
Pavel Emelyanovd0db1812008-03-05 00:03:36 +01001708 struct udf_sb_info *sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001710 if (novrs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 udf_debug("Validity check skipped because of novrs option\n");
1712 return 0;
1713 }
1714 /* Check that it is NSR02 compliant */
1715 /* Process any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
Marcin Slusarz165923f2008-02-10 11:33:08 +01001716 block = udf_vrs(sb, silent);
Pavel Emelyanovd0db1812008-03-05 00:03:36 +01001717 if (block == -1)
1718 udf_debug("Failed to read byte 32768. Assuming open "
1719 "disc. Skipping validity check\n");
1720 if (block && !sbi->s_last_block)
Marcin Slusarz165923f2008-02-10 11:33:08 +01001721 sbi->s_last_block = udf_get_last_block(sb);
Jan Kara225fede2009-03-11 16:02:04 +01001722 return !!block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723}
1724
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001725static int udf_check_volume(struct super_block *sb,
1726 struct udf_options *uopt, int silent)
1727{
1728 struct udf_sb_info *sbi = UDF_SB(sb);
1729
1730 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1731 if (!silent)
1732 printk(KERN_WARNING "UDF-fs: Bad block size\n");
1733 return 0;
1734 }
1735 sbi->s_last_block = uopt->lastblock;
Jan Kara225fede2009-03-11 16:02:04 +01001736 if (!udf_check_valid(sb, uopt->novrs, silent)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001737 if (!silent)
1738 printk(KERN_WARNING "UDF-fs: No VRS found\n");
1739 return 0;
1740 }
1741 sbi->s_anchor[0] = sbi->s_anchor[1] = 0;
1742 sbi->s_anchor[2] = uopt->anchor;
1743 if (!udf_find_anchor(sb)) {
1744 if (!silent)
1745 printk(KERN_WARNING "UDF-fs: No anchor found\n");
1746 return 0;
1747 }
1748 return 1;
1749}
1750
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001751static int udf_load_sequence(struct super_block *sb, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
1753 struct anchorVolDescPtr *anchor;
1754 uint16_t ident;
1755 struct buffer_head *bh;
1756 long main_s, main_e, reserve_s, reserve_e;
Jan Kara38b74a52008-04-02 16:01:35 +02001757 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001758 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 if (!sb)
1761 return 1;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001762 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001764 for (i = 0; i < ARRAY_SIZE(sbi->s_anchor); i++) {
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001765 if (!sbi->s_anchor[i])
1766 continue;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001767
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001768 bh = udf_read_tagged(sb, sbi->s_anchor[i], sbi->s_anchor[i],
1769 &ident);
1770 if (!bh)
1771 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001773 anchor = (struct anchorVolDescPtr *)bh->b_data;
Tobias Klausere8c96f82006-03-24 03:15:34 -08001774
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001775 /* Locate the main sequence */
1776 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1777 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1778 main_e = main_e >> sb->s_blocksize_bits;
1779 main_e += main_s;
1780
1781 /* Locate the reserve sequence */
1782 reserve_s = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001783 anchor->reserveVolDescSeqExt.extLocation);
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001784 reserve_e = le32_to_cpu(
Marcin Slusarz4b111112008-02-08 04:20:36 -08001785 anchor->reserveVolDescSeqExt.extLength);
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001786 reserve_e = reserve_e >> sb->s_blocksize_bits;
1787 reserve_e += reserve_s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001789 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001791 /* Process the main & reserve sequences */
1792 /* responsible for finding the PartitionDesc(s) */
1793 if (!(udf_process_sequence(sb, main_s, main_e,
1794 fileset) &&
1795 udf_process_sequence(sb, reserve_s, reserve_e,
1796 fileset)))
1797 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001800 if (i == ARRAY_SIZE(sbi->s_anchor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 udf_debug("No Anchor block found\n");
1802 return 1;
Marcin Slusarz28f7c4d2008-02-08 04:20:46 -08001803 }
1804 udf_debug("Using anchor in block %d\n", sbi->s_anchor[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 return 0;
1807}
1808
1809static void udf_open_lvid(struct super_block *sb)
1810{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001811 struct udf_sb_info *sbi = UDF_SB(sb);
1812 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001813 struct logicalVolIntegrityDesc *lvid;
1814 struct logicalVolIntegrityDescImpUse *lvidiu;
1815 if (!bh)
1816 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Marcin Slusarz165923f2008-02-10 11:33:08 +01001818 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1819 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Marcin Slusarz165923f2008-02-10 11:33:08 +01001821 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1822 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1823 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1824 CURRENT_TIME);
1825 lvid->integrityType = LVID_INTEGRITY_TYPE_OPEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Marcin Slusarz165923f2008-02-10 11:33:08 +01001827 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001828 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001829 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001830
1831 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1832 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
1835static void udf_close_lvid(struct super_block *sb)
1836{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001837 struct udf_sb_info *sbi = UDF_SB(sb);
1838 struct buffer_head *bh = sbi->s_lvid_bh;
1839 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001840 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001841
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001842 if (!bh)
1843 return;
1844
1845 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1846
Marcin Slusarz165923f2008-02-10 11:33:08 +01001847 if (lvid->integrityType != LVID_INTEGRITY_TYPE_OPEN)
1848 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Marcin Slusarz165923f2008-02-10 11:33:08 +01001850 lvidiu = udf_sb_lvidiu(sbi);
1851 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1852 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1853 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1854 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1855 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1856 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1857 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1858 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1859 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1860 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Marcin Slusarz165923f2008-02-10 11:33:08 +01001862 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001863 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001864 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001865
1866 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1867 mark_buffer_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
1869
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001870static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1871{
1872 int i;
1873 int nr_groups = bitmap->s_nr_groups;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001874 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1875 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001876
1877 for (i = 0; i < nr_groups; i++)
1878 if (bitmap->s_block_bitmap[i])
1879 brelse(bitmap->s_block_bitmap[i]);
1880
1881 if (size <= PAGE_SIZE)
1882 kfree(bitmap);
1883 else
1884 vfree(bitmap);
1885}
1886
Jan Kara2e0838f2008-04-01 18:08:51 +02001887static void udf_free_partition(struct udf_part_map *map)
1888{
1889 int i;
Jan Karabfb257a2008-04-08 20:37:21 +02001890 struct udf_meta_data *mdata;
Jan Kara2e0838f2008-04-01 18:08:51 +02001891
1892 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1893 iput(map->s_uspace.s_table);
1894 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1895 iput(map->s_fspace.s_table);
1896 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1897 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1898 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1899 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1900 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1901 for (i = 0; i < 4; i++)
1902 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
Jan Karabfb257a2008-04-08 20:37:21 +02001903 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1904 mdata = &map->s_type_specific.s_metadata;
1905 iput(mdata->s_metadata_fe);
1906 mdata->s_metadata_fe = NULL;
1907
1908 iput(mdata->s_mirror_fe);
1909 mdata->s_mirror_fe = NULL;
1910
1911 iput(mdata->s_bitmap_fe);
1912 mdata->s_bitmap_fe = NULL;
1913 }
Jan Kara2e0838f2008-04-01 18:08:51 +02001914}
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916static int udf_fill_super(struct super_block *sb, void *options, int silent)
1917{
1918 int i;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001919 int found_anchor;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001920 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001922 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 struct udf_sb_info *sbi;
1924
1925 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1926 uopt.uid = -1;
1927 uopt.gid = -1;
1928 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001929 uopt.fmode = UDF_INVALID_MODE;
1930 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001932 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 if (!sbi)
1934 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001938 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Miklos Szeredi6da80892008-02-08 04:21:50 -08001940 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 goto error_out;
1942
1943 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001944 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 udf_error(sb, "udf_read_super",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001946 "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 goto error_out;
1948 }
1949#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001950 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 uopt.nls_map = load_nls_default();
1952 if (!uopt.nls_map)
1953 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1954 else
1955 udf_debug("Using default NLS map\n");
1956 }
1957#endif
1958 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1959 uopt.flags |= (1 << UDF_FLAG_UTF8);
1960
1961 fileset.logicalBlockNum = 0xFFFFFFFF;
1962 fileset.partitionReferenceNum = 0xFFFF;
1963
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001964 sbi->s_flags = uopt.flags;
1965 sbi->s_uid = uopt.uid;
1966 sbi->s_gid = uopt.gid;
1967 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +01001968 sbi->s_fmode = uopt.fmode;
1969 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001970 sbi->s_nls_map = uopt.nls_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001972 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001973 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001975 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001977 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001979 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
1980 found_anchor = udf_check_volume(sb, &uopt, silent);
1981 } else {
1982 uopt.blocksize = bdev_hardsect_size(sb->s_bdev);
1983 found_anchor = udf_check_volume(sb, &uopt, silent);
1984 if (!found_anchor && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
1985 if (!silent)
1986 printk(KERN_NOTICE
1987 "UDF-fs: Rescanning with blocksize "
1988 "%d\n", UDF_DEFAULT_BLOCKSIZE);
1989 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
1990 found_anchor = udf_check_volume(sb, &uopt, silent);
1991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001993 if (!found_anchor)
1994 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 /* Fill in the rest of the superblock */
1997 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001998 sb->s_export_op = &udf_export_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 sb->dq_op = NULL;
2000 sb->s_dirt = 0;
2001 sb->s_magic = UDF_SUPER_MAGIC;
2002 sb->s_time_gran = 1000;
2003
Jan Kara38b74a52008-04-02 16:01:35 +02002004 if (udf_load_sequence(sb, &fileset)) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002005 printk(KERN_WARNING "UDF-fs: No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 goto error_out;
2007 }
2008
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002009 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002011 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002012 struct logicalVolIntegrityDescImpUse *lvidiu =
2013 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002014 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2015 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002016 /* uint16_t maxUDFWriteRev =
2017 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002019 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002020 printk(KERN_ERR "UDF-fs: minUDFReadRev=%x "
2021 "(max is %x)\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002022 le16_to_cpu(lvidiu->minUDFReadRev),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002023 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002025 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002028 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2031 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2032 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2033 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2034 }
2035
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002036 if (!sbi->s_partitions) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002037 printk(KERN_WARNING "UDF-fs: No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 goto error_out;
2039 }
2040
Marcin Slusarz4b111112008-02-08 04:20:36 -08002041 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2042 UDF_PART_FLAG_READ_ONLY) {
2043 printk(KERN_NOTICE "UDF-fs: Partition marked readonly; "
2044 "forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002045 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002046 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002047
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002048 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002049 printk(KERN_WARNING "UDF-fs: No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 goto error_out;
2051 }
2052
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002053 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002054 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002055 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Adrian Bunka9ca6632008-02-08 04:20:47 -08002056 udf_info("UDF: Mounting volume '%s', "
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002057 "timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarz56774802008-02-10 11:25:31 +01002058 sbi->s_volume_ident, le16_to_cpu(ts.year), ts.month, ts.day,
2059 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
2061 if (!(sb->s_flags & MS_RDONLY))
2062 udf_open_lvid(sb);
2063
2064 /* Assign the root inode */
2065 /* assign inodes by physical block number */
2066 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002067 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002068 if (!inode) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002069 printk(KERN_ERR "UDF-fs: Error in udf_iget, block=%d, "
2070 "partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002071 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 goto error_out;
2073 }
2074
2075 /* Allocate a dentry for the root inode */
2076 sb->s_root = d_alloc_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002077 if (!sb->s_root) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002078 printk(KERN_ERR "UDF-fs: Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 iput(inode);
2080 goto error_out;
2081 }
Jan Kara31170b62007-05-08 00:35:21 -07002082 sb->s_maxbytes = MAX_LFS_FILESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 return 0;
2084
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002085error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002086 if (sbi->s_vat_inode)
2087 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002088 if (sbi->s_partitions)
2089 for (i = 0; i < sbi->s_partitions; i++)
2090 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091#ifdef CONFIG_UDF_NLS
2092 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002093 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094#endif
2095 if (!(sb->s_flags & MS_RDONLY))
2096 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002097 brelse(sbi->s_lvid_bh);
2098
2099 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 kfree(sbi);
2101 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 return -EINVAL;
2104}
2105
Adrian Bunkb8145a72008-02-17 10:19:55 +02002106static void udf_error(struct super_block *sb, const char *function,
2107 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{
2109 va_list args;
2110
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002111 if (!(sb->s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 /* mark sb error */
2113 sb->s_dirt = 1;
2114 }
2115 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002116 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 va_end(args);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002118 printk(KERN_CRIT "UDF-fs error (device %s): %s: %s\n",
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002119 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
2122void udf_warning(struct super_block *sb, const char *function,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002123 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
2125 va_list args;
2126
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002127 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002128 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 va_end(args);
2130 printk(KERN_WARNING "UDF-fs warning (device %s): %s: %s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002131 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132}
2133
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002134static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002137 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002139 sbi = UDF_SB(sb);
2140 if (sbi->s_vat_inode)
2141 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002142 if (sbi->s_partitions)
2143 for (i = 0; i < sbi->s_partitions; i++)
2144 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145#ifdef CONFIG_UDF_NLS
2146 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002147 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148#endif
2149 if (!(sb->s_flags & MS_RDONLY))
2150 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002151 brelse(sbi->s_lvid_bh);
2152 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 kfree(sb->s_fs_info);
2154 sb->s_fs_info = NULL;
2155}
2156
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002157static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
David Howells726c3342006-06-23 02:02:58 -07002159 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002160 struct udf_sb_info *sbi = UDF_SB(sb);
2161 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002162 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002163
2164 if (sbi->s_lvid_bh != NULL)
2165 lvidiu = udf_sb_lvidiu(sbi);
2166 else
2167 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 buf->f_type = UDF_SUPER_MAGIC;
2170 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002171 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 buf->f_bfree = udf_count_free(sb);
2173 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002174 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2175 le32_to_cpu(lvidiu->numDirs)) : 0)
2176 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002178 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002179 buf->f_fsid.val[0] = (u32)id;
2180 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 return 0;
2183}
2184
Marcin Slusarz4b111112008-02-08 04:20:36 -08002185static unsigned int udf_count_free_bitmap(struct super_block *sb,
2186 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
2188 struct buffer_head *bh = NULL;
2189 unsigned int accum = 0;
2190 int index;
2191 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002192 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 uint8_t *ptr;
2195 uint16_t ident;
2196 struct spaceBitmapDesc *bm;
2197
2198 lock_kernel();
2199
2200 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002201 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002202 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002204 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 printk(KERN_ERR "udf: udf_count_free failed\n");
2206 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002207 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002208 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 printk(KERN_ERR "udf: udf_count_free failed\n");
2210 goto out;
2211 }
2212
2213 bm = (struct spaceBitmapDesc *)bh->b_data;
2214 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002215 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2216 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002218 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002219 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2220 accum += bitmap_weight((const unsigned long *)(ptr + index),
2221 cur_bytes * 8);
2222 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002223 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002224 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002225 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002227 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 udf_debug("read failed\n");
2229 goto out;
2230 }
2231 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002232 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
2234 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002235 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002237out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 unlock_kernel();
2239
2240 return accum;
2241}
2242
Marcin Slusarz4b111112008-02-08 04:20:36 -08002243static unsigned int udf_count_free_table(struct super_block *sb,
2244 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
2246 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002247 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002248 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002250 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252 lock_kernel();
2253
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002254 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002255 epos.offset = sizeof(struct unallocSpaceEntry);
2256 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002258 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002260
Jan Kara3bf25cb2007-05-08 00:35:16 -07002261 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 unlock_kernel();
2264
2265 return accum;
2266}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002267
2268static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269{
2270 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002271 struct udf_sb_info *sbi;
2272 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002274 sbi = UDF_SB(sb);
2275 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002276 struct logicalVolIntegrityDesc *lvid =
2277 (struct logicalVolIntegrityDesc *)
2278 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002279 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002280 accum = le32_to_cpu(
2281 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 if (accum == 0xFFFFFFFF)
2283 accum = 0;
2284 }
2285 }
2286
2287 if (accum)
2288 return accum;
2289
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002290 map = &sbi->s_partmaps[sbi->s_partition];
2291 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002292 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002293 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002295 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002296 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002297 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 }
2299 if (accum)
2300 return accum;
2301
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002302 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002303 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002304 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002306 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002307 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002308 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
2310
2311 return accum;
2312}