blob: 622331f1290dcbf3f824366b83ddc56a3b1570b6 [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 Pigginfa0d7e3d2011-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 Pigginfa0d7e3d2011-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 Slusarz7ac9bcd52008-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 Slusarz7ac9bcd52008-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 Slusarz7ac9bcd52008-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 Slusarz7ac9bcd52008-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 Slusarz7ac9bcd52008-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 Slusarz7ac9bcd52008-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 Slusarz7ac9bcd52008-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:
550 printk(KERN_ERR "udf: bad mount option \"%s\" "
551 "or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return 0;
553 }
554 }
555 return 1;
556}
557
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700558static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800561 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400562 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800564 uopt.flags = sbi->s_flags;
565 uopt.uid = sbi->s_uid;
566 uopt.gid = sbi->s_gid;
567 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100568 uopt.fmode = sbi->s_fmode;
569 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Miklos Szeredi6da80892008-02-08 04:21:50 -0800571 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return -EINVAL;
573
Jan Karac03cad22010-10-20 22:17:28 +0200574 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800575 sbi->s_flags = uopt.flags;
576 sbi->s_uid = uopt.uid;
577 sbi->s_gid = uopt.gid;
578 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100579 sbi->s_fmode = uopt.fmode;
580 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200581 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800583 if (sbi->s_lvid_bh) {
584 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (write_rev > UDF_MAX_WRITE_VERSION)
586 *flags |= MS_RDONLY;
587 }
588
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400589 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
590 goto out_unlock;
591
Jan Kara36350462010-05-19 16:28:56 +0200592 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200594 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 udf_open_lvid(sb);
596
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400597out_unlock:
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400598 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Jan Kara40346002009-03-19 16:21:38 +0100601/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
602/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
603static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
605 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200606 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 int sectorsize;
608 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700609 int nsr02 = 0;
610 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800611 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800613 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (sb->s_blocksize < sizeof(struct volStructDesc))
615 sectorsize = sizeof(struct volStructDesc);
616 else
617 sectorsize = sb->s_blocksize;
618
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800619 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200622 (unsigned int)(sector >> sb->s_blocksize_bits),
623 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700625 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /* Read a block */
627 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
628 if (!bh)
629 break;
630
631 /* Look for ISO descriptors */
632 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800633 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700635 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700636 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800638 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
639 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700640 switch (vsd->structType) {
641 case 0:
642 udf_debug("ISO9660 Boot Record found\n");
643 break;
644 case 1:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800645 udf_debug("ISO9660 Primary Volume Descriptor "
646 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700647 break;
648 case 2:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800649 udf_debug("ISO9660 Supplementary Volume "
650 "Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700651 break;
652 case 3:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800653 udf_debug("ISO9660 Volume Partition Descriptor "
654 "found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700655 break;
656 case 255:
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800657 udf_debug("ISO9660 Volume Descriptor Set "
658 "Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700659 break;
660 default:
661 udf_debug("ISO9660 VRS (%u) found\n",
662 vsd->structType);
663 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800665 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
666 VSD_STD_ID_LEN))
667 ; /* nothing */
668 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
669 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700670 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800672 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
673 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800675 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
676 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700678 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680
681 if (nsr03)
682 return nsr03;
683 else if (nsr02)
684 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800685 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return -1;
687 else
688 return 0;
689}
690
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800691static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200692 struct kernel_lb_addr *fileset,
693 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 struct buffer_head *bh = NULL;
696 long lastblock;
697 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800698 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700701 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200702 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700704 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700706 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700707 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return 1;
709 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800713 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800714 if (!bh) {
715 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200716 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700718/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700720
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800721 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700722 (newfileset.partitionReferenceNum != 0xFFFF &&
723 fileset->logicalBlockNum == 0xFFFFFFFF &&
724 fileset->partitionReferenceNum == 0xFFFF);
725 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800726 lastblock = sbi->s_partmaps
727 [newfileset.partitionReferenceNum]
728 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 newfileset.logicalBlockNum = 0;
730
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700731 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200732 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800733 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700734 if (!bh) {
735 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 continue;
737 }
738
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700739 switch (ident) {
740 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700741 {
742 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800743 sp = (struct spaceBitmapDesc *)
744 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700745 newfileset.logicalBlockNum += 1 +
746 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800747 sizeof(struct spaceBitmapDesc)
748 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700749 brelse(bh);
750 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700752 case TAG_IDENT_FSD:
753 *fileset = newfileset;
754 break;
755 default:
756 newfileset.logicalBlockNum++;
757 brelse(bh);
758 bh = NULL;
759 break;
760 }
761 } while (newfileset.logicalBlockNum < lastblock &&
762 fileset->logicalBlockNum == 0xFFFFFFFF &&
763 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765 }
766
767 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700768 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700770 fileset->logicalBlockNum,
771 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800773 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700775 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return 0;
777 }
778 return 1;
779}
780
Jan Karac0eb31e2008-04-01 16:50:35 +0200781static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
783 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100784 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200785 struct buffer_head *bh;
786 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100787 int ret = 1;
788
789 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
790 if (!instr)
791 return 1;
792
793 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
794 if (!outstr)
795 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200796
797 bh = udf_read_tagged(sb, block, block, &ident);
798 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100799 goto out2;
800
Jan Karac0eb31e2008-04-01 16:50:35 +0200801 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 pvoldesc = (struct primaryVolDesc *)bh->b_data;
804
Marcin Slusarz56774802008-02-10 11:25:31 +0100805 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
806 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100807#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200808 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
marcin.slusarz@gmail.comcbf56762008-02-27 22:50:14 +0100809 udf_debug("recording time %04u/%02u/%02u"
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800810 " %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100811 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
812 ts->minute, le16_to_cpu(ts->typeAndTimezone));
813#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100816 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
817 if (udf_CS0toUTF8(outstr, instr)) {
818 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
819 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800820 udf_debug("volIdent[] = '%s'\n",
821 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100824 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
825 if (udf_CS0toUTF8(outstr, instr))
826 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200827
828 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100829 ret = 0;
830out2:
831 kfree(outstr);
832out1:
833 kfree(instr);
834 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Jan Karabfb257a2008-04-08 20:37:21 +0200837static int udf_load_metadata_files(struct super_block *sb, int partition)
838{
839 struct udf_sb_info *sbi = UDF_SB(sb);
840 struct udf_part_map *map;
841 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200842 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200843 int fe_error = 0;
844
845 map = &sbi->s_partmaps[partition];
846 mdata = &map->s_type_specific.s_metadata;
847
848 /* metadata address */
849 addr.logicalBlockNum = mdata->s_meta_file_loc;
850 addr.partitionReferenceNum = map->s_partition_num;
851
852 udf_debug("Metadata file location: block = %d part = %d\n",
853 addr.logicalBlockNum, addr.partitionReferenceNum);
854
Pekka Enberg97e961f2008-10-15 12:29:03 +0200855 mdata->s_metadata_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200856
857 if (mdata->s_metadata_fe == NULL) {
Joe Perchesa40ecd72011-10-10 01:08:04 -0700858 udf_warn(sb, "metadata inode efe not found, will try mirror inode\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200859 fe_error = 1;
860 } else if (UDF_I(mdata->s_metadata_fe)->i_alloc_type !=
861 ICBTAG_FLAG_AD_SHORT) {
Joe Perchesa40ecd72011-10-10 01:08:04 -0700862 udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200863 fe_error = 1;
864 iput(mdata->s_metadata_fe);
865 mdata->s_metadata_fe = NULL;
866 }
867
868 /* mirror file entry */
869 addr.logicalBlockNum = mdata->s_mirror_file_loc;
870 addr.partitionReferenceNum = map->s_partition_num;
871
872 udf_debug("Mirror metadata file location: block = %d part = %d\n",
873 addr.logicalBlockNum, addr.partitionReferenceNum);
874
Pekka Enberg97e961f2008-10-15 12:29:03 +0200875 mdata->s_mirror_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200876
877 if (mdata->s_mirror_fe == NULL) {
878 if (fe_error) {
Joe Perches8076c362011-10-10 01:08:03 -0700879 udf_err(sb, "mirror inode efe not found and metadata inode is missing too, exiting...\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200880 goto error_exit;
881 } else
Joe Perchesa40ecd72011-10-10 01:08:04 -0700882 udf_warn(sb, "mirror inode efe not found, but metadata inode is OK\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200883 } else if (UDF_I(mdata->s_mirror_fe)->i_alloc_type !=
884 ICBTAG_FLAG_AD_SHORT) {
Joe Perchesa40ecd72011-10-10 01:08:04 -0700885 udf_warn(sb, "mirror inode efe does not have short allocation descriptors!\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200886 iput(mdata->s_mirror_fe);
887 mdata->s_mirror_fe = NULL;
888 if (fe_error)
889 goto error_exit;
890 }
891
892 /*
893 * bitmap file entry
894 * Note:
895 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
896 */
897 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
898 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
899 addr.partitionReferenceNum = map->s_partition_num;
900
901 udf_debug("Bitmap file location: block = %d part = %d\n",
902 addr.logicalBlockNum, addr.partitionReferenceNum);
903
Pekka Enberg97e961f2008-10-15 12:29:03 +0200904 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200905
906 if (mdata->s_bitmap_fe == NULL) {
907 if (sb->s_flags & MS_RDONLY)
Joe Perchesa40ecd72011-10-10 01:08:04 -0700908 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 +0200909 else {
Joe Perches8076c362011-10-10 01:08:03 -0700910 udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200911 goto error_exit;
912 }
913 }
914 }
915
916 udf_debug("udf_load_metadata_files Ok\n");
917
918 return 0;
919
920error_exit:
921 return 1;
922}
923
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700924static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200925 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
927 struct fileSetDesc *fset;
928
929 fset = (struct fileSetDesc *)bh->b_data;
930
931 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
932
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800933 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700935 udf_debug("Rootdir at block=%d, partition=%d\n",
936 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800939int udf_compute_nr_groups(struct super_block *sb, u32 partition)
940{
941 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +0100942 return DIV_ROUND_UP(map->s_partition_len +
943 (sizeof(struct spaceBitmapDesc) << 3),
944 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800945}
946
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800947static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
948{
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800949 struct udf_bitmap *bitmap;
950 int nr_groups;
951 int size;
952
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800953 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800954 size = sizeof(struct udf_bitmap) +
955 (sizeof(struct buffer_head *) * nr_groups);
956
957 if (size <= PAGE_SIZE)
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700958 bitmap = kzalloc(size, GFP_KERNEL);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800959 else
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700960 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800961
962 if (bitmap == NULL) {
Joe Perches8076c362011-10-10 01:08:03 -0700963 udf_err(sb, "Unable to allocate space for bitmap and %d buffer_head pointers\n",
964 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800965 return NULL;
966 }
967
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800968 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
969 bitmap->s_nr_groups = nr_groups;
970 return bitmap;
971}
972
Jan Kara3fb38df2008-04-02 12:26:36 +0200973static int udf_fill_partdesc_info(struct super_block *sb,
974 struct partitionDesc *p, int p_index)
975{
976 struct udf_part_map *map;
977 struct udf_sb_info *sbi = UDF_SB(sb);
978 struct partitionHeaderDesc *phd;
979
980 map = &sbi->s_partmaps[p_index];
981
982 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
983 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
984
985 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
986 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
987 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
988 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
989 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
990 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
991 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
992 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
993
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200994 udf_debug("Partition (%d type %x) starts at physical %d, "
995 "block length %d\n", p_index,
Jan Kara3fb38df2008-04-02 12:26:36 +0200996 map->s_partition_type, map->s_partition_root,
997 map->s_partition_len);
998
999 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1000 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1001 return 0;
1002
1003 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1004 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001005 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001006 .logicalBlockNum = le32_to_cpu(
1007 phd->unallocSpaceTable.extPosition),
1008 .partitionReferenceNum = p_index,
1009 };
1010
Pekka Enberg97e961f2008-10-15 12:29:03 +02001011 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001012 if (!map->s_uspace.s_table) {
1013 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1014 p_index);
1015 return 1;
1016 }
1017 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1018 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1019 p_index, map->s_uspace.s_table->i_ino);
1020 }
1021
1022 if (phd->unallocSpaceBitmap.extLength) {
1023 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1024 if (!bitmap)
1025 return 1;
1026 map->s_uspace.s_bitmap = bitmap;
1027 bitmap->s_extLength = le32_to_cpu(
1028 phd->unallocSpaceBitmap.extLength);
1029 bitmap->s_extPosition = le32_to_cpu(
1030 phd->unallocSpaceBitmap.extPosition);
1031 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
1032 udf_debug("unallocSpaceBitmap (part %d) @ %d\n", p_index,
1033 bitmap->s_extPosition);
1034 }
1035
1036 if (phd->partitionIntegrityTable.extLength)
1037 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1038
1039 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001040 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001041 .logicalBlockNum = le32_to_cpu(
1042 phd->freedSpaceTable.extPosition),
1043 .partitionReferenceNum = p_index,
1044 };
1045
Pekka Enberg97e961f2008-10-15 12:29:03 +02001046 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001047 if (!map->s_fspace.s_table) {
1048 udf_debug("cannot load freedSpaceTable (part %d)\n",
1049 p_index);
1050 return 1;
1051 }
1052
1053 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1054 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1055 p_index, map->s_fspace.s_table->i_ino);
1056 }
1057
1058 if (phd->freedSpaceBitmap.extLength) {
1059 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1060 if (!bitmap)
1061 return 1;
1062 map->s_fspace.s_bitmap = bitmap;
1063 bitmap->s_extLength = le32_to_cpu(
1064 phd->freedSpaceBitmap.extLength);
1065 bitmap->s_extPosition = le32_to_cpu(
1066 phd->freedSpaceBitmap.extPosition);
1067 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
1068 udf_debug("freedSpaceBitmap (part %d) @ %d\n", p_index,
1069 bitmap->s_extPosition);
1070 }
1071 return 0;
1072}
1073
Jan Karae971b0b2009-11-30 19:47:55 +01001074static void udf_find_vat_block(struct super_block *sb, int p_index,
1075 int type1_index, sector_t start_block)
1076{
1077 struct udf_sb_info *sbi = UDF_SB(sb);
1078 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1079 sector_t vat_block;
1080 struct kernel_lb_addr ino;
1081
1082 /*
1083 * VAT file entry is in the last recorded block. Some broken disks have
1084 * it a few blocks before so try a bit harder...
1085 */
1086 ino.partitionReferenceNum = type1_index;
1087 for (vat_block = start_block;
1088 vat_block >= map->s_partition_root &&
1089 vat_block >= start_block - 3 &&
1090 !sbi->s_vat_inode; vat_block--) {
1091 ino.logicalBlockNum = vat_block - map->s_partition_root;
1092 sbi->s_vat_inode = udf_iget(sb, &ino);
1093 }
1094}
1095
Jan Kara38b74a52008-04-02 16:01:35 +02001096static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1097{
1098 struct udf_sb_info *sbi = UDF_SB(sb);
1099 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001100 struct buffer_head *bh = NULL;
1101 struct udf_inode_info *vati;
1102 uint32_t pos;
1103 struct virtualAllocationTable20 *vat20;
Jan Kara4bf17af2009-07-14 19:30:23 +02001104 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001105
Jan Karae971b0b2009-11-30 19:47:55 +01001106 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001107 if (!sbi->s_vat_inode &&
1108 sbi->s_last_block != blocks - 1) {
1109 printk(KERN_NOTICE "UDF-fs: Failed to read VAT inode from the"
1110 " last recorded block (%lu), retrying with the last "
1111 "block of the device (%lu).\n",
1112 (unsigned long)sbi->s_last_block,
1113 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001114 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001115 }
Jan Kara38b74a52008-04-02 16:01:35 +02001116 if (!sbi->s_vat_inode)
1117 return 1;
1118
1119 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001120 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001121 map->s_type_specific.s_virtual.s_num_entries =
1122 (sbi->s_vat_inode->i_size - 36) >> 2;
1123 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001124 vati = UDF_I(sbi->s_vat_inode);
1125 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1126 pos = udf_block_map(sbi->s_vat_inode, 0);
1127 bh = sb_bread(sb, pos);
1128 if (!bh)
1129 return 1;
1130 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1131 } else {
1132 vat20 = (struct virtualAllocationTable20 *)
1133 vati->i_ext.i_data;
1134 }
Jan Kara38b74a52008-04-02 16:01:35 +02001135
Jan Kara38b74a52008-04-02 16:01:35 +02001136 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001137 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001138 map->s_type_specific.s_virtual.s_num_entries =
1139 (sbi->s_vat_inode->i_size -
1140 map->s_type_specific.s_virtual.
1141 s_start_offset) >> 2;
1142 brelse(bh);
1143 }
1144 return 0;
1145}
1146
Jan Karac0eb31e2008-04-01 16:50:35 +02001147static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Jan Karac0eb31e2008-04-01 16:50:35 +02001149 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001150 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001151 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001152 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001153 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001154 uint16_t partitionNumber;
1155 uint16_t ident;
1156 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Jan Karac0eb31e2008-04-01 16:50:35 +02001158 bh = udf_read_tagged(sb, block, block, &ident);
1159 if (!bh)
1160 return 1;
1161 if (ident != TAG_IDENT_PD)
1162 goto out_bh;
1163
1164 p = (struct partitionDesc *)bh->b_data;
1165 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001166
Jan Karabfb257a2008-04-08 20:37:21 +02001167 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001168 for (i = 0; i < sbi->s_partitions; i++) {
1169 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001170 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001171 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001172 if (map->s_partition_num == partitionNumber &&
1173 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1174 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001176 }
1177
Jan Kara38b74a52008-04-02 16:01:35 +02001178 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001179 udf_debug("Partition (%d) not found in partition map\n",
1180 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001181 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001182 }
1183
Jan Kara3fb38df2008-04-02 12:26:36 +02001184 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001185
1186 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001187 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1188 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001189 */
1190 type1_idx = i;
1191 for (i = 0; i < sbi->s_partitions; i++) {
1192 map = &sbi->s_partmaps[i];
1193
1194 if (map->s_partition_num == partitionNumber &&
1195 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001196 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1197 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001198 break;
1199 }
1200
1201 if (i >= sbi->s_partitions)
1202 goto out_bh;
1203
1204 ret = udf_fill_partdesc_info(sb, p, i);
1205 if (ret)
1206 goto out_bh;
1207
Jan Karabfb257a2008-04-08 20:37:21 +02001208 if (map->s_partition_type == UDF_METADATA_MAP25) {
1209 ret = udf_load_metadata_files(sb, i);
1210 if (ret) {
1211 printk(KERN_ERR "UDF-fs: error loading MetaData "
1212 "partition map %d\n", i);
1213 goto out_bh;
1214 }
1215 } else {
1216 ret = udf_load_vat(sb, i, type1_idx);
1217 if (ret)
1218 goto out_bh;
1219 /*
1220 * Mark filesystem read-only if we have a partition with
1221 * virtual map since we don't handle writing to it (we
1222 * overwrite blocks instead of relocating them).
1223 */
1224 sb->s_flags |= MS_RDONLY;
1225 printk(KERN_NOTICE "UDF-fs: Filesystem marked read-only "
1226 "because writing to pseudooverwrite partition is "
1227 "not implemented.\n");
1228 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001229out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001230 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001231 brelse(bh);
1232 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
Jan Karac0eb31e2008-04-01 16:50:35 +02001235static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001236 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
1238 struct logicalVolDesc *lvd;
1239 int i, j, offset;
1240 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001241 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001242 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001243 uint16_t ident;
1244 struct buffer_head *bh;
1245 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Jan Karac0eb31e2008-04-01 16:50:35 +02001247 bh = udf_read_tagged(sb, block, block, &ident);
1248 if (!bh)
1249 return 1;
1250 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 lvd = (struct logicalVolDesc *)bh->b_data;
1252
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -08001253 i = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
Jan Karac0eb31e2008-04-01 16:50:35 +02001254 if (i != 0) {
1255 ret = i;
1256 goto out_bh;
1257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001259 for (i = 0, offset = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001260 i < sbi->s_partitions && offset < le32_to_cpu(lvd->mapTableLength);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001261 i++, offset += gpm->partitionMapLength) {
1262 struct udf_part_map *map = &sbi->s_partmaps[i];
1263 gpm = (struct genericPartitionMap *)
1264 &(lvd->partitionMaps[offset]);
1265 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001266 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001267 struct genericPartitionMap1 *gpm1 =
1268 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001269 map->s_partition_type = UDF_TYPE1_MAP15;
1270 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1271 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1272 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001273 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001274 struct udfPartitionMap2 *upm2 =
1275 (struct udfPartitionMap2 *)gpm;
1276 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1277 strlen(UDF_ID_VIRTUAL))) {
1278 u16 suf =
1279 le16_to_cpu(((__le16 *)upm2->partIdent.
1280 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001281 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001282 map->s_partition_type =
1283 UDF_VIRTUAL_MAP15;
1284 map->s_partition_func =
1285 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001286 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001287 map->s_partition_type =
1288 UDF_VIRTUAL_MAP20;
1289 map->s_partition_func =
1290 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001292 } else if (!strncmp(upm2->partIdent.ident,
1293 UDF_ID_SPARABLE,
1294 strlen(UDF_ID_SPARABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 uint32_t loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 struct sparingTable *st;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001297 struct sparablePartitionMap *spm =
1298 (struct sparablePartitionMap *)gpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001300 map->s_partition_type = UDF_SPARABLE_MAP15;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001301 map->s_type_specific.s_sparing.s_packet_len =
1302 le16_to_cpu(spm->packetLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001303 for (j = 0; j < spm->numSparingTables; j++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001304 struct buffer_head *bh2;
1305
1306 loc = le32_to_cpu(
1307 spm->locSparingTable[j]);
1308 bh2 = udf_read_tagged(sb, loc, loc,
1309 &ident);
1310 map->s_type_specific.s_sparing.
1311 s_spar_map[j] = bh2;
1312
Marcin Slusarz165923f2008-02-10 11:33:08 +01001313 if (bh2 == NULL)
1314 continue;
1315
1316 st = (struct sparingTable *)bh2->b_data;
1317 if (ident != 0 || strncmp(
1318 st->sparingIdent.ident,
1319 UDF_ID_SPARING,
1320 strlen(UDF_ID_SPARING))) {
1321 brelse(bh2);
1322 map->s_type_specific.s_sparing.
1323 s_spar_map[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
1325 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001326 map->s_partition_func = udf_get_pblock_spar15;
Jan Karabfb257a2008-04-08 20:37:21 +02001327 } else if (!strncmp(upm2->partIdent.ident,
1328 UDF_ID_METADATA,
1329 strlen(UDF_ID_METADATA))) {
1330 struct udf_meta_data *mdata =
1331 &map->s_type_specific.s_metadata;
1332 struct metadataPartitionMap *mdm =
1333 (struct metadataPartitionMap *)
1334 &(lvd->partitionMaps[offset]);
1335 udf_debug("Parsing Logical vol part %d "
1336 "type %d id=%s\n", i, type,
1337 UDF_ID_METADATA);
1338
1339 map->s_partition_type = UDF_METADATA_MAP25;
1340 map->s_partition_func = udf_get_pblock_meta25;
1341
1342 mdata->s_meta_file_loc =
1343 le32_to_cpu(mdm->metadataFileLoc);
1344 mdata->s_mirror_file_loc =
1345 le32_to_cpu(mdm->metadataMirrorFileLoc);
1346 mdata->s_bitmap_file_loc =
1347 le32_to_cpu(mdm->metadataBitmapFileLoc);
1348 mdata->s_alloc_unit_size =
1349 le32_to_cpu(mdm->allocUnitSize);
1350 mdata->s_align_unit_size =
1351 le16_to_cpu(mdm->alignUnitSize);
1352 mdata->s_dup_md_flag =
1353 mdm->flags & 0x01;
1354
1355 udf_debug("Metadata Ident suffix=0x%x\n",
1356 (le16_to_cpu(
1357 ((__le16 *)
1358 mdm->partIdent.identSuffix)[0])));
1359 udf_debug("Metadata part num=%d\n",
1360 le16_to_cpu(mdm->partitionNum));
1361 udf_debug("Metadata part alloc unit size=%d\n",
1362 le32_to_cpu(mdm->allocUnitSize));
1363 udf_debug("Metadata file loc=%d\n",
1364 le32_to_cpu(mdm->metadataFileLoc));
1365 udf_debug("Mirror file loc=%d\n",
1366 le32_to_cpu(mdm->metadataMirrorFileLoc));
1367 udf_debug("Bitmap file loc=%d\n",
1368 le32_to_cpu(mdm->metadataBitmapFileLoc));
1369 udf_debug("Duplicate Flag: %d %d\n",
1370 mdata->s_dup_md_flag, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001371 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001372 udf_debug("Unknown ident: %s\n",
1373 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 continue;
1375 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001376 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1377 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001380 i, map->s_partition_num, type,
1381 map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
1383
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001384 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001385 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 *fileset = lelb_to_cpu(la->extLocation);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001388 udf_debug("FileSet found in LogicalVolDesc at block=%d, "
1389 "partition=%d\n", fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001390 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
1392 if (lvd->integritySeqExt.extLength)
1393 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001394
Jan Karac0eb31e2008-04-01 16:50:35 +02001395out_bh:
1396 brelse(bh);
1397 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
1400/*
1401 * udf_load_logicalvolint
1402 *
1403 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001404static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
1406 struct buffer_head *bh = NULL;
1407 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001408 struct udf_sb_info *sbi = UDF_SB(sb);
1409 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001412 (bh = udf_read_tagged(sb, loc.extLocation,
1413 loc.extLocation, &ident)) &&
1414 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001415 sbi->s_lvid_bh = bh;
1416 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001417
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001418 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001419 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001420 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -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 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001425 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001427 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001428 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
1431/*
1432 * udf_process_sequence
1433 *
1434 * PURPOSE
1435 * Process a main/reserve volume descriptor sequence.
1436 *
1437 * PRE-CONDITIONS
1438 * sb Pointer to _locked_ superblock.
1439 * block First block of first extent of the sequence.
1440 * lastblock Lastblock of first extent of the sequence.
1441 *
1442 * HISTORY
1443 * July 1, 1997 - Andrew E. Mileski
1444 * Written, tested, and released.
1445 */
Jan Kara200a3592008-03-04 13:03:09 +01001446static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001447 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 struct buffer_head *bh = NULL;
1450 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001451 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 struct generic_desc *gd;
1453 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001454 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 uint32_t vdsn;
1456 uint16_t ident;
1457 long next_s = 0, next_e = 0;
1458
1459 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1460
Jan Karac0eb31e2008-04-01 16:50:35 +02001461 /*
1462 * Read the main descriptor sequence and find which descriptors
1463 * are in it.
1464 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001465 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001468 if (!bh) {
1469 printk(KERN_ERR "udf: Block %Lu of volume descriptor "
1470 "sequence is corrupted or we could not read "
1471 "it.\n", (unsigned long long)block);
1472 return 1;
1473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1476 gd = (struct generic_desc *)bh->b_data;
1477 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001478 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001479 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001480 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1481 if (vdsn >= curr->volDescSeqNum) {
1482 curr->volDescSeqNum = vdsn;
1483 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001484 }
1485 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001486 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001487 curr = &vds[VDS_POS_VOL_DESC_PTR];
1488 if (vdsn >= curr->volDescSeqNum) {
1489 curr->volDescSeqNum = vdsn;
1490 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001492 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001493 next_s = le32_to_cpu(
1494 vdp->nextVolDescSeqExt.extLocation);
1495 next_e = le32_to_cpu(
1496 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001497 next_e = next_e >> sb->s_blocksize_bits;
1498 next_e += next_s;
1499 }
1500 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001501 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001502 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1503 if (vdsn >= curr->volDescSeqNum) {
1504 curr->volDescSeqNum = vdsn;
1505 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001506 }
1507 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001508 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001509 curr = &vds[VDS_POS_PARTITION_DESC];
1510 if (!curr->block)
1511 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001512 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001513 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001514 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1515 if (vdsn >= curr->volDescSeqNum) {
1516 curr->volDescSeqNum = vdsn;
1517 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001518 }
1519 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001520 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001521 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1522 if (vdsn >= curr->volDescSeqNum) {
1523 curr->volDescSeqNum = vdsn;
1524 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001525 }
1526 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001527 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001528 vds[VDS_POS_TERMINATING_DESC].block = block;
1529 if (next_e) {
1530 block = next_s;
1531 lastblock = next_e;
1532 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001533 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001534 done = 1;
1535 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001537 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001539 /*
1540 * Now read interesting descriptors again and process them
1541 * in a suitable order
1542 */
1543 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
1544 printk(KERN_ERR "udf: Primary Volume Descriptor not found!\n");
1545 return 1;
1546 }
1547 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1548 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Jan Karac0eb31e2008-04-01 16:50:35 +02001550 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1551 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1552 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001553
Jan Karac0eb31e2008-04-01 16:50:35 +02001554 if (vds[VDS_POS_PARTITION_DESC].block) {
1555 /*
1556 * We rescan the whole descriptor sequence to find
1557 * partition descriptor blocks and process them.
1558 */
1559 for (block = vds[VDS_POS_PARTITION_DESC].block;
1560 block < vds[VDS_POS_TERMINATING_DESC].block;
1561 block++)
1562 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001563 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
1565
1566 return 0;
1567}
1568
Jan Kara40346002009-03-19 16:21:38 +01001569static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1570 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Jan Kara40346002009-03-19 16:21:38 +01001572 struct anchorVolDescPtr *anchor;
1573 long main_s, main_e, reserve_s, reserve_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Jan Kara40346002009-03-19 16:21:38 +01001575 anchor = (struct anchorVolDescPtr *)bh->b_data;
1576
1577 /* Locate the main sequence */
1578 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1579 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1580 main_e = main_e >> sb->s_blocksize_bits;
1581 main_e += main_s;
1582
1583 /* Locate the reserve sequence */
1584 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1585 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1586 reserve_e = reserve_e >> sb->s_blocksize_bits;
1587 reserve_e += reserve_s;
1588
1589 /* Process the main & reserve sequences */
1590 /* responsible for finding the PartitionDesc(s) */
1591 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1592 return 1;
1593 return !udf_process_sequence(sb, reserve_s, reserve_e, fileset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
Jan Kara40346002009-03-19 16:21:38 +01001596/*
1597 * Check whether there is an anchor block in the given block and
1598 * load Volume Descriptor Sequence if so.
1599 */
1600static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1601 struct kernel_lb_addr *fileset)
1602{
1603 struct buffer_head *bh;
1604 uint16_t ident;
1605 int ret;
1606
1607 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1608 udf_fixed_to_variable(block) >=
1609 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1610 return 0;
1611
1612 bh = udf_read_tagged(sb, block, block, &ident);
1613 if (!bh)
1614 return 0;
1615 if (ident != TAG_IDENT_AVDP) {
1616 brelse(bh);
1617 return 0;
1618 }
1619 ret = udf_load_sequence(sb, bh, fileset);
1620 brelse(bh);
1621 return ret;
1622}
1623
1624/* Search for an anchor volume descriptor pointer */
1625static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1626 struct kernel_lb_addr *fileset)
1627{
1628 sector_t last[6];
1629 int i;
1630 struct udf_sb_info *sbi = UDF_SB(sb);
1631 int last_count = 0;
1632
1633 /* First try user provided anchor */
1634 if (sbi->s_anchor) {
1635 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1636 return lastblock;
1637 }
1638 /*
1639 * according to spec, anchor is in either:
1640 * block 256
1641 * lastblock-256
1642 * lastblock
1643 * however, if the disc isn't closed, it could be 512.
1644 */
1645 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1646 return lastblock;
1647 /*
1648 * The trouble is which block is the last one. Drives often misreport
1649 * this so we try various possibilities.
1650 */
1651 last[last_count++] = lastblock;
1652 if (lastblock >= 1)
1653 last[last_count++] = lastblock - 1;
1654 last[last_count++] = lastblock + 1;
1655 if (lastblock >= 2)
1656 last[last_count++] = lastblock - 2;
1657 if (lastblock >= 150)
1658 last[last_count++] = lastblock - 150;
1659 if (lastblock >= 152)
1660 last[last_count++] = lastblock - 152;
1661
1662 for (i = 0; i < last_count; i++) {
1663 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1664 sb->s_blocksize_bits)
1665 continue;
1666 if (udf_check_anchor_block(sb, last[i], fileset))
1667 return last[i];
1668 if (last[i] < 256)
1669 continue;
1670 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1671 return last[i];
1672 }
1673
1674 /* Finally try block 512 in case media is open */
1675 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1676 return last[0];
1677 return 0;
1678}
1679
1680/*
1681 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1682 * area specified by it. The function expects sbi->s_lastblock to be the last
1683 * block on the media.
1684 *
1685 * Return 1 if ok, 0 if not found.
1686 *
1687 */
1688static int udf_find_anchor(struct super_block *sb,
1689 struct kernel_lb_addr *fileset)
1690{
1691 sector_t lastblock;
1692 struct udf_sb_info *sbi = UDF_SB(sb);
1693
1694 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1695 if (lastblock)
1696 goto out;
1697
1698 /* No anchor found? Try VARCONV conversion of block numbers */
1699 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1700 /* Firstly, we try to not convert number of the last block */
1701 lastblock = udf_scan_anchors(sb,
1702 udf_variable_to_fixed(sbi->s_last_block),
1703 fileset);
1704 if (lastblock)
1705 goto out;
1706
1707 /* Secondly, we try with converted number of the last block */
1708 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1709 if (!lastblock) {
1710 /* VARCONV didn't help. Clear it. */
1711 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1712 return 0;
1713 }
1714out:
1715 sbi->s_last_block = lastblock;
1716 return 1;
1717}
1718
1719/*
1720 * Check Volume Structure Descriptor, find Anchor block and load Volume
1721 * Descriptor Sequence
1722 */
1723static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1724 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001725{
1726 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara40346002009-03-19 16:21:38 +01001727 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001728
1729 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1730 if (!silent)
1731 printk(KERN_WARNING "UDF-fs: Bad block size\n");
1732 return 0;
1733 }
1734 sbi->s_last_block = uopt->lastblock;
Jan Kara40346002009-03-19 16:21:38 +01001735 if (!uopt->novrs) {
1736 /* Check that it is NSR02 compliant */
1737 nsr_off = udf_check_vsd(sb);
1738 if (!nsr_off) {
1739 if (!silent)
1740 printk(KERN_WARNING "UDF-fs: No VRS found\n");
1741 return 0;
1742 }
1743 if (nsr_off == -1)
1744 udf_debug("Failed to read byte 32768. Assuming open "
1745 "disc. Skipping validity check\n");
1746 if (!sbi->s_last_block)
1747 sbi->s_last_block = udf_get_last_block(sb);
1748 } else {
1749 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001750 }
Jan Kara40346002009-03-19 16:21:38 +01001751
1752 /* Look for anchor block and load Volume Descriptor Sequence */
1753 sbi->s_anchor = uopt->anchor;
1754 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001755 if (!silent)
1756 printk(KERN_WARNING "UDF-fs: No anchor found\n");
1757 return 0;
1758 }
1759 return 1;
1760}
1761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762static void udf_open_lvid(struct super_block *sb)
1763{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001764 struct udf_sb_info *sbi = UDF_SB(sb);
1765 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001766 struct logicalVolIntegrityDesc *lvid;
1767 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001768
Marcin Slusarz165923f2008-02-10 11:33:08 +01001769 if (!bh)
1770 return;
Jan Kara949f4a72010-10-20 18:49:20 +02001771
1772 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001773 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1774 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Marcin Slusarz165923f2008-02-10 11:33:08 +01001776 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1777 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1778 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1779 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001780 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Marcin Slusarz165923f2008-02-10 11:33:08 +01001782 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001783 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001784 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001785
1786 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1787 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001788 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001789 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790}
1791
1792static void udf_close_lvid(struct super_block *sb)
1793{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001794 struct udf_sb_info *sbi = UDF_SB(sb);
1795 struct buffer_head *bh = sbi->s_lvid_bh;
1796 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001797 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001798
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001799 if (!bh)
1800 return;
1801
Jan Kara949f4a72010-10-20 18:49:20 +02001802 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001803 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001804 lvidiu = udf_sb_lvidiu(sbi);
1805 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1806 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1807 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1808 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1809 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1810 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1811 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1812 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1813 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1814 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Marcin Slusarz165923f2008-02-10 11:33:08 +01001816 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001817 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001818 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001819
1820 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1821 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001822 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001823 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
Jan Karad664b6a2010-10-20 18:28:46 +02001826u64 lvid_get_unique_id(struct super_block *sb)
1827{
1828 struct buffer_head *bh;
1829 struct udf_sb_info *sbi = UDF_SB(sb);
1830 struct logicalVolIntegrityDesc *lvid;
1831 struct logicalVolHeaderDesc *lvhd;
1832 u64 uniqueID;
1833 u64 ret;
1834
1835 bh = sbi->s_lvid_bh;
1836 if (!bh)
1837 return 0;
1838
1839 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1840 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
1841
1842 mutex_lock(&sbi->s_alloc_mutex);
1843 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
1844 if (!(++uniqueID & 0xFFFFFFFF))
1845 uniqueID += 16;
1846 lvhd->uniqueID = cpu_to_le64(uniqueID);
1847 mutex_unlock(&sbi->s_alloc_mutex);
1848 mark_buffer_dirty(bh);
1849
1850 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
1852
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001853static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1854{
1855 int i;
1856 int nr_groups = bitmap->s_nr_groups;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001857 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1858 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001859
1860 for (i = 0; i < nr_groups; i++)
1861 if (bitmap->s_block_bitmap[i])
1862 brelse(bitmap->s_block_bitmap[i]);
1863
1864 if (size <= PAGE_SIZE)
1865 kfree(bitmap);
1866 else
1867 vfree(bitmap);
1868}
1869
Jan Kara2e0838f2008-04-01 18:08:51 +02001870static void udf_free_partition(struct udf_part_map *map)
1871{
1872 int i;
Jan Karabfb257a2008-04-08 20:37:21 +02001873 struct udf_meta_data *mdata;
Jan Kara2e0838f2008-04-01 18:08:51 +02001874
1875 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1876 iput(map->s_uspace.s_table);
1877 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1878 iput(map->s_fspace.s_table);
1879 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1880 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1881 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1882 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1883 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1884 for (i = 0; i < 4; i++)
1885 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
Jan Karabfb257a2008-04-08 20:37:21 +02001886 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1887 mdata = &map->s_type_specific.s_metadata;
1888 iput(mdata->s_metadata_fe);
1889 mdata->s_metadata_fe = NULL;
1890
1891 iput(mdata->s_mirror_fe);
1892 mdata->s_mirror_fe = NULL;
1893
1894 iput(mdata->s_bitmap_fe);
1895 mdata->s_bitmap_fe = NULL;
1896 }
Jan Kara2e0838f2008-04-01 18:08:51 +02001897}
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899static int udf_fill_super(struct super_block *sb, void *options, int silent)
1900{
1901 int i;
Jan Kara40346002009-03-19 16:21:38 +01001902 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001903 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001905 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 struct udf_sb_info *sbi;
1907
1908 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1909 uopt.uid = -1;
1910 uopt.gid = -1;
1911 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001912 uopt.fmode = UDF_INVALID_MODE;
1913 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001915 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Alessio Igor Bogani9db9f9e2010-11-16 18:40:49 +01001916 if (!sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001921 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Miklos Szeredi6da80892008-02-08 04:21:50 -08001923 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 goto error_out;
1925
1926 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001927 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Joe Perches8076c362011-10-10 01:08:03 -07001928 udf_err(sb, "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 goto error_out;
1930 }
1931#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001932 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 uopt.nls_map = load_nls_default();
1934 if (!uopt.nls_map)
1935 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1936 else
1937 udf_debug("Using default NLS map\n");
1938 }
1939#endif
1940 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1941 uopt.flags |= (1 << UDF_FLAG_UTF8);
1942
1943 fileset.logicalBlockNum = 0xFFFFFFFF;
1944 fileset.partitionReferenceNum = 0xFFFF;
1945
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001946 sbi->s_flags = uopt.flags;
1947 sbi->s_uid = uopt.uid;
1948 sbi->s_gid = uopt.gid;
1949 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01001950 sbi->s_fmode = uopt.fmode;
1951 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001952 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02001953 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001955 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001956 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001958 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001960 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 /* Fill in the rest of the superblock */
1963 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001964 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 sb->s_dirt = 0;
1967 sb->s_magic = UDF_SUPER_MAGIC;
1968 sb->s_time_gran = 1000;
1969
Jan Kara40346002009-03-19 16:21:38 +01001970 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
1971 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1972 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04001973 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara40346002009-03-19 16:21:38 +01001974 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1975 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
1976 if (!silent)
1977 printk(KERN_NOTICE
1978 "UDF-fs: Rescanning with blocksize "
1979 "%d\n", UDF_DEFAULT_BLOCKSIZE);
1980 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
1981 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1982 }
1983 }
1984 if (!ret) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001985 printk(KERN_WARNING "UDF-fs: No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 goto error_out;
1987 }
1988
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001989 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001991 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001992 struct logicalVolIntegrityDescImpUse *lvidiu =
1993 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001994 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
1995 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001996 /* uint16_t maxUDFWriteRev =
1997 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001999 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002000 printk(KERN_ERR "UDF-fs: minUDFReadRev=%x "
2001 "(max is %x)\n",
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002002 le16_to_cpu(lvidiu->minUDFReadRev),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002003 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08002005 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002008 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2011 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2012 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2013 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2014 }
2015
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002016 if (!sbi->s_partitions) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002017 printk(KERN_WARNING "UDF-fs: No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 goto error_out;
2019 }
2020
Marcin Slusarz4b111112008-02-08 04:20:36 -08002021 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2022 UDF_PART_FLAG_READ_ONLY) {
2023 printk(KERN_NOTICE "UDF-fs: Partition marked readonly; "
2024 "forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002025 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002026 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002027
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002028 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002029 printk(KERN_WARNING "UDF-fs: No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 goto error_out;
2031 }
2032
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002033 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002034 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002035 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Adrian Bunka9ca6632008-02-08 04:20:47 -08002036 udf_info("UDF: Mounting volume '%s', "
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002037 "timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarz56774802008-02-10 11:25:31 +01002038 sbi->s_volume_ident, le16_to_cpu(ts.year), ts.month, ts.day,
2039 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
2041 if (!(sb->s_flags & MS_RDONLY))
2042 udf_open_lvid(sb);
2043
2044 /* Assign the root inode */
2045 /* assign inodes by physical block number */
2046 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002047 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002048 if (!inode) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002049 printk(KERN_ERR "UDF-fs: Error in udf_iget, block=%d, "
2050 "partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002051 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 goto error_out;
2053 }
2054
2055 /* Allocate a dentry for the root inode */
2056 sb->s_root = d_alloc_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002057 if (!sb->s_root) {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002058 printk(KERN_ERR "UDF-fs: Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 iput(inode);
2060 goto error_out;
2061 }
Jan Kara31170b62007-05-08 00:35:21 -07002062 sb->s_maxbytes = MAX_LFS_FILESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 return 0;
2064
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002065error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002066 if (sbi->s_vat_inode)
2067 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002068 if (sbi->s_partitions)
2069 for (i = 0; i < sbi->s_partitions; i++)
2070 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071#ifdef CONFIG_UDF_NLS
2072 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002073 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074#endif
2075 if (!(sb->s_flags & MS_RDONLY))
2076 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002077 brelse(sbi->s_lvid_bh);
2078
2079 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 kfree(sbi);
2081 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 return -EINVAL;
2084}
2085
Joe Perches8076c362011-10-10 01:08:03 -07002086void _udf_err(struct super_block *sb, const char *function,
2087 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
2089 va_list args;
2090
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002091 if (!(sb->s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 /* mark sb error */
2093 sb->s_dirt = 1;
2094 }
2095 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002096 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 va_end(args);
Joe Perches8076c362011-10-10 01:08:03 -07002098 printk(KERN_CRIT "UDF-fs error (device %s): %s: %s",
2099 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
2101
Joe Perchesa40ecd72011-10-10 01:08:04 -07002102void _udf_warn(struct super_block *sb, const char *function,
2103 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
2105 va_list args;
2106
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002107 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002108 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 va_end(args);
Joe Perchesa40ecd72011-10-10 01:08:04 -07002110 printk(KERN_WARNING "UDF-fs warning (device %s): %s: %s",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002111 sb->s_id, function, error_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002114static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
2116 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002117 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002119 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002120
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002121 if (sbi->s_vat_inode)
2122 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002123 if (sbi->s_partitions)
2124 for (i = 0; i < sbi->s_partitions; i++)
2125 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126#ifdef CONFIG_UDF_NLS
2127 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002128 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129#endif
2130 if (!(sb->s_flags & MS_RDONLY))
2131 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002132 brelse(sbi->s_lvid_bh);
2133 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 kfree(sb->s_fs_info);
2135 sb->s_fs_info = NULL;
2136}
2137
Jan Kara146bca72009-03-16 18:27:37 +01002138static int udf_sync_fs(struct super_block *sb, int wait)
2139{
2140 struct udf_sb_info *sbi = UDF_SB(sb);
2141
2142 mutex_lock(&sbi->s_alloc_mutex);
2143 if (sbi->s_lvid_dirty) {
2144 /*
2145 * Blockdevice will be synced later so we don't have to submit
2146 * the buffer for IO
2147 */
2148 mark_buffer_dirty(sbi->s_lvid_bh);
2149 sb->s_dirt = 0;
2150 sbi->s_lvid_dirty = 0;
2151 }
2152 mutex_unlock(&sbi->s_alloc_mutex);
2153
2154 return 0;
2155}
2156
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002157static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
David Howells726c3342006-06-23 02:02:58 -07002159 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002160 struct udf_sb_info *sbi = UDF_SB(sb);
2161 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002162 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002163
2164 if (sbi->s_lvid_bh != NULL)
2165 lvidiu = udf_sb_lvidiu(sbi);
2166 else
2167 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002168
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 buf->f_type = UDF_SUPER_MAGIC;
2170 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002171 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 buf->f_bfree = udf_count_free(sb);
2173 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002174 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2175 le32_to_cpu(lvidiu->numDirs)) : 0)
2176 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002178 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002179 buf->f_fsid.val[0] = (u32)id;
2180 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 return 0;
2183}
2184
Marcin Slusarz4b111112008-02-08 04:20:36 -08002185static unsigned int udf_count_free_bitmap(struct super_block *sb,
2186 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
2188 struct buffer_head *bh = NULL;
2189 unsigned int accum = 0;
2190 int index;
2191 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002192 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 uint8_t *ptr;
2195 uint16_t ident;
2196 struct spaceBitmapDesc *bm;
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002199 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002200 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002202 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 printk(KERN_ERR "udf: udf_count_free failed\n");
2204 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002205 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002206 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 printk(KERN_ERR "udf: udf_count_free failed\n");
2208 goto out;
2209 }
2210
2211 bm = (struct spaceBitmapDesc *)bh->b_data;
2212 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002213 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2214 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002216 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002217 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2218 accum += bitmap_weight((const unsigned long *)(ptr + index),
2219 cur_bytes * 8);
2220 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002221 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002222 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002223 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002225 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 udf_debug("read failed\n");
2227 goto out;
2228 }
2229 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002230 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 }
2232 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002233 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002234out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 return accum;
2236}
2237
Marcin Slusarz4b111112008-02-08 04:20:36 -08002238static unsigned int udf_count_free_table(struct super_block *sb,
2239 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
2241 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002242 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002243 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002245 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Jan Karad1668fe2010-10-20 23:24:12 +02002247 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002248 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002249 epos.offset = sizeof(struct unallocSpaceEntry);
2250 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002252 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002254
Jan Kara3bf25cb2007-05-08 00:35:16 -07002255 brelse(epos.bh);
Jan Karad1668fe2010-10-20 23:24:12 +02002256 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 return accum;
2259}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002260
2261static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
2263 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002264 struct udf_sb_info *sbi;
2265 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002267 sbi = UDF_SB(sb);
2268 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002269 struct logicalVolIntegrityDesc *lvid =
2270 (struct logicalVolIntegrityDesc *)
2271 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002272 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002273 accum = le32_to_cpu(
2274 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 if (accum == 0xFFFFFFFF)
2276 accum = 0;
2277 }
2278 }
2279
2280 if (accum)
2281 return accum;
2282
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002283 map = &sbi->s_partmaps[sbi->s_partition];
2284 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002285 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002286 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002288 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002289 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002290 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 }
2292 if (accum)
2293 return accum;
2294
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002295 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002296 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002297 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002299 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002300 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002301 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 }
2303
2304 return accum;
2305}