blob: 441b892cf85e7c7f9dc56a4a56fe1931e346acce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * super.c
3 *
4 * PURPOSE
5 * Super block routines for the OSTA-UDF(tm) filesystem.
6 *
7 * DESCRIPTION
8 * OSTA-UDF(tm) = Optical Storage Technology Association
9 * Universal Disk Format.
10 *
11 * This code is based on version 2.00 of the UDF specification,
12 * and revision 3 of the ECMA 167 standard [equivalent to ISO 13346].
13 * http://www.osta.org/
14 * http://www.ecma.ch/
15 * http://www.iso.org/
16 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * COPYRIGHT
18 * This file is distributed under the terms of the GNU General Public
19 * License (GPL). Copies of the GPL can be obtained from:
20 * ftp://prep.ai.mit.edu/pub/gnu/GPL
21 * Each contributing author retains all rights to their own work.
22 *
23 * (C) 1998 Dave Boynton
24 * (C) 1998-2004 Ben Fennema
25 * (C) 2000 Stelias Computing Inc
26 *
27 * HISTORY
28 *
29 * 09/24/98 dgb changed to allow compiling outside of kernel, and
30 * added some debugging.
31 * 10/01/98 dgb updated to allow (some) possibility of compiling w/2.0.34
32 * 10/16/98 attempting some multi-session support
33 * 10/17/98 added freespace count for "df"
34 * 11/11/98 gr added novrs option
35 * 11/26/98 dgb added fileset,anchor mount options
Marcin Slusarz3a71fc52008-02-08 04:20:28 -080036 * 12/06/98 blf really hosed things royally. vat/sparing support. sequenced
37 * vol descs. rewrote option handling based on isofs
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * 12/20/98 find the free space bitmap (if it exists)
39 */
40
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070041#include "udfdecl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/blkdev.h>
44#include <linux/slab.h>
45#include <linux/kernel.h>
46#include <linux/module.h>
47#include <linux/parser.h>
48#include <linux/stat.h>
49#include <linux/cdrom.h>
50#include <linux/nls.h>
51#include <linux/smp_lock.h>
52#include <linux/buffer_head.h>
53#include <linux/vfs.h>
54#include <linux/vmalloc.h>
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -080055#include <linux/errno.h>
Miklos Szeredi6da80892008-02-08 04:21:50 -080056#include <linux/mount.h>
57#include <linux/seq_file.h>
Marcin Slusarz01b954a2008-02-02 22:37:07 +010058#include <linux/bitmap.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020059#include <linux/crc-itu-t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/byteorder.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include "udf_sb.h"
63#include "udf_i.h"
64
65#include <linux/init.h>
66#include <asm/uaccess.h>
67
68#define VDS_POS_PRIMARY_VOL_DESC 0
69#define VDS_POS_UNALLOC_SPACE_DESC 1
70#define VDS_POS_LOGICAL_VOL_DESC 2
71#define VDS_POS_PARTITION_DESC 3
72#define VDS_POS_IMP_USE_VOL_DESC 4
73#define VDS_POS_VOL_DESC_PTR 5
74#define VDS_POS_TERMINATING_DESC 6
75#define VDS_POS_LENGTH 7
76
Miklos Szeredi6da80892008-02-08 04:21:50 -080077#define UDF_DEFAULT_BLOCKSIZE 2048
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static char error_buf[1024];
80
81/* These are the "meat" - everything else is stuffing */
82static int udf_fill_super(struct super_block *, void *, int);
83static void udf_put_super(struct super_block *);
Jan Kara146bca72009-03-16 18:27:37 +010084static int udf_sync_fs(struct super_block *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static int udf_remount_fs(struct super_block *, int *, char *);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020086static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020087static int udf_find_fileset(struct super_block *, struct kernel_lb_addr *,
88 struct kernel_lb_addr *);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070089static void udf_load_fileset(struct super_block *, struct buffer_head *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020090 struct kernel_lb_addr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static void udf_open_lvid(struct super_block *);
92static void udf_close_lvid(struct super_block *);
93static unsigned int udf_count_free(struct super_block *);
David Howells726c3342006-06-23 02:02:58 -070094static int udf_statfs(struct dentry *, struct kstatfs *);
Miklos Szeredi6da80892008-02-08 04:21:50 -080095static int udf_show_options(struct seq_file *, struct vfsmount *);
Adrian Bunkb8145a72008-02-17 10:19:55 +020096static void udf_error(struct super_block *sb, const char *function,
97 const char *fmt, ...);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Marcin Slusarz6c79e982008-02-08 04:20:30 -080099struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
100{
Marcin Slusarz4b111112008-02-08 04:20:36 -0800101 struct logicalVolIntegrityDesc *lvid =
102 (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800103 __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800104 __u32 offset = number_of_partitions * 2 *
105 sizeof(uint32_t)/sizeof(uint8_t);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800106 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/* UDF filesystem type */
Al Viro152a0832010-07-25 00:46:55 +0400110static struct dentry *udf_mount(struct file_system_type *fs_type,
111 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Al Viro152a0832010-07-25 00:46:55 +0400113 return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116static struct file_system_type udf_fstype = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700117 .owner = THIS_MODULE,
118 .name = "udf",
Al Viro152a0832010-07-25 00:46:55 +0400119 .mount = udf_mount,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700120 .kill_sb = kill_block_super,
121 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700124static struct kmem_cache *udf_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126static struct inode *udf_alloc_inode(struct super_block *sb)
127{
128 struct udf_inode_info *ei;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800129 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (!ei)
131 return NULL;
Dan Bastone95f87972006-08-13 23:24:18 -0700132
133 ei->i_unique = 0;
134 ei->i_lenExtents = 0;
135 ei->i_next_alloc_block = 0;
136 ei->i_next_alloc_goal = 0;
137 ei->i_strat4096 = 0;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100138 init_rwsem(&ei->i_data_sem);
Dan Bastone95f87972006-08-13 23:24:18 -0700139
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,
Al Viro3aac2b62010-06-07 00:43:39 -0400178 .evict_inode = udf_evict_inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700179 .put_super = udf_put_super,
Jan Kara146bca72009-03-16 18:27:37 +0100180 .sync_fs = udf_sync_fs,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700181 .statfs = udf_statfs,
182 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800183 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700186struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 unsigned char novrs;
188 unsigned int blocksize;
189 unsigned int session;
190 unsigned int lastblock;
191 unsigned int anchor;
192 unsigned int volume;
193 unsigned short partition;
194 unsigned int fileset;
195 unsigned int rootdir;
196 unsigned int flags;
197 mode_t umask;
198 gid_t gid;
199 uid_t uid;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100200 mode_t fmode;
201 mode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct nls_table *nls_map;
203};
204
205static int __init init_udf_fs(void)
206{
207 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 err = init_inodecache();
210 if (err)
211 goto out1;
212 err = register_filesystem(&udf_fstype);
213 if (err)
214 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700217
218out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700220
221out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return err;
223}
224
225static void __exit exit_udf_fs(void)
226{
227 unregister_filesystem(&udf_fstype);
228 destroy_inodecache();
229}
230
231module_init(init_udf_fs)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700232module_exit(exit_udf_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800234static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
235{
236 struct udf_sb_info *sbi = UDF_SB(sb);
237
238 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
239 GFP_KERNEL);
240 if (!sbi->s_partmaps) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700241 udf_error(sb, __func__,
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800242 "Unable to allocate space for %d partition maps",
243 count);
244 sbi->s_partitions = 0;
245 return -ENOMEM;
246 }
247
248 sbi->s_partitions = count;
249 return 0;
250}
251
Miklos Szeredi6da80892008-02-08 04:21:50 -0800252static int udf_show_options(struct seq_file *seq, struct vfsmount *mnt)
253{
254 struct super_block *sb = mnt->mnt_sb;
255 struct udf_sb_info *sbi = UDF_SB(sb);
256
257 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
258 seq_puts(seq, ",nostrict");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100259 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
Miklos Szeredi6da80892008-02-08 04:21:50 -0800260 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
261 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
262 seq_puts(seq, ",unhide");
263 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
264 seq_puts(seq, ",undelete");
265 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
266 seq_puts(seq, ",noadinicb");
267 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
268 seq_puts(seq, ",shortad");
269 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
270 seq_puts(seq, ",uid=forget");
271 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
272 seq_puts(seq, ",uid=ignore");
273 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
274 seq_puts(seq, ",gid=forget");
275 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
276 seq_puts(seq, ",gid=ignore");
277 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
278 seq_printf(seq, ",uid=%u", sbi->s_uid);
279 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
280 seq_printf(seq, ",gid=%u", sbi->s_gid);
281 if (sbi->s_umask != 0)
282 seq_printf(seq, ",umask=%o", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100283 if (sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100284 seq_printf(seq, ",mode=%o", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100285 if (sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100286 seq_printf(seq, ",dmode=%o", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800287 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
288 seq_printf(seq, ",session=%u", sbi->s_session);
289 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
290 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
Jan Kara40346002009-03-19 16:21:38 +0100291 if (sbi->s_anchor != 0)
292 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800293 /*
294 * volume, partition, fileset and rootdir seem to be ignored
295 * currently
296 */
297 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
298 seq_puts(seq, ",utf8");
299 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
300 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
301
302 return 0;
303}
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/*
306 * udf_parse_options
307 *
308 * PURPOSE
309 * Parse mount options.
310 *
311 * DESCRIPTION
312 * The following mount options are supported:
313 *
314 * gid= Set the default group.
315 * umask= Set the default umask.
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100316 * mode= Set the default file permissions.
317 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 * uid= Set the default user.
319 * bs= Set the block size.
320 * unhide Show otherwise hidden files.
321 * undelete Show deleted files in lists.
322 * adinicb Embed data in the inode (default)
323 * noadinicb Don't embed data in the inode
324 * shortad Use short ad's
325 * longad Use long ad's (default)
326 * nostrict Unset strict conformance
327 * iocharset= Set the NLS character set
328 *
329 * The remaining are for debugging and disaster recovery:
330 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700331 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 *
333 * The following expect a offset from 0.
334 *
335 * session= Set the CDROM session (default= last session)
336 * anchor= Override standard anchor location. (default= 256)
337 * volume= Override the VolumeDesc location. (unused)
338 * partition= Override the PartitionDesc location. (unused)
339 * lastblock= Set the last block of the filesystem/
340 *
341 * The following expect a offset from the partition root.
342 *
343 * fileset= Override the fileset block location. (unused)
344 * rootdir= Override the root directory location. (unused)
345 * WARNING: overriding the rootdir to a non-directory may
346 * yield highly unpredictable results.
347 *
348 * PRE-CONDITIONS
349 * options Pointer to mount options string.
350 * uopts Pointer to mount options variable.
351 *
352 * POST-CONDITIONS
353 * <return> 1 Mount options parsed okay.
354 * <return> 0 Error parsing mount options.
355 *
356 * HISTORY
357 * July 1, 1997 - Andrew E. Mileski
358 * Written, tested, and released.
359 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361enum {
362 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
363 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
364 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
365 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
366 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100367 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
368 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369};
370
Steven Whitehousea447c092008-10-13 10:46:57 +0100371static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700372 {Opt_novrs, "novrs"},
373 {Opt_nostrict, "nostrict"},
374 {Opt_bs, "bs=%u"},
375 {Opt_unhide, "unhide"},
376 {Opt_undelete, "undelete"},
377 {Opt_noadinicb, "noadinicb"},
378 {Opt_adinicb, "adinicb"},
379 {Opt_shortad, "shortad"},
380 {Opt_longad, "longad"},
381 {Opt_uforget, "uid=forget"},
382 {Opt_uignore, "uid=ignore"},
383 {Opt_gforget, "gid=forget"},
384 {Opt_gignore, "gid=ignore"},
385 {Opt_gid, "gid=%u"},
386 {Opt_uid, "uid=%u"},
387 {Opt_umask, "umask=%o"},
388 {Opt_session, "session=%u"},
389 {Opt_lastblock, "lastblock=%u"},
390 {Opt_anchor, "anchor=%u"},
391 {Opt_volume, "volume=%u"},
392 {Opt_partition, "partition=%u"},
393 {Opt_fileset, "fileset=%u"},
394 {Opt_rootdir, "rootdir=%u"},
395 {Opt_utf8, "utf8"},
396 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100397 {Opt_fmode, "mode=%o"},
398 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700399 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400};
401
Miklos Szeredi6da80892008-02-08 04:21:50 -0800402static int udf_parse_options(char *options, struct udf_options *uopt,
403 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 char *p;
406 int option;
407
408 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 uopt->partition = 0xFFFF;
410 uopt->session = 0xFFFFFFFF;
411 uopt->lastblock = 0;
412 uopt->anchor = 0;
413 uopt->volume = 0xFFFFFFFF;
414 uopt->rootdir = 0xFFFFFFFF;
415 uopt->fileset = 0xFFFFFFFF;
416 uopt->nls_map = NULL;
417
418 if (!options)
419 return 1;
420
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700421 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 substring_t args[MAX_OPT_ARGS];
423 int token;
424 if (!*p)
425 continue;
426
427 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700428 switch (token) {
429 case Opt_novrs:
430 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100431 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700432 case Opt_bs:
433 if (match_int(&args[0], &option))
434 return 0;
435 uopt->blocksize = option;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100436 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700437 break;
438 case Opt_unhide:
439 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
440 break;
441 case Opt_undelete:
442 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
443 break;
444 case Opt_noadinicb:
445 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
446 break;
447 case Opt_adinicb:
448 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
449 break;
450 case Opt_shortad:
451 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
452 break;
453 case Opt_longad:
454 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
455 break;
456 case Opt_gid:
457 if (match_int(args, &option))
458 return 0;
459 uopt->gid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700460 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700461 break;
462 case Opt_uid:
463 if (match_int(args, &option))
464 return 0;
465 uopt->uid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700466 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700467 break;
468 case Opt_umask:
469 if (match_octal(args, &option))
470 return 0;
471 uopt->umask = option;
472 break;
473 case Opt_nostrict:
474 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
475 break;
476 case Opt_session:
477 if (match_int(args, &option))
478 return 0;
479 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800480 if (!remount)
481 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700482 break;
483 case Opt_lastblock:
484 if (match_int(args, &option))
485 return 0;
486 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800487 if (!remount)
488 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700489 break;
490 case Opt_anchor:
491 if (match_int(args, &option))
492 return 0;
493 uopt->anchor = option;
494 break;
495 case Opt_volume:
496 if (match_int(args, &option))
497 return 0;
498 uopt->volume = option;
499 break;
500 case Opt_partition:
501 if (match_int(args, &option))
502 return 0;
503 uopt->partition = option;
504 break;
505 case Opt_fileset:
506 if (match_int(args, &option))
507 return 0;
508 uopt->fileset = option;
509 break;
510 case Opt_rootdir:
511 if (match_int(args, &option))
512 return 0;
513 uopt->rootdir = option;
514 break;
515 case Opt_utf8:
516 uopt->flags |= (1 << UDF_FLAG_UTF8);
517 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700519 case Opt_iocharset:
520 uopt->nls_map = load_nls(args[0].from);
521 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
522 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700524 case Opt_uignore:
525 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
526 break;
527 case Opt_uforget:
528 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
529 break;
530 case Opt_gignore:
531 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
532 break;
533 case Opt_gforget:
534 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
535 break;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100536 case Opt_fmode:
537 if (match_octal(args, &option))
538 return 0;
539 uopt->fmode = option & 0777;
540 break;
541 case Opt_dmode:
542 if (match_octal(args, &option))
543 return 0;
544 uopt->dmode = option & 0777;
545 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700546 default:
547 printk(KERN_ERR "udf: bad mount option \"%s\" "
548 "or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return 0;
550 }
551 }
552 return 1;
553}
554
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700555static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800558 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400559 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800561 uopt.flags = sbi->s_flags;
562 uopt.uid = sbi->s_uid;
563 uopt.gid = sbi->s_gid;
564 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100565 uopt.fmode = sbi->s_fmode;
566 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Miklos Szeredi6da80892008-02-08 04:21:50 -0800568 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return -EINVAL;
570
Jan Karac03cad22010-10-20 22:17:28 +0200571 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800572 sbi->s_flags = uopt.flags;
573 sbi->s_uid = uopt.uid;
574 sbi->s_gid = uopt.gid;
575 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100576 sbi->s_fmode = uopt.fmode;
577 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200578 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800580 if (sbi->s_lvid_bh) {
581 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (write_rev > UDF_MAX_WRITE_VERSION)
583 *flags |= MS_RDONLY;
584 }
585
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400586 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
587 goto out_unlock;
588
Jan Kara36350462010-05-19 16:28:56 +0200589 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200591 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 udf_open_lvid(sb);
593
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400594out_unlock:
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400595 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Jan Kara40346002009-03-19 16:21:38 +0100598/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
599/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
600static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200603 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 int sectorsize;
605 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700606 int nsr02 = 0;
607 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800608 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800610 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (sb->s_blocksize < sizeof(struct volStructDesc))
612 sectorsize = sizeof(struct volStructDesc);
613 else
614 sectorsize = sb->s_blocksize;
615
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800616 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200619 (unsigned int)(sector >> sb->s_blocksize_bits),
620 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700622 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 /* Read a block */
624 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
625 if (!bh)
626 break;
627
628 /* Look for ISO descriptors */
629 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800630 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700632 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700633 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800635 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
636 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700637 switch (vsd->structType) {
638 case 0:
639 udf_debug("ISO9660 Boot Record found\n");
640 break;
641 case 1:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800642 udf_debug("ISO9660 Primary Volume Descriptor "
643 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700644 break;
645 case 2:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800646 udf_debug("ISO9660 Supplementary Volume "
647 "Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700648 break;
649 case 3:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800650 udf_debug("ISO9660 Volume Partition Descriptor "
651 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700652 break;
653 case 255:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800654 udf_debug("ISO9660 Volume Descriptor Set "
655 "Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700656 break;
657 default:
658 udf_debug("ISO9660 VRS (%u) found\n",
659 vsd->structType);
660 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800662 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
663 VSD_STD_ID_LEN))
664 ; /* nothing */
665 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
666 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700667 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800669 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
670 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800672 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
673 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700675 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677
678 if (nsr03)
679 return nsr03;
680 else if (nsr02)
681 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800682 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return -1;
684 else
685 return 0;
686}
687
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800688static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200689 struct kernel_lb_addr *fileset,
690 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 struct buffer_head *bh = NULL;
693 long lastblock;
694 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800695 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700698 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200699 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700701 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700703 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700704 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return 1;
706 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800710 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800711 if (!bh) {
712 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200713 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700715/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700717
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800718 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700719 (newfileset.partitionReferenceNum != 0xFFFF &&
720 fileset->logicalBlockNum == 0xFFFFFFFF &&
721 fileset->partitionReferenceNum == 0xFFFF);
722 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800723 lastblock = sbi->s_partmaps
724 [newfileset.partitionReferenceNum]
725 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 newfileset.logicalBlockNum = 0;
727
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700728 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200729 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800730 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700731 if (!bh) {
732 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 continue;
734 }
735
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700736 switch (ident) {
737 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700738 {
739 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800740 sp = (struct spaceBitmapDesc *)
741 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700742 newfileset.logicalBlockNum += 1 +
743 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800744 sizeof(struct spaceBitmapDesc)
745 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700746 brelse(bh);
747 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700749 case TAG_IDENT_FSD:
750 *fileset = newfileset;
751 break;
752 default:
753 newfileset.logicalBlockNum++;
754 brelse(bh);
755 bh = NULL;
756 break;
757 }
758 } while (newfileset.logicalBlockNum < lastblock &&
759 fileset->logicalBlockNum == 0xFFFFFFFF &&
760 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762 }
763
764 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700765 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700767 fileset->logicalBlockNum,
768 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800770 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700772 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return 0;
774 }
775 return 1;
776}
777
Jan Karac0eb31e2008-04-01 16:50:35 +0200778static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100781 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200782 struct buffer_head *bh;
783 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100784 int ret = 1;
785
786 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
787 if (!instr)
788 return 1;
789
790 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
791 if (!outstr)
792 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200793
794 bh = udf_read_tagged(sb, block, block, &ident);
795 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100796 goto out2;
797
Jan Karac0eb31e2008-04-01 16:50:35 +0200798 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 pvoldesc = (struct primaryVolDesc *)bh->b_data;
801
Marcin Slusarz56774802008-02-10 11:25:31 +0100802 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
803 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100804#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200805 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +0100806 udf_debug("recording time %04u/%02u/%02u"
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800807 " %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100808 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
809 ts->minute, le16_to_cpu(ts->typeAndTimezone));
810#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100813 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
814 if (udf_CS0toUTF8(outstr, instr)) {
815 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
816 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800817 udf_debug("volIdent[] = '%s'\n",
818 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100821 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
822 if (udf_CS0toUTF8(outstr, instr))
823 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200824
825 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100826 ret = 0;
827out2:
828 kfree(outstr);
829out1:
830 kfree(instr);
831 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
Jan Karabfb257a2008-04-08 20:37:21 +0200834static int udf_load_metadata_files(struct super_block *sb, int partition)
835{
836 struct udf_sb_info *sbi = UDF_SB(sb);
837 struct udf_part_map *map;
838 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200839 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200840 int fe_error = 0;
841
842 map = &sbi->s_partmaps[partition];
843 mdata = &map->s_type_specific.s_metadata;
844
845 /* metadata address */
846 addr.logicalBlockNum = mdata->s_meta_file_loc;
847 addr.partitionReferenceNum = map->s_partition_num;
848
849 udf_debug("Metadata file location: block = %d part = %d\n",
850 addr.logicalBlockNum, addr.partitionReferenceNum);
851
Pekka Enberg97e961f2008-10-15 12:29:03 +0200852 mdata->s_metadata_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200853
854 if (mdata->s_metadata_fe == NULL) {
855 udf_warning(sb, __func__, "metadata inode efe not found, "
856 "will try mirror inode.");
857 fe_error = 1;
858 } else if (UDF_I(mdata->s_metadata_fe)->i_alloc_type !=
859 ICBTAG_FLAG_AD_SHORT) {
860 udf_warning(sb, __func__, "metadata inode efe does not have "
861 "short allocation descriptors!");
862 fe_error = 1;
863 iput(mdata->s_metadata_fe);
864 mdata->s_metadata_fe = NULL;
865 }
866
867 /* mirror file entry */
868 addr.logicalBlockNum = mdata->s_mirror_file_loc;
869 addr.partitionReferenceNum = map->s_partition_num;
870
871 udf_debug("Mirror metadata file location: block = %d part = %d\n",
872 addr.logicalBlockNum, addr.partitionReferenceNum);
873
Pekka Enberg97e961f2008-10-15 12:29:03 +0200874 mdata->s_mirror_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200875
876 if (mdata->s_mirror_fe == NULL) {
877 if (fe_error) {
878 udf_error(sb, __func__, "mirror inode efe not found "
879 "and metadata inode is missing too, exiting...");
880 goto error_exit;
881 } else
882 udf_warning(sb, __func__, "mirror inode efe not found,"
883 " but metadata inode is OK");
884 } else if (UDF_I(mdata->s_mirror_fe)->i_alloc_type !=
885 ICBTAG_FLAG_AD_SHORT) {
886 udf_warning(sb, __func__, "mirror inode efe does not have "
887 "short allocation descriptors!");
888 iput(mdata->s_mirror_fe);
889 mdata->s_mirror_fe = NULL;
890 if (fe_error)
891 goto error_exit;
892 }
893
894 /*
895 * bitmap file entry
896 * Note:
897 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
898 */
899 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
900 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
901 addr.partitionReferenceNum = map->s_partition_num;
902
903 udf_debug("Bitmap file location: block = %d part = %d\n",
904 addr.logicalBlockNum, addr.partitionReferenceNum);
905
Pekka Enberg97e961f2008-10-15 12:29:03 +0200906 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200907
908 if (mdata->s_bitmap_fe == NULL) {
909 if (sb->s_flags & MS_RDONLY)
910 udf_warning(sb, __func__, "bitmap inode efe "
911 "not found but it's ok since the disc"
912 " is mounted read-only");
913 else {
914 udf_error(sb, __func__, "bitmap inode efe not "
915 "found and attempted read-write mount");
916 goto error_exit;
917 }
918 }
919 }
920
921 udf_debug("udf_load_metadata_files Ok\n");
922
923 return 0;
924
925error_exit:
926 return 1;
927}
928
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700929static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200930 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
932 struct fileSetDesc *fset;
933
934 fset = (struct fileSetDesc *)bh->b_data;
935
936 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
937
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800938 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700940 udf_debug("Rootdir at block=%d, partition=%d\n",
941 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800944int udf_compute_nr_groups(struct super_block *sb, u32 partition)
945{
946 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +0100947 return DIV_ROUND_UP(map->s_partition_len +
948 (sizeof(struct spaceBitmapDesc) << 3),
949 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800950}
951
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800952static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
953{
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800954 struct udf_bitmap *bitmap;
955 int nr_groups;
956 int size;
957
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800958 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800959 size = sizeof(struct udf_bitmap) +
960 (sizeof(struct buffer_head *) * nr_groups);
961
962 if (size <= PAGE_SIZE)
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700963 bitmap = kzalloc(size, GFP_KERNEL);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800964 else
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700965 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800966
967 if (bitmap == NULL) {
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700968 udf_error(sb, __func__,
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800969 "Unable to allocate space for bitmap "
970 "and %d buffer_head pointers", nr_groups);
971 return NULL;
972 }
973
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800974 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
975 bitmap->s_nr_groups = nr_groups;
976 return bitmap;
977}
978
Jan Kara3fb38df2008-04-02 12:26:36 +0200979static int udf_fill_partdesc_info(struct super_block *sb,
980 struct partitionDesc *p, int p_index)
981{
982 struct udf_part_map *map;
983 struct udf_sb_info *sbi = UDF_SB(sb);
984 struct partitionHeaderDesc *phd;
985
986 map = &sbi->s_partmaps[p_index];
987
988 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
989 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
990
991 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
992 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
993 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
994 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
995 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
996 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
997 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
998 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
999
Sebastian Manciulea706047a2008-04-14 17:13:01 +02001000 udf_debug("Partition (%d type %x) starts at physical %d, "
1001 "block length %d\n", p_index,
Jan Kara3fb38df2008-04-02 12:26:36 +02001002 map->s_partition_type, map->s_partition_root,
1003 map->s_partition_len);
1004
1005 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1006 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1007 return 0;
1008
1009 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1010 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001011 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001012 .logicalBlockNum = le32_to_cpu(
1013 phd->unallocSpaceTable.extPosition),
1014 .partitionReferenceNum = p_index,
1015 };
1016
Pekka Enberg97e961f2008-10-15 12:29:03 +02001017 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001018 if (!map->s_uspace.s_table) {
1019 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1020 p_index);
1021 return 1;
1022 }
1023 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1024 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1025 p_index, map->s_uspace.s_table->i_ino);
1026 }
1027
1028 if (phd->unallocSpaceBitmap.extLength) {
1029 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1030 if (!bitmap)
1031 return 1;
1032 map->s_uspace.s_bitmap = bitmap;
1033 bitmap->s_extLength = le32_to_cpu(
1034 phd->unallocSpaceBitmap.extLength);
1035 bitmap->s_extPosition = le32_to_cpu(
1036 phd->unallocSpaceBitmap.extPosition);
1037 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
1038 udf_debug("unallocSpaceBitmap (part %d) @ %d\n", p_index,
1039 bitmap->s_extPosition);
1040 }
1041
1042 if (phd->partitionIntegrityTable.extLength)
1043 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1044
1045 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001046 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001047 .logicalBlockNum = le32_to_cpu(
1048 phd->freedSpaceTable.extPosition),
1049 .partitionReferenceNum = p_index,
1050 };
1051
Pekka Enberg97e961f2008-10-15 12:29:03 +02001052 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001053 if (!map->s_fspace.s_table) {
1054 udf_debug("cannot load freedSpaceTable (part %d)\n",
1055 p_index);
1056 return 1;
1057 }
1058
1059 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1060 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1061 p_index, map->s_fspace.s_table->i_ino);
1062 }
1063
1064 if (phd->freedSpaceBitmap.extLength) {
1065 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1066 if (!bitmap)
1067 return 1;
1068 map->s_fspace.s_bitmap = bitmap;
1069 bitmap->s_extLength = le32_to_cpu(
1070 phd->freedSpaceBitmap.extLength);
1071 bitmap->s_extPosition = le32_to_cpu(
1072 phd->freedSpaceBitmap.extPosition);
1073 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
1074 udf_debug("freedSpaceBitmap (part %d) @ %d\n", p_index,
1075 bitmap->s_extPosition);
1076 }
1077 return 0;
1078}
1079
Jan Karae971b0b2009-11-30 19:47:55 +01001080static void udf_find_vat_block(struct super_block *sb, int p_index,
1081 int type1_index, sector_t start_block)
1082{
1083 struct udf_sb_info *sbi = UDF_SB(sb);
1084 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1085 sector_t vat_block;
1086 struct kernel_lb_addr ino;
1087
1088 /*
1089 * VAT file entry is in the last recorded block. Some broken disks have
1090 * it a few blocks before so try a bit harder...
1091 */
1092 ino.partitionReferenceNum = type1_index;
1093 for (vat_block = start_block;
1094 vat_block >= map->s_partition_root &&
1095 vat_block >= start_block - 3 &&
1096 !sbi->s_vat_inode; vat_block--) {
1097 ino.logicalBlockNum = vat_block - map->s_partition_root;
1098 sbi->s_vat_inode = udf_iget(sb, &ino);
1099 }
1100}
1101
Jan Kara38b74a52008-04-02 16:01:35 +02001102static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1103{
1104 struct udf_sb_info *sbi = UDF_SB(sb);
1105 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001106 struct buffer_head *bh = NULL;
1107 struct udf_inode_info *vati;
1108 uint32_t pos;
1109 struct virtualAllocationTable20 *vat20;
Jan Kara4bf17af2009-07-14 19:30:23 +02001110 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001111
Jan Karae971b0b2009-11-30 19:47:55 +01001112 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001113 if (!sbi->s_vat_inode &&
1114 sbi->s_last_block != blocks - 1) {
1115 printk(KERN_NOTICE "UDF-fs: Failed to read VAT inode from the"
1116 " last recorded block (%lu), retrying with the last "
1117 "block of the device (%lu).\n",
1118 (unsigned long)sbi->s_last_block,
1119 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001120 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001121 }
Jan Kara38b74a52008-04-02 16:01:35 +02001122 if (!sbi->s_vat_inode)
1123 return 1;
1124
1125 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001126 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001127 map->s_type_specific.s_virtual.s_num_entries =
1128 (sbi->s_vat_inode->i_size - 36) >> 2;
1129 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001130 vati = UDF_I(sbi->s_vat_inode);
1131 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1132 pos = udf_block_map(sbi->s_vat_inode, 0);
1133 bh = sb_bread(sb, pos);
1134 if (!bh)
1135 return 1;
1136 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1137 } else {
1138 vat20 = (struct virtualAllocationTable20 *)
1139 vati->i_ext.i_data;
1140 }
Jan Kara38b74a52008-04-02 16:01:35 +02001141
Jan Kara38b74a52008-04-02 16:01:35 +02001142 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001143 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001144 map->s_type_specific.s_virtual.s_num_entries =
1145 (sbi->s_vat_inode->i_size -
1146 map->s_type_specific.s_virtual.
1147 s_start_offset) >> 2;
1148 brelse(bh);
1149 }
1150 return 0;
1151}
1152
Jan Karac0eb31e2008-04-01 16:50:35 +02001153static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Jan Karac0eb31e2008-04-01 16:50:35 +02001155 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001156 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001157 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001158 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001159 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001160 uint16_t partitionNumber;
1161 uint16_t ident;
1162 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Jan Karac0eb31e2008-04-01 16:50:35 +02001164 bh = udf_read_tagged(sb, block, block, &ident);
1165 if (!bh)
1166 return 1;
1167 if (ident != TAG_IDENT_PD)
1168 goto out_bh;
1169
1170 p = (struct partitionDesc *)bh->b_data;
1171 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001172
Jan Karabfb257a2008-04-08 20:37:21 +02001173 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001174 for (i = 0; i < sbi->s_partitions; i++) {
1175 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001176 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001177 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001178 if (map->s_partition_num == partitionNumber &&
1179 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1180 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001182 }
1183
Jan Kara38b74a52008-04-02 16:01:35 +02001184 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001185 udf_debug("Partition (%d) not found in partition map\n",
1186 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001187 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001188 }
1189
Jan Kara3fb38df2008-04-02 12:26:36 +02001190 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001191
1192 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001193 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1194 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001195 */
1196 type1_idx = i;
1197 for (i = 0; i < sbi->s_partitions; i++) {
1198 map = &sbi->s_partmaps[i];
1199
1200 if (map->s_partition_num == partitionNumber &&
1201 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001202 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1203 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001204 break;
1205 }
1206
1207 if (i >= sbi->s_partitions)
1208 goto out_bh;
1209
1210 ret = udf_fill_partdesc_info(sb, p, i);
1211 if (ret)
1212 goto out_bh;
1213
Jan Karabfb257a2008-04-08 20:37:21 +02001214 if (map->s_partition_type == UDF_METADATA_MAP25) {
1215 ret = udf_load_metadata_files(sb, i);
1216 if (ret) {
1217 printk(KERN_ERR "UDF-fs: error loading MetaData "
1218 "partition map %d\n", i);
1219 goto out_bh;
1220 }
1221 } else {
1222 ret = udf_load_vat(sb, i, type1_idx);
1223 if (ret)
1224 goto out_bh;
1225 /*
1226 * Mark filesystem read-only if we have a partition with
1227 * virtual map since we don't handle writing to it (we
1228 * overwrite blocks instead of relocating them).
1229 */
1230 sb->s_flags |= MS_RDONLY;
1231 printk(KERN_NOTICE "UDF-fs: Filesystem marked read-only "
1232 "because writing to pseudooverwrite partition is "
1233 "not implemented.\n");
1234 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001235out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001236 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001237 brelse(bh);
1238 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
Jan Karac0eb31e2008-04-01 16:50:35 +02001241static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001242 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
1244 struct logicalVolDesc *lvd;
1245 int i, j, offset;
1246 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001247 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001248 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001249 uint16_t ident;
1250 struct buffer_head *bh;
1251 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Jan Karac0eb31e2008-04-01 16:50:35 +02001253 bh = udf_read_tagged(sb, block, block, &ident);
1254 if (!bh)
1255 return 1;
1256 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 lvd = (struct logicalVolDesc *)bh->b_data;
1258
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -08001259 i = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
Jan Karac0eb31e2008-04-01 16:50:35 +02001260 if (i != 0) {
1261 ret = i;
1262 goto out_bh;
1263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001265 for (i = 0, offset = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001266 i < sbi->s_partitions && offset < le32_to_cpu(lvd->mapTableLength);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001267 i++, offset += gpm->partitionMapLength) {
1268 struct udf_part_map *map = &sbi->s_partmaps[i];
1269 gpm = (struct genericPartitionMap *)
1270 &(lvd->partitionMaps[offset]);
1271 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001272 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001273 struct genericPartitionMap1 *gpm1 =
1274 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001275 map->s_partition_type = UDF_TYPE1_MAP15;
1276 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1277 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1278 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001279 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001280 struct udfPartitionMap2 *upm2 =
1281 (struct udfPartitionMap2 *)gpm;
1282 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1283 strlen(UDF_ID_VIRTUAL))) {
1284 u16 suf =
1285 le16_to_cpu(((__le16 *)upm2->partIdent.
1286 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001287 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001288 map->s_partition_type =
1289 UDF_VIRTUAL_MAP15;
1290 map->s_partition_func =
1291 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001292 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001293 map->s_partition_type =
1294 UDF_VIRTUAL_MAP20;
1295 map->s_partition_func =
1296 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001298 } else if (!strncmp(upm2->partIdent.ident,
1299 UDF_ID_SPARABLE,
1300 strlen(UDF_ID_SPARABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 uint32_t loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 struct sparingTable *st;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001303 struct sparablePartitionMap *spm =
1304 (struct sparablePartitionMap *)gpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001306 map->s_partition_type = UDF_SPARABLE_MAP15;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001307 map->s_type_specific.s_sparing.s_packet_len =
1308 le16_to_cpu(spm->packetLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001309 for (j = 0; j < spm->numSparingTables; j++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001310 struct buffer_head *bh2;
1311
1312 loc = le32_to_cpu(
1313 spm->locSparingTable[j]);
1314 bh2 = udf_read_tagged(sb, loc, loc,
1315 &ident);
1316 map->s_type_specific.s_sparing.
1317 s_spar_map[j] = bh2;
1318
Marcin Slusarz165923f2008-02-10 11:33:08 +01001319 if (bh2 == NULL)
1320 continue;
1321
1322 st = (struct sparingTable *)bh2->b_data;
1323 if (ident != 0 || strncmp(
1324 st->sparingIdent.ident,
1325 UDF_ID_SPARING,
1326 strlen(UDF_ID_SPARING))) {
1327 brelse(bh2);
1328 map->s_type_specific.s_sparing.
1329 s_spar_map[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001332 map->s_partition_func = udf_get_pblock_spar15;
Jan Karabfb257a2008-04-08 20:37:21 +02001333 } else if (!strncmp(upm2->partIdent.ident,
1334 UDF_ID_METADATA,
1335 strlen(UDF_ID_METADATA))) {
1336 struct udf_meta_data *mdata =
1337 &map->s_type_specific.s_metadata;
1338 struct metadataPartitionMap *mdm =
1339 (struct metadataPartitionMap *)
1340 &(lvd->partitionMaps[offset]);
1341 udf_debug("Parsing Logical vol part %d "
1342 "type %d id=%s\n", i, type,
1343 UDF_ID_METADATA);
1344
1345 map->s_partition_type = UDF_METADATA_MAP25;
1346 map->s_partition_func = udf_get_pblock_meta25;
1347
1348 mdata->s_meta_file_loc =
1349 le32_to_cpu(mdm->metadataFileLoc);
1350 mdata->s_mirror_file_loc =
1351 le32_to_cpu(mdm->metadataMirrorFileLoc);
1352 mdata->s_bitmap_file_loc =
1353 le32_to_cpu(mdm->metadataBitmapFileLoc);
1354 mdata->s_alloc_unit_size =
1355 le32_to_cpu(mdm->allocUnitSize);
1356 mdata->s_align_unit_size =
1357 le16_to_cpu(mdm->alignUnitSize);
1358 mdata->s_dup_md_flag =
1359 mdm->flags & 0x01;
1360
1361 udf_debug("Metadata Ident suffix=0x%x\n",
1362 (le16_to_cpu(
1363 ((__le16 *)
1364 mdm->partIdent.identSuffix)[0])));
1365 udf_debug("Metadata part num=%d\n",
1366 le16_to_cpu(mdm->partitionNum));
1367 udf_debug("Metadata part alloc unit size=%d\n",
1368 le32_to_cpu(mdm->allocUnitSize));
1369 udf_debug("Metadata file loc=%d\n",
1370 le32_to_cpu(mdm->metadataFileLoc));
1371 udf_debug("Mirror file loc=%d\n",
1372 le32_to_cpu(mdm->metadataMirrorFileLoc));
1373 udf_debug("Bitmap file loc=%d\n",
1374 le32_to_cpu(mdm->metadataBitmapFileLoc));
1375 udf_debug("Duplicate Flag: %d %d\n",
1376 mdata->s_dup_md_flag, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001377 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001378 udf_debug("Unknown ident: %s\n",
1379 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 continue;
1381 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001382 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1383 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001386 i, map->s_partition_num, type,
1387 map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001390 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001391 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 *fileset = lelb_to_cpu(la->extLocation);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001394 udf_debug("FileSet found in LogicalVolDesc at block=%d, "
1395 "partition=%d\n", fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001396 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
1398 if (lvd->integritySeqExt.extLength)
1399 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001400
Jan Karac0eb31e2008-04-01 16:50:35 +02001401out_bh:
1402 brelse(bh);
1403 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
1406/*
1407 * udf_load_logicalvolint
1408 *
1409 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001410static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
1412 struct buffer_head *bh = NULL;
1413 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001414 struct udf_sb_info *sbi = UDF_SB(sb);
1415 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001418 (bh = udf_read_tagged(sb, loc.extLocation,
1419 loc.extLocation, &ident)) &&
1420 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001421 sbi->s_lvid_bh = bh;
1422 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001423
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001424 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001425 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001426 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001427
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001428 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001429 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001431 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001433 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001434 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435}
1436
1437/*
1438 * udf_process_sequence
1439 *
1440 * PURPOSE
1441 * Process a main/reserve volume descriptor sequence.
1442 *
1443 * PRE-CONDITIONS
1444 * sb Pointer to _locked_ superblock.
1445 * block First block of first extent of the sequence.
1446 * lastblock Lastblock of first extent of the sequence.
1447 *
1448 * HISTORY
1449 * July 1, 1997 - Andrew E. Mileski
1450 * Written, tested, and released.
1451 */
Jan Kara200a3592008-03-04 13:03:09 +01001452static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001453 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
1455 struct buffer_head *bh = NULL;
1456 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001457 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 struct generic_desc *gd;
1459 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001460 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 uint32_t vdsn;
1462 uint16_t ident;
1463 long next_s = 0, next_e = 0;
1464
1465 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1466
Jan Karac0eb31e2008-04-01 16:50:35 +02001467 /*
1468 * Read the main descriptor sequence and find which descriptors
1469 * are in it.
1470 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001471 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001474 if (!bh) {
1475 printk(KERN_ERR "udf: Block %Lu of volume descriptor "
1476 "sequence is corrupted or we could not read "
1477 "it.\n", (unsigned long long)block);
1478 return 1;
1479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1482 gd = (struct generic_desc *)bh->b_data;
1483 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001484 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001485 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001486 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1487 if (vdsn >= curr->volDescSeqNum) {
1488 curr->volDescSeqNum = vdsn;
1489 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001490 }
1491 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001492 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001493 curr = &vds[VDS_POS_VOL_DESC_PTR];
1494 if (vdsn >= curr->volDescSeqNum) {
1495 curr->volDescSeqNum = vdsn;
1496 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001498 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001499 next_s = le32_to_cpu(
1500 vdp->nextVolDescSeqExt.extLocation);
1501 next_e = le32_to_cpu(
1502 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001503 next_e = next_e >> sb->s_blocksize_bits;
1504 next_e += next_s;
1505 }
1506 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001507 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001508 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1509 if (vdsn >= curr->volDescSeqNum) {
1510 curr->volDescSeqNum = vdsn;
1511 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001512 }
1513 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001514 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001515 curr = &vds[VDS_POS_PARTITION_DESC];
1516 if (!curr->block)
1517 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001518 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001519 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001520 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1521 if (vdsn >= curr->volDescSeqNum) {
1522 curr->volDescSeqNum = vdsn;
1523 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001524 }
1525 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001526 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001527 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1528 if (vdsn >= curr->volDescSeqNum) {
1529 curr->volDescSeqNum = vdsn;
1530 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001531 }
1532 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001533 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001534 vds[VDS_POS_TERMINATING_DESC].block = block;
1535 if (next_e) {
1536 block = next_s;
1537 lastblock = next_e;
1538 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001539 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001540 done = 1;
1541 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001543 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001545 /*
1546 * Now read interesting descriptors again and process them
1547 * in a suitable order
1548 */
1549 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
1550 printk(KERN_ERR "udf: Primary Volume Descriptor not found!\n");
1551 return 1;
1552 }
1553 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1554 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Jan Karac0eb31e2008-04-01 16:50:35 +02001556 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1557 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1558 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001559
Jan Karac0eb31e2008-04-01 16:50:35 +02001560 if (vds[VDS_POS_PARTITION_DESC].block) {
1561 /*
1562 * We rescan the whole descriptor sequence to find
1563 * partition descriptor blocks and process them.
1564 */
1565 for (block = vds[VDS_POS_PARTITION_DESC].block;
1566 block < vds[VDS_POS_TERMINATING_DESC].block;
1567 block++)
1568 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001569 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571
1572 return 0;
1573}
1574
Jan Kara40346002009-03-19 16:21:38 +01001575static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1576 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Jan Kara40346002009-03-19 16:21:38 +01001578 struct anchorVolDescPtr *anchor;
1579 long main_s, main_e, reserve_s, reserve_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Jan Kara40346002009-03-19 16:21:38 +01001581 anchor = (struct anchorVolDescPtr *)bh->b_data;
1582
1583 /* Locate the main sequence */
1584 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1585 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1586 main_e = main_e >> sb->s_blocksize_bits;
1587 main_e += main_s;
1588
1589 /* Locate the reserve sequence */
1590 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1591 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1592 reserve_e = reserve_e >> sb->s_blocksize_bits;
1593 reserve_e += reserve_s;
1594
1595 /* Process the main & reserve sequences */
1596 /* responsible for finding the PartitionDesc(s) */
1597 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1598 return 1;
1599 return !udf_process_sequence(sb, reserve_s, reserve_e, fileset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Jan Kara40346002009-03-19 16:21:38 +01001602/*
1603 * Check whether there is an anchor block in the given block and
1604 * load Volume Descriptor Sequence if so.
1605 */
1606static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1607 struct kernel_lb_addr *fileset)
1608{
1609 struct buffer_head *bh;
1610 uint16_t ident;
1611 int ret;
1612
1613 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1614 udf_fixed_to_variable(block) >=
1615 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1616 return 0;
1617
1618 bh = udf_read_tagged(sb, block, block, &ident);
1619 if (!bh)
1620 return 0;
1621 if (ident != TAG_IDENT_AVDP) {
1622 brelse(bh);
1623 return 0;
1624 }
1625 ret = udf_load_sequence(sb, bh, fileset);
1626 brelse(bh);
1627 return ret;
1628}
1629
1630/* Search for an anchor volume descriptor pointer */
1631static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1632 struct kernel_lb_addr *fileset)
1633{
1634 sector_t last[6];
1635 int i;
1636 struct udf_sb_info *sbi = UDF_SB(sb);
1637 int last_count = 0;
1638
1639 /* First try user provided anchor */
1640 if (sbi->s_anchor) {
1641 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1642 return lastblock;
1643 }
1644 /*
1645 * according to spec, anchor is in either:
1646 * block 256
1647 * lastblock-256
1648 * lastblock
1649 * however, if the disc isn't closed, it could be 512.
1650 */
1651 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1652 return lastblock;
1653 /*
1654 * The trouble is which block is the last one. Drives often misreport
1655 * this so we try various possibilities.
1656 */
1657 last[last_count++] = lastblock;
1658 if (lastblock >= 1)
1659 last[last_count++] = lastblock - 1;
1660 last[last_count++] = lastblock + 1;
1661 if (lastblock >= 2)
1662 last[last_count++] = lastblock - 2;
1663 if (lastblock >= 150)
1664 last[last_count++] = lastblock - 150;
1665 if (lastblock >= 152)
1666 last[last_count++] = lastblock - 152;
1667
1668 for (i = 0; i < last_count; i++) {
1669 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1670 sb->s_blocksize_bits)
1671 continue;
1672 if (udf_check_anchor_block(sb, last[i], fileset))
1673 return last[i];
1674 if (last[i] < 256)
1675 continue;
1676 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1677 return last[i];
1678 }
1679
1680 /* Finally try block 512 in case media is open */
1681 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1682 return last[0];
1683 return 0;
1684}
1685
1686/*
1687 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1688 * area specified by it. The function expects sbi->s_lastblock to be the last
1689 * block on the media.
1690 *
1691 * Return 1 if ok, 0 if not found.
1692 *
1693 */
1694static int udf_find_anchor(struct super_block *sb,
1695 struct kernel_lb_addr *fileset)
1696{
1697 sector_t lastblock;
1698 struct udf_sb_info *sbi = UDF_SB(sb);
1699
1700 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1701 if (lastblock)
1702 goto out;
1703
1704 /* No anchor found? Try VARCONV conversion of block numbers */
1705 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1706 /* Firstly, we try to not convert number of the last block */
1707 lastblock = udf_scan_anchors(sb,
1708 udf_variable_to_fixed(sbi->s_last_block),
1709 fileset);
1710 if (lastblock)
1711 goto out;
1712
1713 /* Secondly, we try with converted number of the last block */
1714 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1715 if (!lastblock) {
1716 /* VARCONV didn't help. Clear it. */
1717 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1718 return 0;
1719 }
1720out:
1721 sbi->s_last_block = lastblock;
1722 return 1;
1723}
1724
1725/*
1726 * Check Volume Structure Descriptor, find Anchor block and load Volume
1727 * Descriptor Sequence
1728 */
1729static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1730 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001731{
1732 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara40346002009-03-19 16:21:38 +01001733 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001734
1735 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1736 if (!silent)
1737 printk(KERN_WARNING "UDF-fs: Bad block size\n");
1738 return 0;
1739 }
1740 sbi->s_last_block = uopt->lastblock;
Jan Kara40346002009-03-19 16:21:38 +01001741 if (!uopt->novrs) {
1742 /* Check that it is NSR02 compliant */
1743 nsr_off = udf_check_vsd(sb);
1744 if (!nsr_off) {
1745 if (!silent)
1746 printk(KERN_WARNING "UDF-fs: No VRS found\n");
1747 return 0;
1748 }
1749 if (nsr_off == -1)
1750 udf_debug("Failed to read byte 32768. Assuming open "
1751 "disc. Skipping validity check\n");
1752 if (!sbi->s_last_block)
1753 sbi->s_last_block = udf_get_last_block(sb);
1754 } else {
1755 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001756 }
Jan Kara40346002009-03-19 16:21:38 +01001757
1758 /* Look for anchor block and load Volume Descriptor Sequence */
1759 sbi->s_anchor = uopt->anchor;
1760 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001761 if (!silent)
1762 printk(KERN_WARNING "UDF-fs: No anchor found\n");
1763 return 0;
1764 }
1765 return 1;
1766}
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768static void udf_open_lvid(struct super_block *sb)
1769{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001770 struct udf_sb_info *sbi = UDF_SB(sb);
1771 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001772 struct logicalVolIntegrityDesc *lvid;
1773 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001774
Marcin Slusarz165923f2008-02-10 11:33:08 +01001775 if (!bh)
1776 return;
Jan Kara949f4a72010-10-20 18:49:20 +02001777
1778 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001779 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1780 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Marcin Slusarz165923f2008-02-10 11:33:08 +01001782 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1783 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1784 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1785 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001786 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Marcin Slusarz165923f2008-02-10 11:33:08 +01001788 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001789 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001790 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001791
1792 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1793 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001794 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001795 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796}
1797
1798static void udf_close_lvid(struct super_block *sb)
1799{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001800 struct udf_sb_info *sbi = UDF_SB(sb);
1801 struct buffer_head *bh = sbi->s_lvid_bh;
1802 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001803 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001804
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001805 if (!bh)
1806 return;
1807
Jan Kara949f4a72010-10-20 18:49:20 +02001808 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001809 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001810 lvidiu = udf_sb_lvidiu(sbi);
1811 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1812 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1813 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1814 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1815 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1816 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1817 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1818 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1819 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1820 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Marcin Slusarz165923f2008-02-10 11:33:08 +01001822 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001823 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001824 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001825
1826 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1827 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001828 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001829 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Jan Karad664b6a2010-10-20 18:28:46 +02001832u64 lvid_get_unique_id(struct super_block *sb)
1833{
1834 struct buffer_head *bh;
1835 struct udf_sb_info *sbi = UDF_SB(sb);
1836 struct logicalVolIntegrityDesc *lvid;
1837 struct logicalVolHeaderDesc *lvhd;
1838 u64 uniqueID;
1839 u64 ret;
1840
1841 bh = sbi->s_lvid_bh;
1842 if (!bh)
1843 return 0;
1844
1845 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1846 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
1847
1848 mutex_lock(&sbi->s_alloc_mutex);
1849 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
1850 if (!(++uniqueID & 0xFFFFFFFF))
1851 uniqueID += 16;
1852 lvhd->uniqueID = cpu_to_le64(uniqueID);
1853 mutex_unlock(&sbi->s_alloc_mutex);
1854 mark_buffer_dirty(bh);
1855
1856 return ret;
1857}
1858
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001859static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1860{
1861 int i;
1862 int nr_groups = bitmap->s_nr_groups;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001863 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1864 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001865
1866 for (i = 0; i < nr_groups; i++)
1867 if (bitmap->s_block_bitmap[i])
1868 brelse(bitmap->s_block_bitmap[i]);
1869
1870 if (size <= PAGE_SIZE)
1871 kfree(bitmap);
1872 else
1873 vfree(bitmap);
1874}
1875
Jan Kara2e0838f2008-04-01 18:08:51 +02001876static void udf_free_partition(struct udf_part_map *map)
1877{
1878 int i;
Jan Karabfb257a2008-04-08 20:37:21 +02001879 struct udf_meta_data *mdata;
Jan Kara2e0838f2008-04-01 18:08:51 +02001880
1881 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1882 iput(map->s_uspace.s_table);
1883 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1884 iput(map->s_fspace.s_table);
1885 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1886 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1887 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1888 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1889 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1890 for (i = 0; i < 4; i++)
1891 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
Jan Karabfb257a2008-04-08 20:37:21 +02001892 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1893 mdata = &map->s_type_specific.s_metadata;
1894 iput(mdata->s_metadata_fe);
1895 mdata->s_metadata_fe = NULL;
1896
1897 iput(mdata->s_mirror_fe);
1898 mdata->s_mirror_fe = NULL;
1899
1900 iput(mdata->s_bitmap_fe);
1901 mdata->s_bitmap_fe = NULL;
1902 }
Jan Kara2e0838f2008-04-01 18:08:51 +02001903}
1904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905static int udf_fill_super(struct super_block *sb, void *options, int silent)
1906{
1907 int i;
Jan Kara40346002009-03-19 16:21:38 +01001908 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001909 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001911 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 struct udf_sb_info *sbi;
1913
Jan Blunckdb719222010-08-15 22:51:10 +02001914 lock_kernel();
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1917 uopt.uid = -1;
1918 uopt.gid = -1;
1919 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001920 uopt.fmode = UDF_INVALID_MODE;
1921 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001923 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Jan Blunckdb719222010-08-15 22:51:10 +02001924 if (!sbi) {
1925 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return -ENOMEM;
Jan Blunckdb719222010-08-15 22:51:10 +02001927 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001931 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Miklos Szeredi6da80892008-02-08 04:21:50 -08001933 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 goto error_out;
1935
1936 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001937 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 udf_error(sb, "udf_read_super",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001939 "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 goto error_out;
1941 }
1942#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001943 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 uopt.nls_map = load_nls_default();
1945 if (!uopt.nls_map)
1946 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1947 else
1948 udf_debug("Using default NLS map\n");
1949 }
1950#endif
1951 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1952 uopt.flags |= (1 << UDF_FLAG_UTF8);
1953
1954 fileset.logicalBlockNum = 0xFFFFFFFF;
1955 fileset.partitionReferenceNum = 0xFFFF;
1956
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001957 sbi->s_flags = uopt.flags;
1958 sbi->s_uid = uopt.uid;
1959 sbi->s_gid = uopt.gid;
1960 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001961 sbi->s_fmode = uopt.fmode;
1962 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001963 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02001964 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001966 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001967 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001969 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001971 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 /* Fill in the rest of the superblock */
1974 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001975 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 sb->s_dirt = 0;
1978 sb->s_magic = UDF_SUPER_MAGIC;
1979 sb->s_time_gran = 1000;
1980
Jan Kara40346002009-03-19 16:21:38 +01001981 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
1982 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1983 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04001984 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara40346002009-03-19 16:21:38 +01001985 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1986 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
1987 if (!silent)
1988 printk(KERN_NOTICE
1989 "UDF-fs: Rescanning with blocksize "
1990 "%d\n", UDF_DEFAULT_BLOCKSIZE);
1991 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
1992 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1993 }
1994 }
1995 if (!ret) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001996 printk(KERN_WARNING "UDF-fs: No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 goto error_out;
1998 }
1999
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002000 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002002 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002003 struct logicalVolIntegrityDescImpUse *lvidiu =
2004 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002005 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2006 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08002007 /* uint16_t maxUDFWriteRev =
2008 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002010 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002011 printk(KERN_ERR "UDF-fs: minUDFReadRev=%x "
2012 "(max is %x)\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002013 le16_to_cpu(lvidiu->minUDFReadRev),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002014 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002016 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002019 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2022 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2023 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2024 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2025 }
2026
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002027 if (!sbi->s_partitions) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002028 printk(KERN_WARNING "UDF-fs: No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 goto error_out;
2030 }
2031
Marcin Slusarz4b111112008-02-08 04:20:36 -08002032 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2033 UDF_PART_FLAG_READ_ONLY) {
2034 printk(KERN_NOTICE "UDF-fs: Partition marked readonly; "
2035 "forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002036 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002037 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002038
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002039 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002040 printk(KERN_WARNING "UDF-fs: No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 goto error_out;
2042 }
2043
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002044 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002045 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002046 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Adrian Bunka9ca6632008-02-08 04:20:47 -08002047 udf_info("UDF: Mounting volume '%s', "
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002048 "timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarz56774802008-02-10 11:25:31 +01002049 sbi->s_volume_ident, le16_to_cpu(ts.year), ts.month, ts.day,
2050 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
2052 if (!(sb->s_flags & MS_RDONLY))
2053 udf_open_lvid(sb);
2054
2055 /* Assign the root inode */
2056 /* assign inodes by physical block number */
2057 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002058 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002059 if (!inode) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002060 printk(KERN_ERR "UDF-fs: Error in udf_iget, block=%d, "
2061 "partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002062 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 goto error_out;
2064 }
2065
2066 /* Allocate a dentry for the root inode */
2067 sb->s_root = d_alloc_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002068 if (!sb->s_root) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002069 printk(KERN_ERR "UDF-fs: Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 iput(inode);
2071 goto error_out;
2072 }
Jan Kara31170b62007-05-08 00:35:21 -07002073 sb->s_maxbytes = MAX_LFS_FILESIZE;
Jan Blunckdb719222010-08-15 22:51:10 +02002074 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return 0;
2076
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002077error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002078 if (sbi->s_vat_inode)
2079 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002080 if (sbi->s_partitions)
2081 for (i = 0; i < sbi->s_partitions; i++)
2082 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083#ifdef CONFIG_UDF_NLS
2084 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002085 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086#endif
2087 if (!(sb->s_flags & MS_RDONLY))
2088 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002089 brelse(sbi->s_lvid_bh);
2090
2091 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 kfree(sbi);
2093 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002094
Jan Blunckdb719222010-08-15 22:51:10 +02002095 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 return -EINVAL;
2097}
2098
Adrian Bunkb8145a72008-02-17 10:19:55 +02002099static void udf_error(struct super_block *sb, const char *function,
2100 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
2102 va_list args;
2103
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002104 if (!(sb->s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 /* mark sb error */
2106 sb->s_dirt = 1;
2107 }
2108 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002109 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 va_end(args);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002111 printk(KERN_CRIT "UDF-fs error (device %s): %s: %s\n",
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002112 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113}
2114
2115void udf_warning(struct super_block *sb, const char *function,
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002116 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
2118 va_list args;
2119
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002120 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002121 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 va_end(args);
2123 printk(KERN_WARNING "UDF-fs warning (device %s): %s: %s\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002124 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002127static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
2129 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002130 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002132 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002133
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002134 if (sbi->s_vat_inode)
2135 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002136 if (sbi->s_partitions)
2137 for (i = 0; i < sbi->s_partitions; i++)
2138 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139#ifdef CONFIG_UDF_NLS
2140 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002141 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142#endif
2143 if (!(sb->s_flags & MS_RDONLY))
2144 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002145 brelse(sbi->s_lvid_bh);
2146 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 kfree(sb->s_fs_info);
2148 sb->s_fs_info = NULL;
2149}
2150
Jan Kara146bca72009-03-16 18:27:37 +01002151static int udf_sync_fs(struct super_block *sb, int wait)
2152{
2153 struct udf_sb_info *sbi = UDF_SB(sb);
2154
2155 mutex_lock(&sbi->s_alloc_mutex);
2156 if (sbi->s_lvid_dirty) {
2157 /*
2158 * Blockdevice will be synced later so we don't have to submit
2159 * the buffer for IO
2160 */
2161 mark_buffer_dirty(sbi->s_lvid_bh);
2162 sb->s_dirt = 0;
2163 sbi->s_lvid_dirty = 0;
2164 }
2165 mutex_unlock(&sbi->s_alloc_mutex);
2166
2167 return 0;
2168}
2169
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002170static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
David Howells726c3342006-06-23 02:02:58 -07002172 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002173 struct udf_sb_info *sbi = UDF_SB(sb);
2174 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002175 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002176
2177 if (sbi->s_lvid_bh != NULL)
2178 lvidiu = udf_sb_lvidiu(sbi);
2179 else
2180 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 buf->f_type = UDF_SUPER_MAGIC;
2183 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002184 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 buf->f_bfree = udf_count_free(sb);
2186 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002187 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2188 le32_to_cpu(lvidiu->numDirs)) : 0)
2189 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002191 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002192 buf->f_fsid.val[0] = (u32)id;
2193 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 return 0;
2196}
2197
Marcin Slusarz4b111112008-02-08 04:20:36 -08002198static unsigned int udf_count_free_bitmap(struct super_block *sb,
2199 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200{
2201 struct buffer_head *bh = NULL;
2202 unsigned int accum = 0;
2203 int index;
2204 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002205 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 uint8_t *ptr;
2208 uint16_t ident;
2209 struct spaceBitmapDesc *bm;
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002212 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002213 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002215 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 printk(KERN_ERR "udf: udf_count_free failed\n");
2217 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002218 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002219 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 printk(KERN_ERR "udf: udf_count_free failed\n");
2221 goto out;
2222 }
2223
2224 bm = (struct spaceBitmapDesc *)bh->b_data;
2225 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002226 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2227 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002229 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002230 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2231 accum += bitmap_weight((const unsigned long *)(ptr + index),
2232 cur_bytes * 8);
2233 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002234 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002235 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002236 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002238 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 udf_debug("read failed\n");
2240 goto out;
2241 }
2242 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002243 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 }
2245 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002246 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002247out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 return accum;
2249}
2250
Marcin Slusarz4b111112008-02-08 04:20:36 -08002251static unsigned int udf_count_free_table(struct super_block *sb,
2252 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002255 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002256 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002258 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Jan Karad1668fe2010-10-20 23:24:12 +02002260 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002261 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002262 epos.offset = sizeof(struct unallocSpaceEntry);
2263 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002265 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002267
Jan Kara3bf25cb2007-05-08 00:35:16 -07002268 brelse(epos.bh);
Jan Karad1668fe2010-10-20 23:24:12 +02002269 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271 return accum;
2272}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002273
2274static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
2276 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002277 struct udf_sb_info *sbi;
2278 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002280 sbi = UDF_SB(sb);
2281 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002282 struct logicalVolIntegrityDesc *lvid =
2283 (struct logicalVolIntegrityDesc *)
2284 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002285 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002286 accum = le32_to_cpu(
2287 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 if (accum == 0xFFFFFFFF)
2289 accum = 0;
2290 }
2291 }
2292
2293 if (accum)
2294 return accum;
2295
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002296 map = &sbi->s_partmaps[sbi->s_partition];
2297 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002298 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002299 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002301 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002302 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002303 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 }
2305 if (accum)
2306 return accum;
2307
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002308 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002309 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002310 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002312 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002313 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002314 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
2316
2317 return accum;
2318}