blob: 39e3f351c7a60401809da2f2a9642e56ed90e64d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/buffer_head.h>
52#include <linux/vfs.h>
53#include <linux/vmalloc.h>
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -080054#include <linux/errno.h>
Miklos Szeredi6da80892008-02-08 04:21:50 -080055#include <linux/mount.h>
56#include <linux/seq_file.h>
Marcin Slusarz01b954a2008-02-02 22:37:07 +010057#include <linux/bitmap.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020058#include <linux/crc-itu-t.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <asm/byteorder.h>
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include "udf_sb.h"
62#include "udf_i.h"
63
64#include <linux/init.h>
65#include <asm/uaccess.h>
66
67#define VDS_POS_PRIMARY_VOL_DESC 0
68#define VDS_POS_UNALLOC_SPACE_DESC 1
69#define VDS_POS_LOGICAL_VOL_DESC 2
70#define VDS_POS_PARTITION_DESC 3
71#define VDS_POS_IMP_USE_VOL_DESC 4
72#define VDS_POS_VOL_DESC_PTR 5
73#define VDS_POS_TERMINATING_DESC 6
74#define VDS_POS_LENGTH 7
75
Miklos Szeredi6da80892008-02-08 04:21:50 -080076#define UDF_DEFAULT_BLOCKSIZE 2048
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static char error_buf[1024];
79
80/* These are the "meat" - everything else is stuffing */
81static int udf_fill_super(struct super_block *, void *, int);
82static void udf_put_super(struct super_block *);
Jan Kara146bca72009-03-16 18:27:37 +010083static int udf_sync_fs(struct super_block *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static int udf_remount_fs(struct super_block *, int *, char *);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020085static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020086static int udf_find_fileset(struct super_block *, struct kernel_lb_addr *,
87 struct kernel_lb_addr *);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070088static void udf_load_fileset(struct super_block *, struct buffer_head *,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020089 struct kernel_lb_addr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static void udf_open_lvid(struct super_block *);
91static void udf_close_lvid(struct super_block *);
92static unsigned int udf_count_free(struct super_block *);
David Howells726c3342006-06-23 02:02:58 -070093static int udf_statfs(struct dentry *, struct kstatfs *);
Miklos Szeredi6da80892008-02-08 04:21:50 -080094static int udf_show_options(struct seq_file *, struct vfsmount *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Marcin Slusarz6c79e982008-02-08 04:20:30 -080096struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
97{
Marcin Slusarz4b111112008-02-08 04:20:36 -080098 struct logicalVolIntegrityDesc *lvid =
99 (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800100 __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800101 __u32 offset = number_of_partitions * 2 *
102 sizeof(uint32_t)/sizeof(uint8_t);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800103 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/* UDF filesystem type */
Al Viro152a0832010-07-25 00:46:55 +0400107static struct dentry *udf_mount(struct file_system_type *fs_type,
108 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Al Viro152a0832010-07-25 00:46:55 +0400110 return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113static struct file_system_type udf_fstype = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700114 .owner = THIS_MODULE,
115 .name = "udf",
Al Viro152a0832010-07-25 00:46:55 +0400116 .mount = udf_mount,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700117 .kill_sb = kill_block_super,
118 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700121static struct kmem_cache *udf_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123static struct inode *udf_alloc_inode(struct super_block *sb)
124{
125 struct udf_inode_info *ei;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800126 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (!ei)
128 return NULL;
Dan Bastone95f87972006-08-13 23:24:18 -0700129
130 ei->i_unique = 0;
131 ei->i_lenExtents = 0;
132 ei->i_next_alloc_block = 0;
133 ei->i_next_alloc_goal = 0;
134 ei->i_strat4096 = 0;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100135 init_rwsem(&ei->i_data_sem);
Dan Bastone95f87972006-08-13 23:24:18 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return &ei->vfs_inode;
138}
139
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100140static void udf_i_callback(struct rcu_head *head)
141{
142 struct inode *inode = container_of(head, struct inode, i_rcu);
143 INIT_LIST_HEAD(&inode->i_dentry);
144 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static void udf_destroy_inode(struct inode *inode)
148{
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100149 call_rcu(&inode->i_rcu, udf_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700152static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700154 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Christoph Lametera35afb82007-05-16 22:10:57 -0700156 ei->i_ext.i_data = NULL;
157 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160static int init_inodecache(void)
161{
162 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
163 sizeof(struct udf_inode_info),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700164 0, (SLAB_RECLAIM_ACCOUNT |
165 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900166 init_once);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700167 if (!udf_inode_cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return -ENOMEM;
169 return 0;
170}
171
172static void destroy_inodecache(void)
173{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700174 kmem_cache_destroy(udf_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177/* Superblock operations */
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800178static const struct super_operations udf_sb_ops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700179 .alloc_inode = udf_alloc_inode,
180 .destroy_inode = udf_destroy_inode,
181 .write_inode = udf_write_inode,
Al Viro3aac2b62010-06-07 00:43:39 -0400182 .evict_inode = udf_evict_inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700183 .put_super = udf_put_super,
Jan Kara146bca72009-03-16 18:27:37 +0100184 .sync_fs = udf_sync_fs,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700185 .statfs = udf_statfs,
186 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800187 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700190struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 unsigned char novrs;
192 unsigned int blocksize;
193 unsigned int session;
194 unsigned int lastblock;
195 unsigned int anchor;
196 unsigned int volume;
197 unsigned short partition;
198 unsigned int fileset;
199 unsigned int rootdir;
200 unsigned int flags;
201 mode_t umask;
202 gid_t gid;
203 uid_t uid;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100204 mode_t fmode;
205 mode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct nls_table *nls_map;
207};
208
209static int __init init_udf_fs(void)
210{
211 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 err = init_inodecache();
214 if (err)
215 goto out1;
216 err = register_filesystem(&udf_fstype);
217 if (err)
218 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700221
222out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700224
225out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return err;
227}
228
229static void __exit exit_udf_fs(void)
230{
231 unregister_filesystem(&udf_fstype);
232 destroy_inodecache();
233}
234
235module_init(init_udf_fs)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700236module_exit(exit_udf_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800238static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
239{
240 struct udf_sb_info *sbi = UDF_SB(sb);
241
242 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
243 GFP_KERNEL);
244 if (!sbi->s_partmaps) {
Joe Perches8076c362011-10-10 01:08:03 -0700245 udf_err(sb, "Unable to allocate space for %d partition maps\n",
246 count);
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800247 sbi->s_partitions = 0;
248 return -ENOMEM;
249 }
250
251 sbi->s_partitions = count;
252 return 0;
253}
254
Miklos Szeredi6da80892008-02-08 04:21:50 -0800255static int udf_show_options(struct seq_file *seq, struct vfsmount *mnt)
256{
257 struct super_block *sb = mnt->mnt_sb;
258 struct udf_sb_info *sbi = UDF_SB(sb);
259
260 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
261 seq_puts(seq, ",nostrict");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100262 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
Miklos Szeredi6da80892008-02-08 04:21:50 -0800263 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
264 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
265 seq_puts(seq, ",unhide");
266 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
267 seq_puts(seq, ",undelete");
268 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
269 seq_puts(seq, ",noadinicb");
270 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
271 seq_puts(seq, ",shortad");
272 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
273 seq_puts(seq, ",uid=forget");
274 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
275 seq_puts(seq, ",uid=ignore");
276 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
277 seq_puts(seq, ",gid=forget");
278 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
279 seq_puts(seq, ",gid=ignore");
280 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
281 seq_printf(seq, ",uid=%u", sbi->s_uid);
282 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
283 seq_printf(seq, ",gid=%u", sbi->s_gid);
284 if (sbi->s_umask != 0)
285 seq_printf(seq, ",umask=%o", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100286 if (sbi->s_fmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100287 seq_printf(seq, ",mode=%o", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100288 if (sbi->s_dmode != UDF_INVALID_MODE)
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100289 seq_printf(seq, ",dmode=%o", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800290 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
291 seq_printf(seq, ",session=%u", sbi->s_session);
292 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
293 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
Jan Kara40346002009-03-19 16:21:38 +0100294 if (sbi->s_anchor != 0)
295 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800296 /*
297 * volume, partition, fileset and rootdir seem to be ignored
298 * currently
299 */
300 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
301 seq_puts(seq, ",utf8");
302 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
303 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
304
305 return 0;
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*
309 * udf_parse_options
310 *
311 * PURPOSE
312 * Parse mount options.
313 *
314 * DESCRIPTION
315 * The following mount options are supported:
316 *
317 * gid= Set the default group.
318 * umask= Set the default umask.
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100319 * mode= Set the default file permissions.
320 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 * uid= Set the default user.
322 * bs= Set the block size.
323 * unhide Show otherwise hidden files.
324 * undelete Show deleted files in lists.
325 * adinicb Embed data in the inode (default)
326 * noadinicb Don't embed data in the inode
327 * shortad Use short ad's
328 * longad Use long ad's (default)
329 * nostrict Unset strict conformance
330 * iocharset= Set the NLS character set
331 *
332 * The remaining are for debugging and disaster recovery:
333 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700334 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 *
336 * The following expect a offset from 0.
337 *
338 * session= Set the CDROM session (default= last session)
339 * anchor= Override standard anchor location. (default= 256)
340 * volume= Override the VolumeDesc location. (unused)
341 * partition= Override the PartitionDesc location. (unused)
342 * lastblock= Set the last block of the filesystem/
343 *
344 * The following expect a offset from the partition root.
345 *
346 * fileset= Override the fileset block location. (unused)
347 * rootdir= Override the root directory location. (unused)
348 * WARNING: overriding the rootdir to a non-directory may
349 * yield highly unpredictable results.
350 *
351 * PRE-CONDITIONS
352 * options Pointer to mount options string.
353 * uopts Pointer to mount options variable.
354 *
355 * POST-CONDITIONS
356 * <return> 1 Mount options parsed okay.
357 * <return> 0 Error parsing mount options.
358 *
359 * HISTORY
360 * July 1, 1997 - Andrew E. Mileski
361 * Written, tested, and released.
362 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364enum {
365 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
366 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
367 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
368 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
369 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100370 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
371 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372};
373
Steven Whitehousea447c092008-10-13 10:46:57 +0100374static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700375 {Opt_novrs, "novrs"},
376 {Opt_nostrict, "nostrict"},
377 {Opt_bs, "bs=%u"},
378 {Opt_unhide, "unhide"},
379 {Opt_undelete, "undelete"},
380 {Opt_noadinicb, "noadinicb"},
381 {Opt_adinicb, "adinicb"},
382 {Opt_shortad, "shortad"},
383 {Opt_longad, "longad"},
384 {Opt_uforget, "uid=forget"},
385 {Opt_uignore, "uid=ignore"},
386 {Opt_gforget, "gid=forget"},
387 {Opt_gignore, "gid=ignore"},
388 {Opt_gid, "gid=%u"},
389 {Opt_uid, "uid=%u"},
390 {Opt_umask, "umask=%o"},
391 {Opt_session, "session=%u"},
392 {Opt_lastblock, "lastblock=%u"},
393 {Opt_anchor, "anchor=%u"},
394 {Opt_volume, "volume=%u"},
395 {Opt_partition, "partition=%u"},
396 {Opt_fileset, "fileset=%u"},
397 {Opt_rootdir, "rootdir=%u"},
398 {Opt_utf8, "utf8"},
399 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100400 {Opt_fmode, "mode=%o"},
401 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700402 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403};
404
Miklos Szeredi6da80892008-02-08 04:21:50 -0800405static int udf_parse_options(char *options, struct udf_options *uopt,
406 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 char *p;
409 int option;
410
411 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 uopt->partition = 0xFFFF;
413 uopt->session = 0xFFFFFFFF;
414 uopt->lastblock = 0;
415 uopt->anchor = 0;
416 uopt->volume = 0xFFFFFFFF;
417 uopt->rootdir = 0xFFFFFFFF;
418 uopt->fileset = 0xFFFFFFFF;
419 uopt->nls_map = NULL;
420
421 if (!options)
422 return 1;
423
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700424 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 substring_t args[MAX_OPT_ARGS];
426 int token;
427 if (!*p)
428 continue;
429
430 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700431 switch (token) {
432 case Opt_novrs:
433 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100434 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700435 case Opt_bs:
436 if (match_int(&args[0], &option))
437 return 0;
438 uopt->blocksize = option;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100439 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700440 break;
441 case Opt_unhide:
442 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
443 break;
444 case Opt_undelete:
445 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
446 break;
447 case Opt_noadinicb:
448 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
449 break;
450 case Opt_adinicb:
451 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
452 break;
453 case Opt_shortad:
454 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
455 break;
456 case Opt_longad:
457 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
458 break;
459 case Opt_gid:
460 if (match_int(args, &option))
461 return 0;
462 uopt->gid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700463 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700464 break;
465 case Opt_uid:
466 if (match_int(args, &option))
467 return 0;
468 uopt->uid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700469 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700470 break;
471 case Opt_umask:
472 if (match_octal(args, &option))
473 return 0;
474 uopt->umask = option;
475 break;
476 case Opt_nostrict:
477 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
478 break;
479 case Opt_session:
480 if (match_int(args, &option))
481 return 0;
482 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800483 if (!remount)
484 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700485 break;
486 case Opt_lastblock:
487 if (match_int(args, &option))
488 return 0;
489 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800490 if (!remount)
491 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700492 break;
493 case Opt_anchor:
494 if (match_int(args, &option))
495 return 0;
496 uopt->anchor = option;
497 break;
498 case Opt_volume:
499 if (match_int(args, &option))
500 return 0;
501 uopt->volume = option;
502 break;
503 case Opt_partition:
504 if (match_int(args, &option))
505 return 0;
506 uopt->partition = option;
507 break;
508 case Opt_fileset:
509 if (match_int(args, &option))
510 return 0;
511 uopt->fileset = option;
512 break;
513 case Opt_rootdir:
514 if (match_int(args, &option))
515 return 0;
516 uopt->rootdir = option;
517 break;
518 case Opt_utf8:
519 uopt->flags |= (1 << UDF_FLAG_UTF8);
520 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700522 case Opt_iocharset:
523 uopt->nls_map = load_nls(args[0].from);
524 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
525 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700527 case Opt_uignore:
528 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
529 break;
530 case Opt_uforget:
531 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
532 break;
533 case Opt_gignore:
534 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
535 break;
536 case Opt_gforget:
537 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
538 break;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100539 case Opt_fmode:
540 if (match_octal(args, &option))
541 return 0;
542 uopt->fmode = option & 0777;
543 break;
544 case Opt_dmode:
545 if (match_octal(args, &option))
546 return 0;
547 uopt->dmode = option & 0777;
548 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700549 default:
Joe Perches78ace702011-10-10 01:08:05 -0700550 pr_err("bad mount option \"%s\" or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return 0;
552 }
553 }
554 return 1;
555}
556
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700557static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
559 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800560 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400561 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800563 uopt.flags = sbi->s_flags;
564 uopt.uid = sbi->s_uid;
565 uopt.gid = sbi->s_gid;
566 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100567 uopt.fmode = sbi->s_fmode;
568 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Miklos Szeredi6da80892008-02-08 04:21:50 -0800570 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return -EINVAL;
572
Jan Karac03cad22010-10-20 22:17:28 +0200573 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800574 sbi->s_flags = uopt.flags;
575 sbi->s_uid = uopt.uid;
576 sbi->s_gid = uopt.gid;
577 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100578 sbi->s_fmode = uopt.fmode;
579 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200580 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800582 if (sbi->s_lvid_bh) {
583 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (write_rev > UDF_MAX_WRITE_VERSION)
585 *flags |= MS_RDONLY;
586 }
587
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400588 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
589 goto out_unlock;
590
Jan Kara36350462010-05-19 16:28:56 +0200591 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200593 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 udf_open_lvid(sb);
595
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400596out_unlock:
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400597 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
Jan Kara40346002009-03-19 16:21:38 +0100600/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
601/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
602static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200605 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 int sectorsize;
607 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700608 int nsr02 = 0;
609 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800610 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800612 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (sb->s_blocksize < sizeof(struct volStructDesc))
614 sectorsize = sizeof(struct volStructDesc);
615 else
616 sectorsize = sb->s_blocksize;
617
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800618 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200621 (unsigned int)(sector >> sb->s_blocksize_bits),
622 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700624 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /* Read a block */
626 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
627 if (!bh)
628 break;
629
630 /* Look for ISO descriptors */
631 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800632 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700634 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700635 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800637 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
638 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700639 switch (vsd->structType) {
640 case 0:
641 udf_debug("ISO9660 Boot Record found\n");
642 break;
643 case 1:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800644 udf_debug("ISO9660 Primary Volume Descriptor "
645 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700646 break;
647 case 2:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800648 udf_debug("ISO9660 Supplementary Volume "
649 "Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700650 break;
651 case 3:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800652 udf_debug("ISO9660 Volume Partition Descriptor "
653 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700654 break;
655 case 255:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800656 udf_debug("ISO9660 Volume Descriptor Set "
657 "Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700658 break;
659 default:
660 udf_debug("ISO9660 VRS (%u) found\n",
661 vsd->structType);
662 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800664 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
665 VSD_STD_ID_LEN))
666 ; /* nothing */
667 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
668 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700669 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800671 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
672 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800674 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
675 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700677 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
680 if (nsr03)
681 return nsr03;
682 else if (nsr02)
683 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800684 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return -1;
686 else
687 return 0;
688}
689
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800690static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200691 struct kernel_lb_addr *fileset,
692 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 struct buffer_head *bh = NULL;
695 long lastblock;
696 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800697 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700700 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200701 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700703 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700705 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700706 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 1;
708 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800712 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800713 if (!bh) {
714 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200715 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700717/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700719
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800720 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700721 (newfileset.partitionReferenceNum != 0xFFFF &&
722 fileset->logicalBlockNum == 0xFFFFFFFF &&
723 fileset->partitionReferenceNum == 0xFFFF);
724 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800725 lastblock = sbi->s_partmaps
726 [newfileset.partitionReferenceNum]
727 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 newfileset.logicalBlockNum = 0;
729
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700730 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200731 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800732 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700733 if (!bh) {
734 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 continue;
736 }
737
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700738 switch (ident) {
739 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700740 {
741 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800742 sp = (struct spaceBitmapDesc *)
743 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700744 newfileset.logicalBlockNum += 1 +
745 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800746 sizeof(struct spaceBitmapDesc)
747 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700748 brelse(bh);
749 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700751 case TAG_IDENT_FSD:
752 *fileset = newfileset;
753 break;
754 default:
755 newfileset.logicalBlockNum++;
756 brelse(bh);
757 bh = NULL;
758 break;
759 }
760 } while (newfileset.logicalBlockNum < lastblock &&
761 fileset->logicalBlockNum == 0xFFFFFFFF &&
762 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764 }
765
766 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700767 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700769 fileset->logicalBlockNum,
770 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800772 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700774 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 0;
776 }
777 return 1;
778}
779
Jan Karac0eb31e2008-04-01 16:50:35 +0200780static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100783 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200784 struct buffer_head *bh;
785 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100786 int ret = 1;
787
788 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
789 if (!instr)
790 return 1;
791
792 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
793 if (!outstr)
794 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200795
796 bh = udf_read_tagged(sb, block, block, &ident);
797 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100798 goto out2;
799
Jan Karac0eb31e2008-04-01 16:50:35 +0200800 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 pvoldesc = (struct primaryVolDesc *)bh->b_data;
803
Marcin Slusarz56774802008-02-10 11:25:31 +0100804 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
805 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100806#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200807 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +0100808 udf_debug("recording time %04u/%02u/%02u"
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800809 " %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100810 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
811 ts->minute, le16_to_cpu(ts->typeAndTimezone));
812#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100815 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
816 if (udf_CS0toUTF8(outstr, instr)) {
817 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
818 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800819 udf_debug("volIdent[] = '%s'\n",
820 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100823 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
824 if (udf_CS0toUTF8(outstr, instr))
825 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200826
827 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100828 ret = 0;
829out2:
830 kfree(outstr);
831out1:
832 kfree(instr);
833 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Jan Karabfb257a2008-04-08 20:37:21 +0200836static int udf_load_metadata_files(struct super_block *sb, int partition)
837{
838 struct udf_sb_info *sbi = UDF_SB(sb);
839 struct udf_part_map *map;
840 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200841 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200842 int fe_error = 0;
843
844 map = &sbi->s_partmaps[partition];
845 mdata = &map->s_type_specific.s_metadata;
846
847 /* metadata address */
848 addr.logicalBlockNum = mdata->s_meta_file_loc;
849 addr.partitionReferenceNum = map->s_partition_num;
850
851 udf_debug("Metadata file location: block = %d part = %d\n",
852 addr.logicalBlockNum, addr.partitionReferenceNum);
853
Pekka Enberg97e961f2008-10-15 12:29:03 +0200854 mdata->s_metadata_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200855
856 if (mdata->s_metadata_fe == NULL) {
Joe Perchesa40ecd72011-10-10 01:08:04 -0700857 udf_warn(sb, "metadata inode efe not found, will try mirror inode\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200858 fe_error = 1;
859 } else if (UDF_I(mdata->s_metadata_fe)->i_alloc_type !=
860 ICBTAG_FLAG_AD_SHORT) {
Joe Perchesa40ecd72011-10-10 01:08:04 -0700861 udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200862 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) {
Joe Perches8076c362011-10-10 01:08:03 -0700878 udf_err(sb, "mirror inode efe not found and metadata inode is missing too, exiting...\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200879 goto error_exit;
880 } else
Joe Perchesa40ecd72011-10-10 01:08:04 -0700881 udf_warn(sb, "mirror inode efe not found, but metadata inode is OK\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200882 } else if (UDF_I(mdata->s_mirror_fe)->i_alloc_type !=
883 ICBTAG_FLAG_AD_SHORT) {
Joe Perchesa40ecd72011-10-10 01:08:04 -0700884 udf_warn(sb, "mirror inode efe does not have short allocation descriptors!\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200885 iput(mdata->s_mirror_fe);
886 mdata->s_mirror_fe = NULL;
887 if (fe_error)
888 goto error_exit;
889 }
890
891 /*
892 * bitmap file entry
893 * Note:
894 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
895 */
896 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
897 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
898 addr.partitionReferenceNum = map->s_partition_num;
899
900 udf_debug("Bitmap file location: block = %d part = %d\n",
901 addr.logicalBlockNum, addr.partitionReferenceNum);
902
Pekka Enberg97e961f2008-10-15 12:29:03 +0200903 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200904
905 if (mdata->s_bitmap_fe == NULL) {
906 if (sb->s_flags & MS_RDONLY)
Joe Perchesa40ecd72011-10-10 01:08:04 -0700907 udf_warn(sb, "bitmap inode efe not found but it's ok since the disc is mounted read-only\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200908 else {
Joe Perches8076c362011-10-10 01:08:03 -0700909 udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200910 goto error_exit;
911 }
912 }
913 }
914
915 udf_debug("udf_load_metadata_files Ok\n");
916
917 return 0;
918
919error_exit:
920 return 1;
921}
922
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700923static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200924 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
926 struct fileSetDesc *fset;
927
928 fset = (struct fileSetDesc *)bh->b_data;
929
930 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
931
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800932 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700934 udf_debug("Rootdir at block=%d, partition=%d\n",
935 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800938int udf_compute_nr_groups(struct super_block *sb, u32 partition)
939{
940 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +0100941 return DIV_ROUND_UP(map->s_partition_len +
942 (sizeof(struct spaceBitmapDesc) << 3),
943 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800944}
945
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800946static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
947{
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800948 struct udf_bitmap *bitmap;
949 int nr_groups;
950 int size;
951
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800952 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800953 size = sizeof(struct udf_bitmap) +
954 (sizeof(struct buffer_head *) * nr_groups);
955
956 if (size <= PAGE_SIZE)
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700957 bitmap = kzalloc(size, GFP_KERNEL);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800958 else
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700959 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800960
961 if (bitmap == NULL) {
Joe Perches8076c362011-10-10 01:08:03 -0700962 udf_err(sb, "Unable to allocate space for bitmap and %d buffer_head pointers\n",
963 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800964 return NULL;
965 }
966
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800967 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
968 bitmap->s_nr_groups = nr_groups;
969 return bitmap;
970}
971
Jan Kara3fb38df2008-04-02 12:26:36 +0200972static int udf_fill_partdesc_info(struct super_block *sb,
973 struct partitionDesc *p, int p_index)
974{
975 struct udf_part_map *map;
976 struct udf_sb_info *sbi = UDF_SB(sb);
977 struct partitionHeaderDesc *phd;
978
979 map = &sbi->s_partmaps[p_index];
980
981 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
982 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
983
984 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
985 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
986 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
987 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
988 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
989 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
990 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
991 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
992
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200993 udf_debug("Partition (%d type %x) starts at physical %d, "
994 "block length %d\n", p_index,
Jan Kara3fb38df2008-04-02 12:26:36 +0200995 map->s_partition_type, map->s_partition_root,
996 map->s_partition_len);
997
998 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
999 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1000 return 0;
1001
1002 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1003 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001004 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001005 .logicalBlockNum = le32_to_cpu(
1006 phd->unallocSpaceTable.extPosition),
1007 .partitionReferenceNum = p_index,
1008 };
1009
Pekka Enberg97e961f2008-10-15 12:29:03 +02001010 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001011 if (!map->s_uspace.s_table) {
1012 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1013 p_index);
1014 return 1;
1015 }
1016 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1017 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1018 p_index, map->s_uspace.s_table->i_ino);
1019 }
1020
1021 if (phd->unallocSpaceBitmap.extLength) {
1022 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1023 if (!bitmap)
1024 return 1;
1025 map->s_uspace.s_bitmap = bitmap;
1026 bitmap->s_extLength = le32_to_cpu(
1027 phd->unallocSpaceBitmap.extLength);
1028 bitmap->s_extPosition = le32_to_cpu(
1029 phd->unallocSpaceBitmap.extPosition);
1030 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
1031 udf_debug("unallocSpaceBitmap (part %d) @ %d\n", p_index,
1032 bitmap->s_extPosition);
1033 }
1034
1035 if (phd->partitionIntegrityTable.extLength)
1036 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1037
1038 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001039 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001040 .logicalBlockNum = le32_to_cpu(
1041 phd->freedSpaceTable.extPosition),
1042 .partitionReferenceNum = p_index,
1043 };
1044
Pekka Enberg97e961f2008-10-15 12:29:03 +02001045 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001046 if (!map->s_fspace.s_table) {
1047 udf_debug("cannot load freedSpaceTable (part %d)\n",
1048 p_index);
1049 return 1;
1050 }
1051
1052 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1053 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1054 p_index, map->s_fspace.s_table->i_ino);
1055 }
1056
1057 if (phd->freedSpaceBitmap.extLength) {
1058 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1059 if (!bitmap)
1060 return 1;
1061 map->s_fspace.s_bitmap = bitmap;
1062 bitmap->s_extLength = le32_to_cpu(
1063 phd->freedSpaceBitmap.extLength);
1064 bitmap->s_extPosition = le32_to_cpu(
1065 phd->freedSpaceBitmap.extPosition);
1066 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
1067 udf_debug("freedSpaceBitmap (part %d) @ %d\n", p_index,
1068 bitmap->s_extPosition);
1069 }
1070 return 0;
1071}
1072
Jan Karae971b0b2009-11-30 19:47:55 +01001073static void udf_find_vat_block(struct super_block *sb, int p_index,
1074 int type1_index, sector_t start_block)
1075{
1076 struct udf_sb_info *sbi = UDF_SB(sb);
1077 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1078 sector_t vat_block;
1079 struct kernel_lb_addr ino;
1080
1081 /*
1082 * VAT file entry is in the last recorded block. Some broken disks have
1083 * it a few blocks before so try a bit harder...
1084 */
1085 ino.partitionReferenceNum = type1_index;
1086 for (vat_block = start_block;
1087 vat_block >= map->s_partition_root &&
1088 vat_block >= start_block - 3 &&
1089 !sbi->s_vat_inode; vat_block--) {
1090 ino.logicalBlockNum = vat_block - map->s_partition_root;
1091 sbi->s_vat_inode = udf_iget(sb, &ino);
1092 }
1093}
1094
Jan Kara38b74a52008-04-02 16:01:35 +02001095static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1096{
1097 struct udf_sb_info *sbi = UDF_SB(sb);
1098 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001099 struct buffer_head *bh = NULL;
1100 struct udf_inode_info *vati;
1101 uint32_t pos;
1102 struct virtualAllocationTable20 *vat20;
Jan Kara4bf17af2009-07-14 19:30:23 +02001103 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001104
Jan Karae971b0b2009-11-30 19:47:55 +01001105 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001106 if (!sbi->s_vat_inode &&
1107 sbi->s_last_block != blocks - 1) {
Joe Perches78ace702011-10-10 01:08:05 -07001108 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1109 (unsigned long)sbi->s_last_block,
1110 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001111 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001112 }
Jan Kara38b74a52008-04-02 16:01:35 +02001113 if (!sbi->s_vat_inode)
1114 return 1;
1115
1116 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001117 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001118 map->s_type_specific.s_virtual.s_num_entries =
1119 (sbi->s_vat_inode->i_size - 36) >> 2;
1120 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001121 vati = UDF_I(sbi->s_vat_inode);
1122 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1123 pos = udf_block_map(sbi->s_vat_inode, 0);
1124 bh = sb_bread(sb, pos);
1125 if (!bh)
1126 return 1;
1127 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1128 } else {
1129 vat20 = (struct virtualAllocationTable20 *)
1130 vati->i_ext.i_data;
1131 }
Jan Kara38b74a52008-04-02 16:01:35 +02001132
Jan Kara38b74a52008-04-02 16:01:35 +02001133 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001134 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001135 map->s_type_specific.s_virtual.s_num_entries =
1136 (sbi->s_vat_inode->i_size -
1137 map->s_type_specific.s_virtual.
1138 s_start_offset) >> 2;
1139 brelse(bh);
1140 }
1141 return 0;
1142}
1143
Jan Karac0eb31e2008-04-01 16:50:35 +02001144static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Jan Karac0eb31e2008-04-01 16:50:35 +02001146 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001147 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001148 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001149 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001150 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001151 uint16_t partitionNumber;
1152 uint16_t ident;
1153 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Jan Karac0eb31e2008-04-01 16:50:35 +02001155 bh = udf_read_tagged(sb, block, block, &ident);
1156 if (!bh)
1157 return 1;
1158 if (ident != TAG_IDENT_PD)
1159 goto out_bh;
1160
1161 p = (struct partitionDesc *)bh->b_data;
1162 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001163
Jan Karabfb257a2008-04-08 20:37:21 +02001164 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001165 for (i = 0; i < sbi->s_partitions; i++) {
1166 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001167 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001168 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001169 if (map->s_partition_num == partitionNumber &&
1170 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1171 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001173 }
1174
Jan Kara38b74a52008-04-02 16:01:35 +02001175 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001176 udf_debug("Partition (%d) not found in partition map\n",
1177 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001178 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001179 }
1180
Jan Kara3fb38df2008-04-02 12:26:36 +02001181 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001182
1183 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001184 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1185 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001186 */
1187 type1_idx = i;
1188 for (i = 0; i < sbi->s_partitions; i++) {
1189 map = &sbi->s_partmaps[i];
1190
1191 if (map->s_partition_num == partitionNumber &&
1192 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001193 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1194 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001195 break;
1196 }
1197
1198 if (i >= sbi->s_partitions)
1199 goto out_bh;
1200
1201 ret = udf_fill_partdesc_info(sb, p, i);
1202 if (ret)
1203 goto out_bh;
1204
Jan Karabfb257a2008-04-08 20:37:21 +02001205 if (map->s_partition_type == UDF_METADATA_MAP25) {
1206 ret = udf_load_metadata_files(sb, i);
1207 if (ret) {
Joe Perches78ace702011-10-10 01:08:05 -07001208 udf_err(sb, "error loading MetaData partition map %d\n",
1209 i);
Jan Karabfb257a2008-04-08 20:37:21 +02001210 goto out_bh;
1211 }
1212 } else {
1213 ret = udf_load_vat(sb, i, type1_idx);
1214 if (ret)
1215 goto out_bh;
1216 /*
1217 * Mark filesystem read-only if we have a partition with
1218 * virtual map since we don't handle writing to it (we
1219 * overwrite blocks instead of relocating them).
1220 */
1221 sb->s_flags |= MS_RDONLY;
Joe Perches78ace702011-10-10 01:08:05 -07001222 pr_notice("Filesystem marked read-only because writing to pseudooverwrite partition is not implemented\n");
Jan Karabfb257a2008-04-08 20:37:21 +02001223 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001224out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001225 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001226 brelse(bh);
1227 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Jan Karac0eb31e2008-04-01 16:50:35 +02001230static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001231 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
1233 struct logicalVolDesc *lvd;
1234 int i, j, offset;
1235 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001236 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001237 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001238 uint16_t ident;
1239 struct buffer_head *bh;
1240 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Jan Karac0eb31e2008-04-01 16:50:35 +02001242 bh = udf_read_tagged(sb, block, block, &ident);
1243 if (!bh)
1244 return 1;
1245 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 lvd = (struct logicalVolDesc *)bh->b_data;
1247
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -08001248 i = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
Jan Karac0eb31e2008-04-01 16:50:35 +02001249 if (i != 0) {
1250 ret = i;
1251 goto out_bh;
1252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001254 for (i = 0, offset = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001255 i < sbi->s_partitions && offset < le32_to_cpu(lvd->mapTableLength);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001256 i++, offset += gpm->partitionMapLength) {
1257 struct udf_part_map *map = &sbi->s_partmaps[i];
1258 gpm = (struct genericPartitionMap *)
1259 &(lvd->partitionMaps[offset]);
1260 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001261 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001262 struct genericPartitionMap1 *gpm1 =
1263 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001264 map->s_partition_type = UDF_TYPE1_MAP15;
1265 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1266 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1267 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001268 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001269 struct udfPartitionMap2 *upm2 =
1270 (struct udfPartitionMap2 *)gpm;
1271 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1272 strlen(UDF_ID_VIRTUAL))) {
1273 u16 suf =
1274 le16_to_cpu(((__le16 *)upm2->partIdent.
1275 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001276 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001277 map->s_partition_type =
1278 UDF_VIRTUAL_MAP15;
1279 map->s_partition_func =
1280 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001281 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001282 map->s_partition_type =
1283 UDF_VIRTUAL_MAP20;
1284 map->s_partition_func =
1285 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001287 } else if (!strncmp(upm2->partIdent.ident,
1288 UDF_ID_SPARABLE,
1289 strlen(UDF_ID_SPARABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 uint32_t loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 struct sparingTable *st;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001292 struct sparablePartitionMap *spm =
1293 (struct sparablePartitionMap *)gpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001295 map->s_partition_type = UDF_SPARABLE_MAP15;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001296 map->s_type_specific.s_sparing.s_packet_len =
1297 le16_to_cpu(spm->packetLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001298 for (j = 0; j < spm->numSparingTables; j++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001299 struct buffer_head *bh2;
1300
1301 loc = le32_to_cpu(
1302 spm->locSparingTable[j]);
1303 bh2 = udf_read_tagged(sb, loc, loc,
1304 &ident);
1305 map->s_type_specific.s_sparing.
1306 s_spar_map[j] = bh2;
1307
Marcin Slusarz165923f2008-02-10 11:33:08 +01001308 if (bh2 == NULL)
1309 continue;
1310
1311 st = (struct sparingTable *)bh2->b_data;
1312 if (ident != 0 || strncmp(
1313 st->sparingIdent.ident,
1314 UDF_ID_SPARING,
1315 strlen(UDF_ID_SPARING))) {
1316 brelse(bh2);
1317 map->s_type_specific.s_sparing.
1318 s_spar_map[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001321 map->s_partition_func = udf_get_pblock_spar15;
Jan Karabfb257a2008-04-08 20:37:21 +02001322 } else if (!strncmp(upm2->partIdent.ident,
1323 UDF_ID_METADATA,
1324 strlen(UDF_ID_METADATA))) {
1325 struct udf_meta_data *mdata =
1326 &map->s_type_specific.s_metadata;
1327 struct metadataPartitionMap *mdm =
1328 (struct metadataPartitionMap *)
1329 &(lvd->partitionMaps[offset]);
1330 udf_debug("Parsing Logical vol part %d "
1331 "type %d id=%s\n", i, type,
1332 UDF_ID_METADATA);
1333
1334 map->s_partition_type = UDF_METADATA_MAP25;
1335 map->s_partition_func = udf_get_pblock_meta25;
1336
1337 mdata->s_meta_file_loc =
1338 le32_to_cpu(mdm->metadataFileLoc);
1339 mdata->s_mirror_file_loc =
1340 le32_to_cpu(mdm->metadataMirrorFileLoc);
1341 mdata->s_bitmap_file_loc =
1342 le32_to_cpu(mdm->metadataBitmapFileLoc);
1343 mdata->s_alloc_unit_size =
1344 le32_to_cpu(mdm->allocUnitSize);
1345 mdata->s_align_unit_size =
1346 le16_to_cpu(mdm->alignUnitSize);
1347 mdata->s_dup_md_flag =
1348 mdm->flags & 0x01;
1349
1350 udf_debug("Metadata Ident suffix=0x%x\n",
1351 (le16_to_cpu(
1352 ((__le16 *)
1353 mdm->partIdent.identSuffix)[0])));
1354 udf_debug("Metadata part num=%d\n",
1355 le16_to_cpu(mdm->partitionNum));
1356 udf_debug("Metadata part alloc unit size=%d\n",
1357 le32_to_cpu(mdm->allocUnitSize));
1358 udf_debug("Metadata file loc=%d\n",
1359 le32_to_cpu(mdm->metadataFileLoc));
1360 udf_debug("Mirror file loc=%d\n",
1361 le32_to_cpu(mdm->metadataMirrorFileLoc));
1362 udf_debug("Bitmap file loc=%d\n",
1363 le32_to_cpu(mdm->metadataBitmapFileLoc));
1364 udf_debug("Duplicate Flag: %d %d\n",
1365 mdata->s_dup_md_flag, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001366 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001367 udf_debug("Unknown ident: %s\n",
1368 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 continue;
1370 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001371 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1372 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001375 i, map->s_partition_num, type,
1376 map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001379 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001380 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 *fileset = lelb_to_cpu(la->extLocation);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001383 udf_debug("FileSet found in LogicalVolDesc at block=%d, "
1384 "partition=%d\n", fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001385 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387 if (lvd->integritySeqExt.extLength)
1388 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001389
Jan Karac0eb31e2008-04-01 16:50:35 +02001390out_bh:
1391 brelse(bh);
1392 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
1395/*
1396 * udf_load_logicalvolint
1397 *
1398 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001399static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
1401 struct buffer_head *bh = NULL;
1402 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001403 struct udf_sb_info *sbi = UDF_SB(sb);
1404 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001407 (bh = udf_read_tagged(sb, loc.extLocation,
1408 loc.extLocation, &ident)) &&
1409 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001410 sbi->s_lvid_bh = bh;
1411 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001412
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001413 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001414 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001415 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001416
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001417 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001418 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001420 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001422 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001423 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
1426/*
1427 * udf_process_sequence
1428 *
1429 * PURPOSE
1430 * Process a main/reserve volume descriptor sequence.
1431 *
1432 * PRE-CONDITIONS
1433 * sb Pointer to _locked_ superblock.
1434 * block First block of first extent of the sequence.
1435 * lastblock Lastblock of first extent of the sequence.
1436 *
1437 * HISTORY
1438 * July 1, 1997 - Andrew E. Mileski
1439 * Written, tested, and released.
1440 */
Jan Kara200a3592008-03-04 13:03:09 +01001441static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001442 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
1444 struct buffer_head *bh = NULL;
1445 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001446 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 struct generic_desc *gd;
1448 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001449 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 uint32_t vdsn;
1451 uint16_t ident;
1452 long next_s = 0, next_e = 0;
1453
1454 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1455
Jan Karac0eb31e2008-04-01 16:50:35 +02001456 /*
1457 * Read the main descriptor sequence and find which descriptors
1458 * are in it.
1459 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001460 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001463 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07001464 udf_err(sb,
1465 "Block %llu of volume descriptor sequence is corrupted or we could not read it\n",
1466 (unsigned long long)block);
Jan Karac0eb31e2008-04-01 16:50:35 +02001467 return 1;
1468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1471 gd = (struct generic_desc *)bh->b_data;
1472 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001473 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001474 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001475 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1476 if (vdsn >= curr->volDescSeqNum) {
1477 curr->volDescSeqNum = vdsn;
1478 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001479 }
1480 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001481 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001482 curr = &vds[VDS_POS_VOL_DESC_PTR];
1483 if (vdsn >= curr->volDescSeqNum) {
1484 curr->volDescSeqNum = vdsn;
1485 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001487 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001488 next_s = le32_to_cpu(
1489 vdp->nextVolDescSeqExt.extLocation);
1490 next_e = le32_to_cpu(
1491 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001492 next_e = next_e >> sb->s_blocksize_bits;
1493 next_e += next_s;
1494 }
1495 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001496 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001497 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1498 if (vdsn >= curr->volDescSeqNum) {
1499 curr->volDescSeqNum = vdsn;
1500 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001501 }
1502 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001503 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001504 curr = &vds[VDS_POS_PARTITION_DESC];
1505 if (!curr->block)
1506 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001507 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001508 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001509 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1510 if (vdsn >= curr->volDescSeqNum) {
1511 curr->volDescSeqNum = vdsn;
1512 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001513 }
1514 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001515 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001516 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1517 if (vdsn >= curr->volDescSeqNum) {
1518 curr->volDescSeqNum = vdsn;
1519 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001520 }
1521 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001522 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001523 vds[VDS_POS_TERMINATING_DESC].block = block;
1524 if (next_e) {
1525 block = next_s;
1526 lastblock = next_e;
1527 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001528 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001529 done = 1;
1530 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001532 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001534 /*
1535 * Now read interesting descriptors again and process them
1536 * in a suitable order
1537 */
1538 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
Joe Perches78ace702011-10-10 01:08:05 -07001539 udf_err(sb, "Primary Volume Descriptor not found!\n");
Jan Karac0eb31e2008-04-01 16:50:35 +02001540 return 1;
1541 }
1542 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1543 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Jan Karac0eb31e2008-04-01 16:50:35 +02001545 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1546 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1547 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001548
Jan Karac0eb31e2008-04-01 16:50:35 +02001549 if (vds[VDS_POS_PARTITION_DESC].block) {
1550 /*
1551 * We rescan the whole descriptor sequence to find
1552 * partition descriptor blocks and process them.
1553 */
1554 for (block = vds[VDS_POS_PARTITION_DESC].block;
1555 block < vds[VDS_POS_TERMINATING_DESC].block;
1556 block++)
1557 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001558 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
1560
1561 return 0;
1562}
1563
Jan Kara40346002009-03-19 16:21:38 +01001564static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1565 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Jan Kara40346002009-03-19 16:21:38 +01001567 struct anchorVolDescPtr *anchor;
1568 long main_s, main_e, reserve_s, reserve_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Jan Kara40346002009-03-19 16:21:38 +01001570 anchor = (struct anchorVolDescPtr *)bh->b_data;
1571
1572 /* Locate the main sequence */
1573 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1574 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1575 main_e = main_e >> sb->s_blocksize_bits;
1576 main_e += main_s;
1577
1578 /* Locate the reserve sequence */
1579 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1580 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1581 reserve_e = reserve_e >> sb->s_blocksize_bits;
1582 reserve_e += reserve_s;
1583
1584 /* Process the main & reserve sequences */
1585 /* responsible for finding the PartitionDesc(s) */
1586 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1587 return 1;
1588 return !udf_process_sequence(sb, reserve_s, reserve_e, fileset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
Jan Kara40346002009-03-19 16:21:38 +01001591/*
1592 * Check whether there is an anchor block in the given block and
1593 * load Volume Descriptor Sequence if so.
1594 */
1595static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1596 struct kernel_lb_addr *fileset)
1597{
1598 struct buffer_head *bh;
1599 uint16_t ident;
1600 int ret;
1601
1602 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1603 udf_fixed_to_variable(block) >=
1604 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1605 return 0;
1606
1607 bh = udf_read_tagged(sb, block, block, &ident);
1608 if (!bh)
1609 return 0;
1610 if (ident != TAG_IDENT_AVDP) {
1611 brelse(bh);
1612 return 0;
1613 }
1614 ret = udf_load_sequence(sb, bh, fileset);
1615 brelse(bh);
1616 return ret;
1617}
1618
1619/* Search for an anchor volume descriptor pointer */
1620static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1621 struct kernel_lb_addr *fileset)
1622{
1623 sector_t last[6];
1624 int i;
1625 struct udf_sb_info *sbi = UDF_SB(sb);
1626 int last_count = 0;
1627
1628 /* First try user provided anchor */
1629 if (sbi->s_anchor) {
1630 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1631 return lastblock;
1632 }
1633 /*
1634 * according to spec, anchor is in either:
1635 * block 256
1636 * lastblock-256
1637 * lastblock
1638 * however, if the disc isn't closed, it could be 512.
1639 */
1640 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1641 return lastblock;
1642 /*
1643 * The trouble is which block is the last one. Drives often misreport
1644 * this so we try various possibilities.
1645 */
1646 last[last_count++] = lastblock;
1647 if (lastblock >= 1)
1648 last[last_count++] = lastblock - 1;
1649 last[last_count++] = lastblock + 1;
1650 if (lastblock >= 2)
1651 last[last_count++] = lastblock - 2;
1652 if (lastblock >= 150)
1653 last[last_count++] = lastblock - 150;
1654 if (lastblock >= 152)
1655 last[last_count++] = lastblock - 152;
1656
1657 for (i = 0; i < last_count; i++) {
1658 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1659 sb->s_blocksize_bits)
1660 continue;
1661 if (udf_check_anchor_block(sb, last[i], fileset))
1662 return last[i];
1663 if (last[i] < 256)
1664 continue;
1665 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1666 return last[i];
1667 }
1668
1669 /* Finally try block 512 in case media is open */
1670 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1671 return last[0];
1672 return 0;
1673}
1674
1675/*
1676 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1677 * area specified by it. The function expects sbi->s_lastblock to be the last
1678 * block on the media.
1679 *
1680 * Return 1 if ok, 0 if not found.
1681 *
1682 */
1683static int udf_find_anchor(struct super_block *sb,
1684 struct kernel_lb_addr *fileset)
1685{
1686 sector_t lastblock;
1687 struct udf_sb_info *sbi = UDF_SB(sb);
1688
1689 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1690 if (lastblock)
1691 goto out;
1692
1693 /* No anchor found? Try VARCONV conversion of block numbers */
1694 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1695 /* Firstly, we try to not convert number of the last block */
1696 lastblock = udf_scan_anchors(sb,
1697 udf_variable_to_fixed(sbi->s_last_block),
1698 fileset);
1699 if (lastblock)
1700 goto out;
1701
1702 /* Secondly, we try with converted number of the last block */
1703 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1704 if (!lastblock) {
1705 /* VARCONV didn't help. Clear it. */
1706 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1707 return 0;
1708 }
1709out:
1710 sbi->s_last_block = lastblock;
1711 return 1;
1712}
1713
1714/*
1715 * Check Volume Structure Descriptor, find Anchor block and load Volume
1716 * Descriptor Sequence
1717 */
1718static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1719 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001720{
1721 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara40346002009-03-19 16:21:38 +01001722 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001723
1724 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1725 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001726 udf_warn(sb, "Bad block size\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001727 return 0;
1728 }
1729 sbi->s_last_block = uopt->lastblock;
Jan Kara40346002009-03-19 16:21:38 +01001730 if (!uopt->novrs) {
1731 /* Check that it is NSR02 compliant */
1732 nsr_off = udf_check_vsd(sb);
1733 if (!nsr_off) {
1734 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001735 udf_warn(sb, "No VRS found\n");
Jan Kara40346002009-03-19 16:21:38 +01001736 return 0;
1737 }
1738 if (nsr_off == -1)
1739 udf_debug("Failed to read byte 32768. Assuming open "
1740 "disc. Skipping validity check\n");
1741 if (!sbi->s_last_block)
1742 sbi->s_last_block = udf_get_last_block(sb);
1743 } else {
1744 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001745 }
Jan Kara40346002009-03-19 16:21:38 +01001746
1747 /* Look for anchor block and load Volume Descriptor Sequence */
1748 sbi->s_anchor = uopt->anchor;
1749 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001750 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001751 udf_warn(sb, "No anchor found\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001752 return 0;
1753 }
1754 return 1;
1755}
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757static void udf_open_lvid(struct super_block *sb)
1758{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001759 struct udf_sb_info *sbi = UDF_SB(sb);
1760 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001761 struct logicalVolIntegrityDesc *lvid;
1762 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001763
Marcin Slusarz165923f2008-02-10 11:33:08 +01001764 if (!bh)
1765 return;
Jan Kara949f4a72010-10-20 18:49:20 +02001766
1767 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001768 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1769 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Marcin Slusarz165923f2008-02-10 11:33:08 +01001771 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1772 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1773 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1774 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001775 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Marcin Slusarz165923f2008-02-10 11:33:08 +01001777 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001778 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001779 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001780
1781 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1782 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001783 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001784 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
1786
1787static void udf_close_lvid(struct super_block *sb)
1788{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001789 struct udf_sb_info *sbi = UDF_SB(sb);
1790 struct buffer_head *bh = sbi->s_lvid_bh;
1791 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001792 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001793
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001794 if (!bh)
1795 return;
1796
Jan Kara949f4a72010-10-20 18:49:20 +02001797 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001798 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001799 lvidiu = udf_sb_lvidiu(sbi);
1800 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1801 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1802 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1803 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1804 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1805 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1806 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1807 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1808 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1809 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Marcin Slusarz165923f2008-02-10 11:33:08 +01001811 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001812 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001813 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001814
1815 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1816 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001817 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001818 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819}
1820
Jan Karad664b6a2010-10-20 18:28:46 +02001821u64 lvid_get_unique_id(struct super_block *sb)
1822{
1823 struct buffer_head *bh;
1824 struct udf_sb_info *sbi = UDF_SB(sb);
1825 struct logicalVolIntegrityDesc *lvid;
1826 struct logicalVolHeaderDesc *lvhd;
1827 u64 uniqueID;
1828 u64 ret;
1829
1830 bh = sbi->s_lvid_bh;
1831 if (!bh)
1832 return 0;
1833
1834 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1835 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
1836
1837 mutex_lock(&sbi->s_alloc_mutex);
1838 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
1839 if (!(++uniqueID & 0xFFFFFFFF))
1840 uniqueID += 16;
1841 lvhd->uniqueID = cpu_to_le64(uniqueID);
1842 mutex_unlock(&sbi->s_alloc_mutex);
1843 mark_buffer_dirty(bh);
1844
1845 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001848static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1849{
1850 int i;
1851 int nr_groups = bitmap->s_nr_groups;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001852 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1853 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001854
1855 for (i = 0; i < nr_groups; i++)
1856 if (bitmap->s_block_bitmap[i])
1857 brelse(bitmap->s_block_bitmap[i]);
1858
1859 if (size <= PAGE_SIZE)
1860 kfree(bitmap);
1861 else
1862 vfree(bitmap);
1863}
1864
Jan Kara2e0838f2008-04-01 18:08:51 +02001865static void udf_free_partition(struct udf_part_map *map)
1866{
1867 int i;
Jan Karabfb257a2008-04-08 20:37:21 +02001868 struct udf_meta_data *mdata;
Jan Kara2e0838f2008-04-01 18:08:51 +02001869
1870 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1871 iput(map->s_uspace.s_table);
1872 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1873 iput(map->s_fspace.s_table);
1874 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1875 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1876 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1877 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1878 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1879 for (i = 0; i < 4; i++)
1880 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
Jan Karabfb257a2008-04-08 20:37:21 +02001881 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1882 mdata = &map->s_type_specific.s_metadata;
1883 iput(mdata->s_metadata_fe);
1884 mdata->s_metadata_fe = NULL;
1885
1886 iput(mdata->s_mirror_fe);
1887 mdata->s_mirror_fe = NULL;
1888
1889 iput(mdata->s_bitmap_fe);
1890 mdata->s_bitmap_fe = NULL;
1891 }
Jan Kara2e0838f2008-04-01 18:08:51 +02001892}
1893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894static int udf_fill_super(struct super_block *sb, void *options, int silent)
1895{
1896 int i;
Jan Kara40346002009-03-19 16:21:38 +01001897 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001898 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001900 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 struct udf_sb_info *sbi;
1902
1903 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1904 uopt.uid = -1;
1905 uopt.gid = -1;
1906 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001907 uopt.fmode = UDF_INVALID_MODE;
1908 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001910 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Alessio Igor Bogani9db9f9e2010-11-16 18:40:49 +01001911 if (!sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001916 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Miklos Szeredi6da80892008-02-08 04:21:50 -08001918 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 goto error_out;
1920
1921 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001922 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Joe Perches8076c362011-10-10 01:08:03 -07001923 udf_err(sb, "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 goto error_out;
1925 }
1926#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001927 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 uopt.nls_map = load_nls_default();
1929 if (!uopt.nls_map)
1930 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1931 else
1932 udf_debug("Using default NLS map\n");
1933 }
1934#endif
1935 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1936 uopt.flags |= (1 << UDF_FLAG_UTF8);
1937
1938 fileset.logicalBlockNum = 0xFFFFFFFF;
1939 fileset.partitionReferenceNum = 0xFFFF;
1940
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001941 sbi->s_flags = uopt.flags;
1942 sbi->s_uid = uopt.uid;
1943 sbi->s_gid = uopt.gid;
1944 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +01001945 sbi->s_fmode = uopt.fmode;
1946 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001947 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02001948 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001950 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001951 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001953 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001955 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 /* Fill in the rest of the superblock */
1958 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001959 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 sb->s_dirt = 0;
1962 sb->s_magic = UDF_SUPER_MAGIC;
1963 sb->s_time_gran = 1000;
1964
Jan Kara40346002009-03-19 16:21:38 +01001965 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
1966 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1967 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04001968 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara40346002009-03-19 16:21:38 +01001969 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1970 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
1971 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001972 pr_notice("Rescanning with blocksize %d\n",
1973 UDF_DEFAULT_BLOCKSIZE);
Jan Kara40346002009-03-19 16:21:38 +01001974 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
1975 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1976 }
1977 }
1978 if (!ret) {
Joe Perches78ace702011-10-10 01:08:05 -07001979 udf_warn(sb, "No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 goto error_out;
1981 }
1982
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001983 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001985 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001986 struct logicalVolIntegrityDescImpUse *lvidiu =
1987 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001988 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
1989 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001990 /* uint16_t maxUDFWriteRev =
1991 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001993 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Joe Perches78ace702011-10-10 01:08:05 -07001994 udf_err(sb, "minUDFReadRev=%x (max is %x)\n",
1995 le16_to_cpu(lvidiu->minUDFReadRev),
1996 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001998 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002001 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
2003 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2004 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2005 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2006 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2007 }
2008
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002009 if (!sbi->s_partitions) {
Joe Perches78ace702011-10-10 01:08:05 -07002010 udf_warn(sb, "No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 goto error_out;
2012 }
2013
Marcin Slusarz4b111112008-02-08 04:20:36 -08002014 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2015 UDF_PART_FLAG_READ_ONLY) {
Joe Perches78ace702011-10-10 01:08:05 -07002016 pr_notice("Partition marked readonly; forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002017 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002018 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002019
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002020 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Joe Perches78ace702011-10-10 01:08:05 -07002021 udf_warn(sb, "No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 goto error_out;
2023 }
2024
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002025 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002026 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002027 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Joe Perches78ace702011-10-10 01:08:05 -07002028 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2029 sbi->s_volume_ident,
2030 le16_to_cpu(ts.year), ts.month, ts.day,
Marcin Slusarz56774802008-02-10 11:25:31 +01002031 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
2033 if (!(sb->s_flags & MS_RDONLY))
2034 udf_open_lvid(sb);
2035
2036 /* Assign the root inode */
2037 /* assign inodes by physical block number */
2038 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002039 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002040 if (!inode) {
Joe Perches78ace702011-10-10 01:08:05 -07002041 udf_err(sb, "Error in udf_iget, block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002042 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 goto error_out;
2044 }
2045
2046 /* Allocate a dentry for the root inode */
2047 sb->s_root = d_alloc_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002048 if (!sb->s_root) {
Joe Perches78ace702011-10-10 01:08:05 -07002049 udf_err(sb, "Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 iput(inode);
2051 goto error_out;
2052 }
Jan Kara31170b62007-05-08 00:35:21 -07002053 sb->s_maxbytes = MAX_LFS_FILESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 return 0;
2055
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002056error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002057 if (sbi->s_vat_inode)
2058 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002059 if (sbi->s_partitions)
2060 for (i = 0; i < sbi->s_partitions; i++)
2061 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062#ifdef CONFIG_UDF_NLS
2063 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002064 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065#endif
2066 if (!(sb->s_flags & MS_RDONLY))
2067 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002068 brelse(sbi->s_lvid_bh);
2069
2070 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 kfree(sbi);
2072 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 return -EINVAL;
2075}
2076
Joe Perches8076c362011-10-10 01:08:03 -07002077void _udf_err(struct super_block *sb, const char *function,
2078 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
2080 va_list args;
2081
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002082 if (!(sb->s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 /* mark sb error */
2084 sb->s_dirt = 1;
2085 }
2086 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002087 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 va_end(args);
Joe Perches78ace702011-10-10 01:08:05 -07002089 pr_crit("error (device %s): %s: %s",
Joe Perches8076c362011-10-10 01:08:03 -07002090 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
Joe Perchesa40ecd72011-10-10 01:08:04 -07002093void _udf_warn(struct super_block *sb, const char *function,
2094 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095{
2096 va_list args;
2097
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002098 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002099 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 va_end(args);
Joe Perches78ace702011-10-10 01:08:05 -07002101 pr_warn("warning (device %s): %s: %s",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002102 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103}
2104
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002105static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
2107 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002108 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002110 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002111
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002112 if (sbi->s_vat_inode)
2113 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002114 if (sbi->s_partitions)
2115 for (i = 0; i < sbi->s_partitions; i++)
2116 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117#ifdef CONFIG_UDF_NLS
2118 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002119 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120#endif
2121 if (!(sb->s_flags & MS_RDONLY))
2122 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002123 brelse(sbi->s_lvid_bh);
2124 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 kfree(sb->s_fs_info);
2126 sb->s_fs_info = NULL;
2127}
2128
Jan Kara146bca72009-03-16 18:27:37 +01002129static int udf_sync_fs(struct super_block *sb, int wait)
2130{
2131 struct udf_sb_info *sbi = UDF_SB(sb);
2132
2133 mutex_lock(&sbi->s_alloc_mutex);
2134 if (sbi->s_lvid_dirty) {
2135 /*
2136 * Blockdevice will be synced later so we don't have to submit
2137 * the buffer for IO
2138 */
2139 mark_buffer_dirty(sbi->s_lvid_bh);
2140 sb->s_dirt = 0;
2141 sbi->s_lvid_dirty = 0;
2142 }
2143 mutex_unlock(&sbi->s_alloc_mutex);
2144
2145 return 0;
2146}
2147
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002148static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
David Howells726c3342006-06-23 02:02:58 -07002150 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002151 struct udf_sb_info *sbi = UDF_SB(sb);
2152 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002153 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002154
2155 if (sbi->s_lvid_bh != NULL)
2156 lvidiu = udf_sb_lvidiu(sbi);
2157 else
2158 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 buf->f_type = UDF_SUPER_MAGIC;
2161 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002162 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 buf->f_bfree = udf_count_free(sb);
2164 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002165 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2166 le32_to_cpu(lvidiu->numDirs)) : 0)
2167 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002169 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002170 buf->f_fsid.val[0] = (u32)id;
2171 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 return 0;
2174}
2175
Marcin Slusarz4b111112008-02-08 04:20:36 -08002176static unsigned int udf_count_free_bitmap(struct super_block *sb,
2177 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
2179 struct buffer_head *bh = NULL;
2180 unsigned int accum = 0;
2181 int index;
2182 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002183 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 uint8_t *ptr;
2186 uint16_t ident;
2187 struct spaceBitmapDesc *bm;
2188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002190 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002191 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002193 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07002194 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002196 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002197 brelse(bh);
Joe Perches78ace702011-10-10 01:08:05 -07002198 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 goto out;
2200 }
2201
2202 bm = (struct spaceBitmapDesc *)bh->b_data;
2203 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002204 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2205 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002207 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002208 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2209 accum += bitmap_weight((const unsigned long *)(ptr + index),
2210 cur_bytes * 8);
2211 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002212 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002213 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002214 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002216 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 udf_debug("read failed\n");
2218 goto out;
2219 }
2220 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002221 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 }
2223 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002224 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002225out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 return accum;
2227}
2228
Marcin Slusarz4b111112008-02-08 04:20:36 -08002229static unsigned int udf_count_free_table(struct super_block *sb,
2230 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
2232 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002233 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002234 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002236 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Jan Karad1668fe2010-10-20 23:24:12 +02002238 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002239 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002240 epos.offset = sizeof(struct unallocSpaceEntry);
2241 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002243 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002245
Jan Kara3bf25cb2007-05-08 00:35:16 -07002246 brelse(epos.bh);
Jan Karad1668fe2010-10-20 23:24:12 +02002247 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
2249 return accum;
2250}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002251
2252static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
2254 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002255 struct udf_sb_info *sbi;
2256 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002258 sbi = UDF_SB(sb);
2259 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002260 struct logicalVolIntegrityDesc *lvid =
2261 (struct logicalVolIntegrityDesc *)
2262 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002263 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002264 accum = le32_to_cpu(
2265 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 if (accum == 0xFFFFFFFF)
2267 accum = 0;
2268 }
2269 }
2270
2271 if (accum)
2272 return accum;
2273
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002274 map = &sbi->s_partmaps[sbi->s_partition];
2275 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002276 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002277 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002279 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002280 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002281 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
2283 if (accum)
2284 return accum;
2285
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002286 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002287 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002288 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002290 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002291 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002292 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 }
2294
2295 return accum;
2296}