blob: ce911f50b39d8de9c1e627c0aa1173d37c330341 [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
Al Viro8de52772012-02-06 12:45:27 -050078enum { UDF_MAX_LINKS = 0xffff };
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* 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 *);
Al Viro34c80b12011-12-08 21:32:45 -050094static int udf_show_options(struct seq_file *, struct dentry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Marcin Slusarz6c79e982008-02-08 04:20:30 -080096struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
97{
Marcin Slusarz4b111112008-02-08 04:20:36 -080098 struct logicalVolIntegrityDesc *lvid =
99 (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800100 __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800101 __u32 offset = number_of_partitions * 2 *
102 sizeof(uint32_t)/sizeof(uint8_t);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800103 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/* UDF filesystem type */
Al Viro152a0832010-07-25 00:46:55 +0400107static struct dentry *udf_mount(struct file_system_type *fs_type,
108 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Al Viro152a0832010-07-25 00:46:55 +0400110 return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113static struct file_system_type udf_fstype = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700114 .owner = THIS_MODULE,
115 .name = "udf",
Al Viro152a0832010-07-25 00:46:55 +0400116 .mount = udf_mount,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700117 .kill_sb = kill_block_super,
118 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700121static struct kmem_cache *udf_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123static struct inode *udf_alloc_inode(struct super_block *sb)
124{
125 struct udf_inode_info *ei;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800126 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (!ei)
128 return NULL;
Dan Bastone95f87972006-08-13 23:24:18 -0700129
130 ei->i_unique = 0;
131 ei->i_lenExtents = 0;
132 ei->i_next_alloc_block = 0;
133 ei->i_next_alloc_goal = 0;
134 ei->i_strat4096 = 0;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100135 init_rwsem(&ei->i_data_sem);
Dan Bastone95f87972006-08-13 23:24:18 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return &ei->vfs_inode;
138}
139
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100140static void udf_i_callback(struct rcu_head *head)
141{
142 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100143 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
144}
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static void udf_destroy_inode(struct inode *inode)
147{
Nick Pigginfa0d7e32011-01-07 17:49:49 +1100148 call_rcu(&inode->i_rcu, udf_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700151static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700153 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Christoph Lametera35afb82007-05-16 22:10:57 -0700155 ei->i_ext.i_data = NULL;
156 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159static int init_inodecache(void)
160{
161 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
162 sizeof(struct udf_inode_info),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700163 0, (SLAB_RECLAIM_ACCOUNT |
164 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900165 init_once);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700166 if (!udf_inode_cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return -ENOMEM;
168 return 0;
169}
170
171static void destroy_inodecache(void)
172{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700173 kmem_cache_destroy(udf_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176/* Superblock operations */
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800177static const struct super_operations udf_sb_ops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700178 .alloc_inode = udf_alloc_inode,
179 .destroy_inode = udf_destroy_inode,
180 .write_inode = udf_write_inode,
Al Viro3aac2b62010-06-07 00:43:39 -0400181 .evict_inode = udf_evict_inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700182 .put_super = udf_put_super,
Jan Kara146bca72009-03-16 18:27:37 +0100183 .sync_fs = udf_sync_fs,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700184 .statfs = udf_statfs,
185 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800186 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187};
188
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700189struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 unsigned char novrs;
191 unsigned int blocksize;
192 unsigned int session;
193 unsigned int lastblock;
194 unsigned int anchor;
195 unsigned int volume;
196 unsigned short partition;
197 unsigned int fileset;
198 unsigned int rootdir;
199 unsigned int flags;
Al Virofaa17292011-07-26 03:18:29 -0400200 umode_t umask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 gid_t gid;
202 uid_t uid;
Al Virofaa17292011-07-26 03:18:29 -0400203 umode_t fmode;
204 umode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 struct nls_table *nls_map;
206};
207
208static int __init init_udf_fs(void)
209{
210 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 err = init_inodecache();
213 if (err)
214 goto out1;
215 err = register_filesystem(&udf_fstype);
216 if (err)
217 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700220
221out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700223
224out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return err;
226}
227
228static void __exit exit_udf_fs(void)
229{
230 unregister_filesystem(&udf_fstype);
231 destroy_inodecache();
232}
233
234module_init(init_udf_fs)
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700235module_exit(exit_udf_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800237static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
238{
239 struct udf_sb_info *sbi = UDF_SB(sb);
240
241 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
242 GFP_KERNEL);
243 if (!sbi->s_partmaps) {
Joe Perches8076c362011-10-10 01:08:03 -0700244 udf_err(sb, "Unable to allocate space for %d partition maps\n",
245 count);
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800246 sbi->s_partitions = 0;
247 return -ENOMEM;
248 }
249
250 sbi->s_partitions = count;
251 return 0;
252}
253
Al Viro34c80b12011-12-08 21:32:45 -0500254static int udf_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredi6da80892008-02-08 04:21:50 -0800255{
Al Viro34c80b12011-12-08 21:32:45 -0500256 struct super_block *sb = root->d_sb;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800257 struct udf_sb_info *sbi = UDF_SB(sb);
258
259 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
260 seq_puts(seq, ",nostrict");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100261 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
Miklos Szeredi6da80892008-02-08 04:21:50 -0800262 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
263 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
264 seq_puts(seq, ",unhide");
265 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
266 seq_puts(seq, ",undelete");
267 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
268 seq_puts(seq, ",noadinicb");
269 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
270 seq_puts(seq, ",shortad");
271 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
272 seq_puts(seq, ",uid=forget");
273 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
274 seq_puts(seq, ",uid=ignore");
275 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
276 seq_puts(seq, ",gid=forget");
277 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
278 seq_puts(seq, ",gid=ignore");
279 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
280 seq_printf(seq, ",uid=%u", sbi->s_uid);
281 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
282 seq_printf(seq, ",gid=%u", sbi->s_gid);
283 if (sbi->s_umask != 0)
Al Virofaa17292011-07-26 03:18:29 -0400284 seq_printf(seq, ",umask=%ho", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100285 if (sbi->s_fmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400286 seq_printf(seq, ",mode=%ho", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100287 if (sbi->s_dmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400288 seq_printf(seq, ",dmode=%ho", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800289 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
290 seq_printf(seq, ",session=%u", sbi->s_session);
291 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
292 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
Jan Kara40346002009-03-19 16:21:38 +0100293 if (sbi->s_anchor != 0)
294 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800295 /*
296 * volume, partition, fileset and rootdir seem to be ignored
297 * currently
298 */
299 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
300 seq_puts(seq, ",utf8");
301 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
302 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
303
304 return 0;
305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
308 * udf_parse_options
309 *
310 * PURPOSE
311 * Parse mount options.
312 *
313 * DESCRIPTION
314 * The following mount options are supported:
315 *
316 * gid= Set the default group.
317 * umask= Set the default umask.
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100318 * mode= Set the default file permissions.
319 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * uid= Set the default user.
321 * bs= Set the block size.
322 * unhide Show otherwise hidden files.
323 * undelete Show deleted files in lists.
324 * adinicb Embed data in the inode (default)
325 * noadinicb Don't embed data in the inode
326 * shortad Use short ad's
327 * longad Use long ad's (default)
328 * nostrict Unset strict conformance
329 * iocharset= Set the NLS character set
330 *
331 * The remaining are for debugging and disaster recovery:
332 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700333 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 *
335 * The following expect a offset from 0.
336 *
337 * session= Set the CDROM session (default= last session)
338 * anchor= Override standard anchor location. (default= 256)
339 * volume= Override the VolumeDesc location. (unused)
340 * partition= Override the PartitionDesc location. (unused)
341 * lastblock= Set the last block of the filesystem/
342 *
343 * The following expect a offset from the partition root.
344 *
345 * fileset= Override the fileset block location. (unused)
346 * rootdir= Override the root directory location. (unused)
347 * WARNING: overriding the rootdir to a non-directory may
348 * yield highly unpredictable results.
349 *
350 * PRE-CONDITIONS
351 * options Pointer to mount options string.
352 * uopts Pointer to mount options variable.
353 *
354 * POST-CONDITIONS
355 * <return> 1 Mount options parsed okay.
356 * <return> 0 Error parsing mount options.
357 *
358 * HISTORY
359 * July 1, 1997 - Andrew E. Mileski
360 * Written, tested, and released.
361 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363enum {
364 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
365 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
366 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
367 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
368 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100369 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
370 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371};
372
Steven Whitehousea447c092008-10-13 10:46:57 +0100373static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700374 {Opt_novrs, "novrs"},
375 {Opt_nostrict, "nostrict"},
376 {Opt_bs, "bs=%u"},
377 {Opt_unhide, "unhide"},
378 {Opt_undelete, "undelete"},
379 {Opt_noadinicb, "noadinicb"},
380 {Opt_adinicb, "adinicb"},
381 {Opt_shortad, "shortad"},
382 {Opt_longad, "longad"},
383 {Opt_uforget, "uid=forget"},
384 {Opt_uignore, "uid=ignore"},
385 {Opt_gforget, "gid=forget"},
386 {Opt_gignore, "gid=ignore"},
387 {Opt_gid, "gid=%u"},
388 {Opt_uid, "uid=%u"},
389 {Opt_umask, "umask=%o"},
390 {Opt_session, "session=%u"},
391 {Opt_lastblock, "lastblock=%u"},
392 {Opt_anchor, "anchor=%u"},
393 {Opt_volume, "volume=%u"},
394 {Opt_partition, "partition=%u"},
395 {Opt_fileset, "fileset=%u"},
396 {Opt_rootdir, "rootdir=%u"},
397 {Opt_utf8, "utf8"},
398 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100399 {Opt_fmode, "mode=%o"},
400 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700401 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402};
403
Miklos Szeredi6da80892008-02-08 04:21:50 -0800404static int udf_parse_options(char *options, struct udf_options *uopt,
405 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 char *p;
408 int option;
409
410 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 uopt->partition = 0xFFFF;
412 uopt->session = 0xFFFFFFFF;
413 uopt->lastblock = 0;
414 uopt->anchor = 0;
415 uopt->volume = 0xFFFFFFFF;
416 uopt->rootdir = 0xFFFFFFFF;
417 uopt->fileset = 0xFFFFFFFF;
418 uopt->nls_map = NULL;
419
420 if (!options)
421 return 1;
422
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700423 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 substring_t args[MAX_OPT_ARGS];
425 int token;
426 if (!*p)
427 continue;
428
429 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700430 switch (token) {
431 case Opt_novrs:
432 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100433 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700434 case Opt_bs:
435 if (match_int(&args[0], &option))
436 return 0;
437 uopt->blocksize = option;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100438 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700439 break;
440 case Opt_unhide:
441 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
442 break;
443 case Opt_undelete:
444 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
445 break;
446 case Opt_noadinicb:
447 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
448 break;
449 case Opt_adinicb:
450 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
451 break;
452 case Opt_shortad:
453 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
454 break;
455 case Opt_longad:
456 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
457 break;
458 case Opt_gid:
459 if (match_int(args, &option))
460 return 0;
461 uopt->gid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700462 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700463 break;
464 case Opt_uid:
465 if (match_int(args, &option))
466 return 0;
467 uopt->uid = option;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700468 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700469 break;
470 case Opt_umask:
471 if (match_octal(args, &option))
472 return 0;
473 uopt->umask = option;
474 break;
475 case Opt_nostrict:
476 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
477 break;
478 case Opt_session:
479 if (match_int(args, &option))
480 return 0;
481 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800482 if (!remount)
483 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700484 break;
485 case Opt_lastblock:
486 if (match_int(args, &option))
487 return 0;
488 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800489 if (!remount)
490 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700491 break;
492 case Opt_anchor:
493 if (match_int(args, &option))
494 return 0;
495 uopt->anchor = option;
496 break;
497 case Opt_volume:
498 if (match_int(args, &option))
499 return 0;
500 uopt->volume = option;
501 break;
502 case Opt_partition:
503 if (match_int(args, &option))
504 return 0;
505 uopt->partition = option;
506 break;
507 case Opt_fileset:
508 if (match_int(args, &option))
509 return 0;
510 uopt->fileset = option;
511 break;
512 case Opt_rootdir:
513 if (match_int(args, &option))
514 return 0;
515 uopt->rootdir = option;
516 break;
517 case Opt_utf8:
518 uopt->flags |= (1 << UDF_FLAG_UTF8);
519 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700521 case Opt_iocharset:
522 uopt->nls_map = load_nls(args[0].from);
523 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525#endif
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700526 case Opt_uignore:
527 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
528 break;
529 case Opt_uforget:
530 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
531 break;
532 case Opt_gignore:
533 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
534 break;
535 case Opt_gforget:
536 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
537 break;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100538 case Opt_fmode:
539 if (match_octal(args, &option))
540 return 0;
541 uopt->fmode = option & 0777;
542 break;
543 case Opt_dmode:
544 if (match_octal(args, &option))
545 return 0;
546 uopt->dmode = option & 0777;
547 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700548 default:
Joe Perches78ace702011-10-10 01:08:05 -0700549 pr_err("bad mount option \"%s\" or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return 0;
551 }
552 }
553 return 1;
554}
555
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700556static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800559 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400560 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800562 uopt.flags = sbi->s_flags;
563 uopt.uid = sbi->s_uid;
564 uopt.gid = sbi->s_gid;
565 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100566 uopt.fmode = sbi->s_fmode;
567 uopt.dmode = sbi->s_dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Miklos Szeredi6da80892008-02-08 04:21:50 -0800569 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return -EINVAL;
571
Jan Karac03cad22010-10-20 22:17:28 +0200572 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800573 sbi->s_flags = uopt.flags;
574 sbi->s_uid = uopt.uid;
575 sbi->s_gid = uopt.gid;
576 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +0100577 sbi->s_fmode = uopt.fmode;
578 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200579 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800581 if (sbi->s_lvid_bh) {
582 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (write_rev > UDF_MAX_WRITE_VERSION)
584 *flags |= MS_RDONLY;
585 }
586
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400587 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
588 goto out_unlock;
589
Jan Kara36350462010-05-19 16:28:56 +0200590 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200592 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 udf_open_lvid(sb);
594
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400595out_unlock:
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400596 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
Jan Kara40346002009-03-19 16:21:38 +0100599/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
600/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
601static loff_t udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
603 struct volStructDesc *vsd = NULL;
Sebastian Manciuleaf4bcbbd2008-04-08 14:02:11 +0200604 loff_t sector = 32768;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 int sectorsize;
606 struct buffer_head *bh = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700607 int nsr02 = 0;
608 int nsr03 = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800609 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800611 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (sb->s_blocksize < sizeof(struct volStructDesc))
613 sectorsize = sizeof(struct volStructDesc);
614 else
615 sectorsize = sb->s_blocksize;
616
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800617 sector += (sbi->s_session << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 udf_debug("Starting at sector %u (%ld byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200620 (unsigned int)(sector >> sb->s_blocksize_bits),
621 sb->s_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /* Process the sequence (if applicable) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700623 for (; !nsr02 && !nsr03; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* Read a block */
625 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
626 if (!bh)
627 break;
628
629 /* Look for ISO descriptors */
630 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800631 (sector & (sb->s_blocksize - 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700633 if (vsd->stdIdent[0] == 0) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700634 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800636 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
637 VSD_STD_ID_LEN)) {
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700638 switch (vsd->structType) {
639 case 0:
640 udf_debug("ISO9660 Boot Record found\n");
641 break;
642 case 1:
Joe Perchesa983f362011-10-10 01:08:07 -0700643 udf_debug("ISO9660 Primary Volume Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700644 break;
645 case 2:
Joe Perchesa983f362011-10-10 01:08:07 -0700646 udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700647 break;
648 case 3:
Joe Perchesa983f362011-10-10 01:08:07 -0700649 udf_debug("ISO9660 Volume Partition Descriptor found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700650 break;
651 case 255:
Joe Perchesa983f362011-10-10 01:08:07 -0700652 udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700653 break;
654 default:
655 udf_debug("ISO9660 VRS (%u) found\n",
656 vsd->structType);
657 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800659 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
660 VSD_STD_ID_LEN))
661 ; /* nothing */
662 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
663 VSD_STD_ID_LEN)) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700664 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 break;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800666 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
667 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 nsr02 = sector;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800669 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
670 VSD_STD_ID_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 nsr03 = sector;
Jan Kara3bf25cb2007-05-08 00:35:16 -0700672 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
675 if (nsr03)
676 return nsr03;
677 else if (nsr02)
678 return nsr02;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800679 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return -1;
681 else
682 return 0;
683}
684
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800685static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200686 struct kernel_lb_addr *fileset,
687 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 struct buffer_head *bh = NULL;
690 long lastblock;
691 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800692 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700695 fileset->partitionReferenceNum != 0xFFFF) {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200696 bh = udf_read_ptagged(sb, fileset, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700698 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return 1;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700700 } else if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700701 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return 1;
703 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800707 sbi = UDF_SB(sb);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800708 if (!bh) {
709 /* Search backwards through the partitions */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200710 struct kernel_lb_addr newfileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700712/* --> cvg: FIXME - is it reasonable? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700714
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800715 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700716 (newfileset.partitionReferenceNum != 0xFFFF &&
717 fileset->logicalBlockNum == 0xFFFFFFFF &&
718 fileset->partitionReferenceNum == 0xFFFF);
719 newfileset.partitionReferenceNum--) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800720 lastblock = sbi->s_partmaps
721 [newfileset.partitionReferenceNum]
722 .s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 newfileset.logicalBlockNum = 0;
724
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700725 do {
Pekka Enberg97e961f2008-10-15 12:29:03 +0200726 bh = udf_read_ptagged(sb, &newfileset, 0,
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800727 &ident);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700728 if (!bh) {
729 newfileset.logicalBlockNum++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 continue;
731 }
732
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700733 switch (ident) {
734 case TAG_IDENT_SBD:
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700735 {
736 struct spaceBitmapDesc *sp;
Marcin Slusarz4b111112008-02-08 04:20:36 -0800737 sp = (struct spaceBitmapDesc *)
738 bh->b_data;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700739 newfileset.logicalBlockNum += 1 +
740 ((le32_to_cpu(sp->numOfBytes) +
Marcin Slusarz4b111112008-02-08 04:20:36 -0800741 sizeof(struct spaceBitmapDesc)
742 - 1) >> sb->s_blocksize_bits);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700743 brelse(bh);
744 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700746 case TAG_IDENT_FSD:
747 *fileset = newfileset;
748 break;
749 default:
750 newfileset.logicalBlockNum++;
751 brelse(bh);
752 bh = NULL;
753 break;
754 }
755 } while (newfileset.logicalBlockNum < lastblock &&
756 fileset->logicalBlockNum == 0xFFFFFFFF &&
757 fileset->partitionReferenceNum == 0xFFFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759 }
760
761 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700762 fileset->partitionReferenceNum != 0xFFFF) && bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 udf_debug("Fileset at block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700764 fileset->logicalBlockNum,
765 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800767 sbi->s_partition = fileset->partitionReferenceNum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 udf_load_fileset(sb, bh, root);
Jan Kara3bf25cb2007-05-08 00:35:16 -0700769 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 0;
771 }
772 return 1;
773}
774
Jan Karac0eb31e2008-04-01 16:50:35 +0200775static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
777 struct primaryVolDesc *pvoldesc;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100778 struct ustr *instr, *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200779 struct buffer_head *bh;
780 uint16_t ident;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100781 int ret = 1;
782
783 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
784 if (!instr)
785 return 1;
786
787 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
788 if (!outstr)
789 goto out1;
Jan Karac0eb31e2008-04-01 16:50:35 +0200790
791 bh = udf_read_tagged(sb, block, block, &ident);
792 if (!bh)
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100793 goto out2;
794
Jan Karac0eb31e2008-04-01 16:50:35 +0200795 BUG_ON(ident != TAG_IDENT_PVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 pvoldesc = (struct primaryVolDesc *)bh->b_data;
798
Marcin Slusarz56774802008-02-10 11:25:31 +0100799 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
800 pvoldesc->recordingDateAndTime)) {
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100801#ifdef UDFFS_DEBUG
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200802 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
Joe Perchesa983f362011-10-10 01:08:07 -0700803 udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
Marcin Slusarzaf15a292008-02-10 11:29:10 +0100804 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
805 ts->minute, le16_to_cpu(ts->typeAndTimezone));
806#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100809 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
810 if (udf_CS0toUTF8(outstr, instr)) {
811 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
812 outstr->u_len > 31 ? 31 : outstr->u_len);
Marcin Slusarz4b111112008-02-08 04:20:36 -0800813 udf_debug("volIdent[] = '%s'\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700814 UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100817 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
818 if (udf_CS0toUTF8(outstr, instr))
819 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
Jan Karac0eb31e2008-04-01 16:50:35 +0200820
821 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100822 ret = 0;
823out2:
824 kfree(outstr);
825out1:
826 kfree(instr);
827 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Namjae Jeon3080a742011-10-23 19:28:32 +0900830struct inode *udf_find_metadata_inode_efe(struct super_block *sb,
831 u32 meta_file_loc, u32 partition_num)
832{
833 struct kernel_lb_addr addr;
834 struct inode *metadata_fe;
835
836 addr.logicalBlockNum = meta_file_loc;
837 addr.partitionReferenceNum = partition_num;
838
839 metadata_fe = udf_iget(sb, &addr);
840
841 if (metadata_fe == NULL)
842 udf_warn(sb, "metadata inode efe not found\n");
843 else if (UDF_I(metadata_fe)->i_alloc_type != ICBTAG_FLAG_AD_SHORT) {
844 udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
845 iput(metadata_fe);
846 metadata_fe = NULL;
847 }
848
849 return metadata_fe;
850}
851
Jan Karabfb257a2008-04-08 20:37:21 +0200852static int udf_load_metadata_files(struct super_block *sb, int partition)
853{
854 struct udf_sb_info *sbi = UDF_SB(sb);
855 struct udf_part_map *map;
856 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200857 struct kernel_lb_addr addr;
Jan Karabfb257a2008-04-08 20:37:21 +0200858
859 map = &sbi->s_partmaps[partition];
860 mdata = &map->s_type_specific.s_metadata;
861
862 /* metadata address */
Jan Karabfb257a2008-04-08 20:37:21 +0200863 udf_debug("Metadata file location: block = %d part = %d\n",
Namjae Jeon3080a742011-10-23 19:28:32 +0900864 mdata->s_meta_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200865
Namjae Jeon3080a742011-10-23 19:28:32 +0900866 mdata->s_metadata_fe = udf_find_metadata_inode_efe(sb,
867 mdata->s_meta_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200868
869 if (mdata->s_metadata_fe == NULL) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900870 /* mirror file entry */
871 udf_debug("Mirror metadata file location: block = %d part = %d\n",
872 mdata->s_mirror_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200873
Namjae Jeon3080a742011-10-23 19:28:32 +0900874 mdata->s_mirror_fe = udf_find_metadata_inode_efe(sb,
875 mdata->s_mirror_file_loc, map->s_partition_num);
Jan Karabfb257a2008-04-08 20:37:21 +0200876
Namjae Jeon3080a742011-10-23 19:28:32 +0900877 if (mdata->s_mirror_fe == NULL) {
878 udf_err(sb, "Both metadata and mirror metadata inode efe can not found\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200879 goto error_exit;
Namjae Jeon3080a742011-10-23 19:28:32 +0900880 }
Jan Karabfb257a2008-04-08 20:37:21 +0200881 }
882
883 /*
884 * bitmap file entry
885 * Note:
886 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
887 */
888 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
889 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
890 addr.partitionReferenceNum = map->s_partition_num;
891
892 udf_debug("Bitmap file location: block = %d part = %d\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700893 addr.logicalBlockNum, addr.partitionReferenceNum);
Jan Karabfb257a2008-04-08 20:37:21 +0200894
Pekka Enberg97e961f2008-10-15 12:29:03 +0200895 mdata->s_bitmap_fe = udf_iget(sb, &addr);
Jan Karabfb257a2008-04-08 20:37:21 +0200896
897 if (mdata->s_bitmap_fe == NULL) {
898 if (sb->s_flags & MS_RDONLY)
Joe Perchesa40ecd72011-10-10 01:08:04 -0700899 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 +0200900 else {
Joe Perches8076c362011-10-10 01:08:03 -0700901 udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200902 goto error_exit;
903 }
904 }
905 }
906
907 udf_debug("udf_load_metadata_files Ok\n");
908
909 return 0;
910
911error_exit:
912 return 1;
913}
914
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700915static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200916 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
918 struct fileSetDesc *fset;
919
920 fset = (struct fileSetDesc *)bh->b_data;
921
922 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
923
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800924 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700926 udf_debug("Rootdir at block=%d, partition=%d\n",
927 root->logicalBlockNum, root->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800930int udf_compute_nr_groups(struct super_block *sb, u32 partition)
931{
932 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +0100933 return DIV_ROUND_UP(map->s_partition_len +
934 (sizeof(struct spaceBitmapDesc) << 3),
935 sb->s_blocksize * 8);
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800936}
937
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800938static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
939{
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800940 struct udf_bitmap *bitmap;
941 int nr_groups;
942 int size;
943
Marcin Slusarz883cb9d2008-02-08 04:20:34 -0800944 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800945 size = sizeof(struct udf_bitmap) +
946 (sizeof(struct buffer_head *) * nr_groups);
947
948 if (size <= PAGE_SIZE)
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700949 bitmap = kzalloc(size, GFP_KERNEL);
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800950 else
Joe Perchesed2ae6f2010-11-04 20:08:04 -0700951 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800952
Joe Perches75b09e02012-01-31 14:42:10 -0800953 if (bitmap == NULL)
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800954 return NULL;
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800955
Marcin Slusarz66e1da32008-02-08 04:20:33 -0800956 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
957 bitmap->s_nr_groups = nr_groups;
958 return bitmap;
959}
960
Jan Kara3fb38df2008-04-02 12:26:36 +0200961static int udf_fill_partdesc_info(struct super_block *sb,
962 struct partitionDesc *p, int p_index)
963{
964 struct udf_part_map *map;
965 struct udf_sb_info *sbi = UDF_SB(sb);
966 struct partitionHeaderDesc *phd;
967
968 map = &sbi->s_partmaps[p_index];
969
970 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
971 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
972
973 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
974 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
975 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
976 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
977 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
978 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
979 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
980 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
981
Joe Perchesa983f362011-10-10 01:08:07 -0700982 udf_debug("Partition (%d type %x) starts at physical %d, block length %d\n",
983 p_index, map->s_partition_type,
984 map->s_partition_root, map->s_partition_len);
Jan Kara3fb38df2008-04-02 12:26:36 +0200985
986 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
987 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
988 return 0;
989
990 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
991 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200992 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +0200993 .logicalBlockNum = le32_to_cpu(
994 phd->unallocSpaceTable.extPosition),
995 .partitionReferenceNum = p_index,
996 };
997
Pekka Enberg97e961f2008-10-15 12:29:03 +0200998 map->s_uspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +0200999 if (!map->s_uspace.s_table) {
1000 udf_debug("cannot load unallocSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001001 p_index);
Jan Kara3fb38df2008-04-02 12:26:36 +02001002 return 1;
1003 }
1004 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1005 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001006 p_index, map->s_uspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001007 }
1008
1009 if (phd->unallocSpaceBitmap.extLength) {
1010 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1011 if (!bitmap)
1012 return 1;
1013 map->s_uspace.s_bitmap = bitmap;
1014 bitmap->s_extLength = le32_to_cpu(
1015 phd->unallocSpaceBitmap.extLength);
1016 bitmap->s_extPosition = le32_to_cpu(
1017 phd->unallocSpaceBitmap.extPosition);
1018 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
Joe Perchesa983f362011-10-10 01:08:07 -07001019 udf_debug("unallocSpaceBitmap (part %d) @ %d\n",
1020 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001021 }
1022
1023 if (phd->partitionIntegrityTable.extLength)
1024 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
1025
1026 if (phd->freedSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001027 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001028 .logicalBlockNum = le32_to_cpu(
1029 phd->freedSpaceTable.extPosition),
1030 .partitionReferenceNum = p_index,
1031 };
1032
Pekka Enberg97e961f2008-10-15 12:29:03 +02001033 map->s_fspace.s_table = udf_iget(sb, &loc);
Jan Kara3fb38df2008-04-02 12:26:36 +02001034 if (!map->s_fspace.s_table) {
1035 udf_debug("cannot load freedSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001036 p_index);
Jan Kara3fb38df2008-04-02 12:26:36 +02001037 return 1;
1038 }
1039
1040 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1041 udf_debug("freedSpaceTable (part %d) @ %ld\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001042 p_index, map->s_fspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001043 }
1044
1045 if (phd->freedSpaceBitmap.extLength) {
1046 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1047 if (!bitmap)
1048 return 1;
1049 map->s_fspace.s_bitmap = bitmap;
1050 bitmap->s_extLength = le32_to_cpu(
1051 phd->freedSpaceBitmap.extLength);
1052 bitmap->s_extPosition = le32_to_cpu(
1053 phd->freedSpaceBitmap.extPosition);
1054 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
Joe Perchesa983f362011-10-10 01:08:07 -07001055 udf_debug("freedSpaceBitmap (part %d) @ %d\n",
1056 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001057 }
1058 return 0;
1059}
1060
Jan Karae971b0b2009-11-30 19:47:55 +01001061static void udf_find_vat_block(struct super_block *sb, int p_index,
1062 int type1_index, sector_t start_block)
1063{
1064 struct udf_sb_info *sbi = UDF_SB(sb);
1065 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1066 sector_t vat_block;
1067 struct kernel_lb_addr ino;
1068
1069 /*
1070 * VAT file entry is in the last recorded block. Some broken disks have
1071 * it a few blocks before so try a bit harder...
1072 */
1073 ino.partitionReferenceNum = type1_index;
1074 for (vat_block = start_block;
1075 vat_block >= map->s_partition_root &&
1076 vat_block >= start_block - 3 &&
1077 !sbi->s_vat_inode; vat_block--) {
1078 ino.logicalBlockNum = vat_block - map->s_partition_root;
1079 sbi->s_vat_inode = udf_iget(sb, &ino);
1080 }
1081}
1082
Jan Kara38b74a52008-04-02 16:01:35 +02001083static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1084{
1085 struct udf_sb_info *sbi = UDF_SB(sb);
1086 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001087 struct buffer_head *bh = NULL;
1088 struct udf_inode_info *vati;
1089 uint32_t pos;
1090 struct virtualAllocationTable20 *vat20;
Jan Kara4bf17af2009-07-14 19:30:23 +02001091 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001092
Jan Karae971b0b2009-11-30 19:47:55 +01001093 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001094 if (!sbi->s_vat_inode &&
1095 sbi->s_last_block != blocks - 1) {
Joe Perches78ace702011-10-10 01:08:05 -07001096 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1097 (unsigned long)sbi->s_last_block,
1098 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001099 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001100 }
Jan Kara38b74a52008-04-02 16:01:35 +02001101 if (!sbi->s_vat_inode)
1102 return 1;
1103
1104 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001105 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001106 map->s_type_specific.s_virtual.s_num_entries =
1107 (sbi->s_vat_inode->i_size - 36) >> 2;
1108 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001109 vati = UDF_I(sbi->s_vat_inode);
1110 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1111 pos = udf_block_map(sbi->s_vat_inode, 0);
1112 bh = sb_bread(sb, pos);
1113 if (!bh)
1114 return 1;
1115 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1116 } else {
1117 vat20 = (struct virtualAllocationTable20 *)
1118 vati->i_ext.i_data;
1119 }
Jan Kara38b74a52008-04-02 16:01:35 +02001120
Jan Kara38b74a52008-04-02 16:01:35 +02001121 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001122 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001123 map->s_type_specific.s_virtual.s_num_entries =
1124 (sbi->s_vat_inode->i_size -
1125 map->s_type_specific.s_virtual.
1126 s_start_offset) >> 2;
1127 brelse(bh);
1128 }
1129 return 0;
1130}
1131
Jan Karac0eb31e2008-04-01 16:50:35 +02001132static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Jan Karac0eb31e2008-04-01 16:50:35 +02001134 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001135 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001136 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001137 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001138 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001139 uint16_t partitionNumber;
1140 uint16_t ident;
1141 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Jan Karac0eb31e2008-04-01 16:50:35 +02001143 bh = udf_read_tagged(sb, block, block, &ident);
1144 if (!bh)
1145 return 1;
1146 if (ident != TAG_IDENT_PD)
1147 goto out_bh;
1148
1149 p = (struct partitionDesc *)bh->b_data;
1150 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001151
Jan Karabfb257a2008-04-08 20:37:21 +02001152 /* First scan for TYPE1, SPARABLE and METADATA partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001153 for (i = 0; i < sbi->s_partitions; i++) {
1154 map = &sbi->s_partmaps[i];
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001155 udf_debug("Searching map: (%d == %d)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001156 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001157 if (map->s_partition_num == partitionNumber &&
1158 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1159 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001161 }
1162
Jan Kara38b74a52008-04-02 16:01:35 +02001163 if (i >= sbi->s_partitions) {
Marcin Slusarz165923f2008-02-10 11:33:08 +01001164 udf_debug("Partition (%d) not found in partition map\n",
1165 partitionNumber);
Jan Karac0eb31e2008-04-01 16:50:35 +02001166 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001167 }
1168
Jan Kara3fb38df2008-04-02 12:26:36 +02001169 ret = udf_fill_partdesc_info(sb, p, i);
Jan Kara38b74a52008-04-02 16:01:35 +02001170
1171 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001172 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1173 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001174 */
1175 type1_idx = i;
1176 for (i = 0; i < sbi->s_partitions; i++) {
1177 map = &sbi->s_partmaps[i];
1178
1179 if (map->s_partition_num == partitionNumber &&
1180 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001181 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1182 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001183 break;
1184 }
1185
1186 if (i >= sbi->s_partitions)
1187 goto out_bh;
1188
1189 ret = udf_fill_partdesc_info(sb, p, i);
1190 if (ret)
1191 goto out_bh;
1192
Jan Karabfb257a2008-04-08 20:37:21 +02001193 if (map->s_partition_type == UDF_METADATA_MAP25) {
1194 ret = udf_load_metadata_files(sb, i);
1195 if (ret) {
Joe Perches78ace702011-10-10 01:08:05 -07001196 udf_err(sb, "error loading MetaData partition map %d\n",
1197 i);
Jan Karabfb257a2008-04-08 20:37:21 +02001198 goto out_bh;
1199 }
1200 } else {
1201 ret = udf_load_vat(sb, i, type1_idx);
1202 if (ret)
1203 goto out_bh;
1204 /*
1205 * Mark filesystem read-only if we have a partition with
1206 * virtual map since we don't handle writing to it (we
1207 * overwrite blocks instead of relocating them).
1208 */
1209 sb->s_flags |= MS_RDONLY;
Joe Perches78ace702011-10-10 01:08:05 -07001210 pr_notice("Filesystem marked read-only because writing to pseudooverwrite partition is not implemented\n");
Jan Karabfb257a2008-04-08 20:37:21 +02001211 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001212out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001213 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001214 brelse(bh);
1215 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Jan Karac0eb31e2008-04-01 16:50:35 +02001218static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001219 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 struct logicalVolDesc *lvd;
1222 int i, j, offset;
1223 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001224 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001225 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001226 uint16_t ident;
1227 struct buffer_head *bh;
Jan Kara0e69c522012-06-27 20:20:22 +02001228 unsigned int table_len;
Jan Karac0eb31e2008-04-01 16:50:35 +02001229 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Jan Karac0eb31e2008-04-01 16:50:35 +02001231 bh = udf_read_tagged(sb, block, block, &ident);
1232 if (!bh)
1233 return 1;
1234 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 lvd = (struct logicalVolDesc *)bh->b_data;
Jan Kara0e69c522012-06-27 20:20:22 +02001236 table_len = le32_to_cpu(lvd->mapTableLength);
1237 if (sizeof(*lvd) + table_len > sb->s_blocksize) {
1238 udf_err(sb, "error loading logical volume descriptor: "
1239 "Partition table too long (%u > %lu)\n", table_len,
1240 sb->s_blocksize - sizeof(*lvd));
1241 goto out_bh;
1242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Jan Kara529a7a92012-06-27 20:08:44 +02001244 ret = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
1245 if (ret)
Jan Karac0eb31e2008-04-01 16:50:35 +02001246 goto out_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001248 for (i = 0, offset = 0;
Jan Kara0e69c522012-06-27 20:20:22 +02001249 i < sbi->s_partitions && offset < table_len;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001250 i++, offset += gpm->partitionMapLength) {
1251 struct udf_part_map *map = &sbi->s_partmaps[i];
1252 gpm = (struct genericPartitionMap *)
1253 &(lvd->partitionMaps[offset]);
1254 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001255 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001256 struct genericPartitionMap1 *gpm1 =
1257 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001258 map->s_partition_type = UDF_TYPE1_MAP15;
1259 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1260 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1261 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001262 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001263 struct udfPartitionMap2 *upm2 =
1264 (struct udfPartitionMap2 *)gpm;
1265 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1266 strlen(UDF_ID_VIRTUAL))) {
1267 u16 suf =
1268 le16_to_cpu(((__le16 *)upm2->partIdent.
1269 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001270 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001271 map->s_partition_type =
1272 UDF_VIRTUAL_MAP15;
1273 map->s_partition_func =
1274 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001275 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001276 map->s_partition_type =
1277 UDF_VIRTUAL_MAP20;
1278 map->s_partition_func =
1279 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001281 } else if (!strncmp(upm2->partIdent.ident,
1282 UDF_ID_SPARABLE,
1283 strlen(UDF_ID_SPARABLE))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 uint32_t loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 struct sparingTable *st;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001286 struct sparablePartitionMap *spm =
1287 (struct sparablePartitionMap *)gpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001289 map->s_partition_type = UDF_SPARABLE_MAP15;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001290 map->s_type_specific.s_sparing.s_packet_len =
1291 le16_to_cpu(spm->packetLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001292 for (j = 0; j < spm->numSparingTables; j++) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001293 struct buffer_head *bh2;
1294
1295 loc = le32_to_cpu(
1296 spm->locSparingTable[j]);
1297 bh2 = udf_read_tagged(sb, loc, loc,
1298 &ident);
1299 map->s_type_specific.s_sparing.
1300 s_spar_map[j] = bh2;
1301
Marcin Slusarz165923f2008-02-10 11:33:08 +01001302 if (bh2 == NULL)
1303 continue;
1304
1305 st = (struct sparingTable *)bh2->b_data;
1306 if (ident != 0 || strncmp(
1307 st->sparingIdent.ident,
1308 UDF_ID_SPARING,
1309 strlen(UDF_ID_SPARING))) {
1310 brelse(bh2);
1311 map->s_type_specific.s_sparing.
1312 s_spar_map[j] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001315 map->s_partition_func = udf_get_pblock_spar15;
Jan Karabfb257a2008-04-08 20:37:21 +02001316 } else if (!strncmp(upm2->partIdent.ident,
1317 UDF_ID_METADATA,
1318 strlen(UDF_ID_METADATA))) {
1319 struct udf_meta_data *mdata =
1320 &map->s_type_specific.s_metadata;
1321 struct metadataPartitionMap *mdm =
1322 (struct metadataPartitionMap *)
1323 &(lvd->partitionMaps[offset]);
Joe Perchesa983f362011-10-10 01:08:07 -07001324 udf_debug("Parsing Logical vol part %d type %d id=%s\n",
1325 i, type, UDF_ID_METADATA);
Jan Karabfb257a2008-04-08 20:37:21 +02001326
1327 map->s_partition_type = UDF_METADATA_MAP25;
1328 map->s_partition_func = udf_get_pblock_meta25;
1329
1330 mdata->s_meta_file_loc =
1331 le32_to_cpu(mdm->metadataFileLoc);
1332 mdata->s_mirror_file_loc =
1333 le32_to_cpu(mdm->metadataMirrorFileLoc);
1334 mdata->s_bitmap_file_loc =
1335 le32_to_cpu(mdm->metadataBitmapFileLoc);
1336 mdata->s_alloc_unit_size =
1337 le32_to_cpu(mdm->allocUnitSize);
1338 mdata->s_align_unit_size =
1339 le16_to_cpu(mdm->alignUnitSize);
Jan Karaed47a7d2011-10-24 16:47:48 +02001340 if (mdm->flags & 0x01)
1341 mdata->s_flags |= MF_DUPLICATE_MD;
Jan Karabfb257a2008-04-08 20:37:21 +02001342
1343 udf_debug("Metadata Ident suffix=0x%x\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001344 le16_to_cpu(*(__le16 *)
1345 mdm->partIdent.identSuffix));
Jan Karabfb257a2008-04-08 20:37:21 +02001346 udf_debug("Metadata part num=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001347 le16_to_cpu(mdm->partitionNum));
Jan Karabfb257a2008-04-08 20:37:21 +02001348 udf_debug("Metadata part alloc unit size=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001349 le32_to_cpu(mdm->allocUnitSize));
Jan Karabfb257a2008-04-08 20:37:21 +02001350 udf_debug("Metadata file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001351 le32_to_cpu(mdm->metadataFileLoc));
Jan Karabfb257a2008-04-08 20:37:21 +02001352 udf_debug("Mirror file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001353 le32_to_cpu(mdm->metadataMirrorFileLoc));
Jan Karabfb257a2008-04-08 20:37:21 +02001354 udf_debug("Bitmap file loc=%d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001355 le32_to_cpu(mdm->metadataBitmapFileLoc));
Jan Karaed47a7d2011-10-24 16:47:48 +02001356 udf_debug("Flags: %d %d\n",
1357 mdata->s_flags, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001358 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001359 udf_debug("Unknown ident: %s\n",
1360 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 continue;
1362 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001363 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1364 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366 udf_debug("Partition (%d:%d) type %d on volume %d\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001367 i, map->s_partition_num, type, map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001370 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001371 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 *fileset = lelb_to_cpu(la->extLocation);
Joe Perchesa983f362011-10-10 01:08:07 -07001374 udf_debug("FileSet found in LogicalVolDesc at block=%d, partition=%d\n",
1375 fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001376 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378 if (lvd->integritySeqExt.extLength)
1379 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001380
Jan Karac0eb31e2008-04-01 16:50:35 +02001381out_bh:
1382 brelse(bh);
1383 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
1386/*
1387 * udf_load_logicalvolint
1388 *
1389 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001390static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 struct buffer_head *bh = NULL;
1393 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001394 struct udf_sb_info *sbi = UDF_SB(sb);
1395 struct logicalVolIntegrityDesc *lvid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 while (loc.extLength > 0 &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001398 (bh = udf_read_tagged(sb, loc.extLocation,
1399 loc.extLocation, &ident)) &&
1400 ident == TAG_IDENT_LVID) {
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001401 sbi->s_lvid_bh = bh;
1402 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001403
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001404 if (lvid->nextIntegrityExt.extLength)
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001405 udf_load_logicalvolint(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001406 leea_to_cpu(lvid->nextIntegrityExt));
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001407
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001408 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001409 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 loc.extLength -= sb->s_blocksize;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001411 loc.extLocation++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001413 if (sbi->s_lvid_bh != bh)
Jan Kara3bf25cb2007-05-08 00:35:16 -07001414 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417/*
1418 * udf_process_sequence
1419 *
1420 * PURPOSE
1421 * Process a main/reserve volume descriptor sequence.
1422 *
1423 * PRE-CONDITIONS
1424 * sb Pointer to _locked_ superblock.
1425 * block First block of first extent of the sequence.
1426 * lastblock Lastblock of first extent of the sequence.
1427 *
1428 * HISTORY
1429 * July 1, 1997 - Andrew E. Mileski
1430 * Written, tested, and released.
1431 */
Jan Kara200a3592008-03-04 13:03:09 +01001432static noinline int udf_process_sequence(struct super_block *sb, long block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001433 long lastblock, struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
1435 struct buffer_head *bh = NULL;
1436 struct udf_vds_record vds[VDS_POS_LENGTH];
Marcin Slusarz4b111112008-02-08 04:20:36 -08001437 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 struct generic_desc *gd;
1439 struct volDescPtr *vdp;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001440 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 uint32_t vdsn;
1442 uint16_t ident;
1443 long next_s = 0, next_e = 0;
1444
1445 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1446
Jan Karac0eb31e2008-04-01 16:50:35 +02001447 /*
1448 * Read the main descriptor sequence and find which descriptors
1449 * are in it.
1450 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001451 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karac0eb31e2008-04-01 16:50:35 +02001454 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07001455 udf_err(sb,
1456 "Block %llu of volume descriptor sequence is corrupted or we could not read it\n",
1457 (unsigned long long)block);
Jan Karac0eb31e2008-04-01 16:50:35 +02001458 return 1;
1459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1462 gd = (struct generic_desc *)bh->b_data;
1463 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001464 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001465 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001466 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1467 if (vdsn >= curr->volDescSeqNum) {
1468 curr->volDescSeqNum = vdsn;
1469 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001470 }
1471 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001472 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001473 curr = &vds[VDS_POS_VOL_DESC_PTR];
1474 if (vdsn >= curr->volDescSeqNum) {
1475 curr->volDescSeqNum = vdsn;
1476 curr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001478 vdp = (struct volDescPtr *)bh->b_data;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001479 next_s = le32_to_cpu(
1480 vdp->nextVolDescSeqExt.extLocation);
1481 next_e = le32_to_cpu(
1482 vdp->nextVolDescSeqExt.extLength);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001483 next_e = next_e >> sb->s_blocksize_bits;
1484 next_e += next_s;
1485 }
1486 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001487 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001488 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1489 if (vdsn >= curr->volDescSeqNum) {
1490 curr->volDescSeqNum = vdsn;
1491 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001492 }
1493 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001494 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001495 curr = &vds[VDS_POS_PARTITION_DESC];
1496 if (!curr->block)
1497 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001498 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001499 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001500 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1501 if (vdsn >= curr->volDescSeqNum) {
1502 curr->volDescSeqNum = vdsn;
1503 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001504 }
1505 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001506 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Marcin Slusarz4b111112008-02-08 04:20:36 -08001507 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1508 if (vdsn >= curr->volDescSeqNum) {
1509 curr->volDescSeqNum = vdsn;
1510 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001511 }
1512 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001513 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001514 vds[VDS_POS_TERMINATING_DESC].block = block;
1515 if (next_e) {
1516 block = next_s;
1517 lastblock = next_e;
1518 next_s = next_e = 0;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001519 } else
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001520 done = 1;
1521 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001523 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001525 /*
1526 * Now read interesting descriptors again and process them
1527 * in a suitable order
1528 */
1529 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
Joe Perches78ace702011-10-10 01:08:05 -07001530 udf_err(sb, "Primary Volume Descriptor not found!\n");
Jan Karac0eb31e2008-04-01 16:50:35 +02001531 return 1;
1532 }
1533 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1534 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Jan Karac0eb31e2008-04-01 16:50:35 +02001536 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1537 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1538 return 1;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001539
Jan Karac0eb31e2008-04-01 16:50:35 +02001540 if (vds[VDS_POS_PARTITION_DESC].block) {
1541 /*
1542 * We rescan the whole descriptor sequence to find
1543 * partition descriptor blocks and process them.
1544 */
1545 for (block = vds[VDS_POS_PARTITION_DESC].block;
1546 block < vds[VDS_POS_TERMINATING_DESC].block;
1547 block++)
1548 if (udf_load_partdesc(sb, block))
Marcin Slusarz165923f2008-02-10 11:33:08 +01001549 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 }
1551
1552 return 0;
1553}
1554
Jan Kara40346002009-03-19 16:21:38 +01001555static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1556 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Jan Kara40346002009-03-19 16:21:38 +01001558 struct anchorVolDescPtr *anchor;
1559 long main_s, main_e, reserve_s, reserve_e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Jan Kara40346002009-03-19 16:21:38 +01001561 anchor = (struct anchorVolDescPtr *)bh->b_data;
1562
1563 /* Locate the main sequence */
1564 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1565 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1566 main_e = main_e >> sb->s_blocksize_bits;
1567 main_e += main_s;
1568
1569 /* Locate the reserve sequence */
1570 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1571 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1572 reserve_e = reserve_e >> sb->s_blocksize_bits;
1573 reserve_e += reserve_s;
1574
1575 /* Process the main & reserve sequences */
1576 /* responsible for finding the PartitionDesc(s) */
1577 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1578 return 1;
1579 return !udf_process_sequence(sb, reserve_s, reserve_e, fileset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Jan Kara40346002009-03-19 16:21:38 +01001582/*
1583 * Check whether there is an anchor block in the given block and
1584 * load Volume Descriptor Sequence if so.
1585 */
1586static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1587 struct kernel_lb_addr *fileset)
1588{
1589 struct buffer_head *bh;
1590 uint16_t ident;
1591 int ret;
1592
1593 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1594 udf_fixed_to_variable(block) >=
1595 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1596 return 0;
1597
1598 bh = udf_read_tagged(sb, block, block, &ident);
1599 if (!bh)
1600 return 0;
1601 if (ident != TAG_IDENT_AVDP) {
1602 brelse(bh);
1603 return 0;
1604 }
1605 ret = udf_load_sequence(sb, bh, fileset);
1606 brelse(bh);
1607 return ret;
1608}
1609
1610/* Search for an anchor volume descriptor pointer */
1611static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1612 struct kernel_lb_addr *fileset)
1613{
1614 sector_t last[6];
1615 int i;
1616 struct udf_sb_info *sbi = UDF_SB(sb);
1617 int last_count = 0;
1618
1619 /* First try user provided anchor */
1620 if (sbi->s_anchor) {
1621 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1622 return lastblock;
1623 }
1624 /*
1625 * according to spec, anchor is in either:
1626 * block 256
1627 * lastblock-256
1628 * lastblock
1629 * however, if the disc isn't closed, it could be 512.
1630 */
1631 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1632 return lastblock;
1633 /*
1634 * The trouble is which block is the last one. Drives often misreport
1635 * this so we try various possibilities.
1636 */
1637 last[last_count++] = lastblock;
1638 if (lastblock >= 1)
1639 last[last_count++] = lastblock - 1;
1640 last[last_count++] = lastblock + 1;
1641 if (lastblock >= 2)
1642 last[last_count++] = lastblock - 2;
1643 if (lastblock >= 150)
1644 last[last_count++] = lastblock - 150;
1645 if (lastblock >= 152)
1646 last[last_count++] = lastblock - 152;
1647
1648 for (i = 0; i < last_count; i++) {
1649 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1650 sb->s_blocksize_bits)
1651 continue;
1652 if (udf_check_anchor_block(sb, last[i], fileset))
1653 return last[i];
1654 if (last[i] < 256)
1655 continue;
1656 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1657 return last[i];
1658 }
1659
1660 /* Finally try block 512 in case media is open */
1661 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1662 return last[0];
1663 return 0;
1664}
1665
1666/*
1667 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1668 * area specified by it. The function expects sbi->s_lastblock to be the last
1669 * block on the media.
1670 *
1671 * Return 1 if ok, 0 if not found.
1672 *
1673 */
1674static int udf_find_anchor(struct super_block *sb,
1675 struct kernel_lb_addr *fileset)
1676{
1677 sector_t lastblock;
1678 struct udf_sb_info *sbi = UDF_SB(sb);
1679
1680 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1681 if (lastblock)
1682 goto out;
1683
1684 /* No anchor found? Try VARCONV conversion of block numbers */
1685 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1686 /* Firstly, we try to not convert number of the last block */
1687 lastblock = udf_scan_anchors(sb,
1688 udf_variable_to_fixed(sbi->s_last_block),
1689 fileset);
1690 if (lastblock)
1691 goto out;
1692
1693 /* Secondly, we try with converted number of the last block */
1694 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1695 if (!lastblock) {
1696 /* VARCONV didn't help. Clear it. */
1697 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1698 return 0;
1699 }
1700out:
1701 sbi->s_last_block = lastblock;
1702 return 1;
1703}
1704
1705/*
1706 * Check Volume Structure Descriptor, find Anchor block and load Volume
1707 * Descriptor Sequence
1708 */
1709static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1710 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001711{
1712 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara40346002009-03-19 16:21:38 +01001713 loff_t nsr_off;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001714
1715 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1716 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001717 udf_warn(sb, "Bad block size\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001718 return 0;
1719 }
1720 sbi->s_last_block = uopt->lastblock;
Jan Kara40346002009-03-19 16:21:38 +01001721 if (!uopt->novrs) {
1722 /* Check that it is NSR02 compliant */
1723 nsr_off = udf_check_vsd(sb);
1724 if (!nsr_off) {
1725 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001726 udf_warn(sb, "No VRS found\n");
Jan Kara40346002009-03-19 16:21:38 +01001727 return 0;
1728 }
1729 if (nsr_off == -1)
Joe Perchesa983f362011-10-10 01:08:07 -07001730 udf_debug("Failed to read byte 32768. Assuming open disc. Skipping validity check\n");
Jan Kara40346002009-03-19 16:21:38 +01001731 if (!sbi->s_last_block)
1732 sbi->s_last_block = udf_get_last_block(sb);
1733 } else {
1734 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001735 }
Jan Kara40346002009-03-19 16:21:38 +01001736
1737 /* Look for anchor block and load Volume Descriptor Sequence */
1738 sbi->s_anchor = uopt->anchor;
1739 if (!udf_find_anchor(sb, fileset)) {
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001740 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001741 udf_warn(sb, "No anchor found\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001742 return 0;
1743 }
1744 return 1;
1745}
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747static void udf_open_lvid(struct super_block *sb)
1748{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001749 struct udf_sb_info *sbi = UDF_SB(sb);
1750 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001751 struct logicalVolIntegrityDesc *lvid;
1752 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01001753
Marcin Slusarz165923f2008-02-10 11:33:08 +01001754 if (!bh)
1755 return;
Jan Kara949f4a72010-10-20 18:49:20 +02001756
1757 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001758 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1759 lvidiu = udf_sb_lvidiu(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Marcin Slusarz165923f2008-02-10 11:33:08 +01001761 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1762 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1763 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1764 CURRENT_TIME);
Jan Kara146bca72009-03-16 18:27:37 +01001765 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Marcin Slusarz165923f2008-02-10 11:33:08 +01001767 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001768 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001769 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001770
1771 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1772 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001773 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001774 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775}
1776
1777static void udf_close_lvid(struct super_block *sb)
1778{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001779 struct udf_sb_info *sbi = UDF_SB(sb);
1780 struct buffer_head *bh = sbi->s_lvid_bh;
1781 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001782 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001783
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001784 if (!bh)
1785 return;
1786
Jan Kara949f4a72010-10-20 18:49:20 +02001787 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001788 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001789 lvidiu = udf_sb_lvidiu(sbi);
1790 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1791 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1792 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1793 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1794 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1795 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1796 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1797 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1798 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1799 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Marcin Slusarz165923f2008-02-10 11:33:08 +01001801 lvid->descTag.descCRC = cpu_to_le16(
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001802 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
Bob Copelandf845fce2008-04-17 09:47:48 +02001803 le16_to_cpu(lvid->descTag.descCRCLength)));
Marcin Slusarz165923f2008-02-10 11:33:08 +01001804
1805 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
Jan Kara853a0c22011-12-23 11:53:07 +01001806 /*
1807 * We set buffer uptodate unconditionally here to avoid spurious
1808 * warnings from mark_buffer_dirty() when previous EIO has marked
1809 * the buffer as !uptodate
1810 */
1811 set_buffer_uptodate(bh);
Marcin Slusarz165923f2008-02-10 11:33:08 +01001812 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01001813 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02001814 mutex_unlock(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
Jan Karad664b6a2010-10-20 18:28:46 +02001817u64 lvid_get_unique_id(struct super_block *sb)
1818{
1819 struct buffer_head *bh;
1820 struct udf_sb_info *sbi = UDF_SB(sb);
1821 struct logicalVolIntegrityDesc *lvid;
1822 struct logicalVolHeaderDesc *lvhd;
1823 u64 uniqueID;
1824 u64 ret;
1825
1826 bh = sbi->s_lvid_bh;
1827 if (!bh)
1828 return 0;
1829
1830 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1831 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
1832
1833 mutex_lock(&sbi->s_alloc_mutex);
1834 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
1835 if (!(++uniqueID & 0xFFFFFFFF))
1836 uniqueID += 16;
1837 lvhd->uniqueID = cpu_to_le64(uniqueID);
1838 mutex_unlock(&sbi->s_alloc_mutex);
1839 mark_buffer_dirty(bh);
1840
1841 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
1843
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001844static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1845{
1846 int i;
1847 int nr_groups = bitmap->s_nr_groups;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001848 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1849 nr_groups);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001850
1851 for (i = 0; i < nr_groups; i++)
1852 if (bitmap->s_block_bitmap[i])
1853 brelse(bitmap->s_block_bitmap[i]);
1854
1855 if (size <= PAGE_SIZE)
1856 kfree(bitmap);
1857 else
1858 vfree(bitmap);
1859}
1860
Jan Kara2e0838f2008-04-01 18:08:51 +02001861static void udf_free_partition(struct udf_part_map *map)
1862{
1863 int i;
Jan Karabfb257a2008-04-08 20:37:21 +02001864 struct udf_meta_data *mdata;
Jan Kara2e0838f2008-04-01 18:08:51 +02001865
1866 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1867 iput(map->s_uspace.s_table);
1868 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1869 iput(map->s_fspace.s_table);
1870 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1871 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1872 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1873 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1874 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1875 for (i = 0; i < 4; i++)
1876 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
Jan Karabfb257a2008-04-08 20:37:21 +02001877 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1878 mdata = &map->s_type_specific.s_metadata;
1879 iput(mdata->s_metadata_fe);
1880 mdata->s_metadata_fe = NULL;
1881
1882 iput(mdata->s_mirror_fe);
1883 mdata->s_mirror_fe = NULL;
1884
1885 iput(mdata->s_bitmap_fe);
1886 mdata->s_bitmap_fe = NULL;
1887 }
Jan Kara2e0838f2008-04-01 18:08:51 +02001888}
1889
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890static int udf_fill_super(struct super_block *sb, void *options, int silent)
1891{
1892 int i;
Jan Kara40346002009-03-19 16:21:38 +01001893 int ret;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001894 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001896 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 struct udf_sb_info *sbi;
1898
1899 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1900 uopt.uid = -1;
1901 uopt.gid = -1;
1902 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01001903 uopt.fmode = UDF_INVALID_MODE;
1904 uopt.dmode = UDF_INVALID_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001906 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
Alessio Igor Bogani9db9f9e2010-11-16 18:40:49 +01001907 if (!sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Ingo Molnar1e7933d2006-03-23 03:00:44 -08001912 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Miklos Szeredi6da80892008-02-08 04:21:50 -08001914 if (!udf_parse_options((char *)options, &uopt, false))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 goto error_out;
1916
1917 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001918 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Joe Perches8076c362011-10-10 01:08:03 -07001919 udf_err(sb, "utf8 cannot be combined with iocharset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 goto error_out;
1921 }
1922#ifdef CONFIG_UDF_NLS
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001923 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 uopt.nls_map = load_nls_default();
1925 if (!uopt.nls_map)
1926 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1927 else
1928 udf_debug("Using default NLS map\n");
1929 }
1930#endif
1931 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1932 uopt.flags |= (1 << UDF_FLAG_UTF8);
1933
1934 fileset.logicalBlockNum = 0xFFFFFFFF;
1935 fileset.partitionReferenceNum = 0xFFFF;
1936
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001937 sbi->s_flags = uopt.flags;
1938 sbi->s_uid = uopt.uid;
1939 sbi->s_gid = uopt.gid;
1940 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd2008-11-16 20:52:19 +01001941 sbi->s_fmode = uopt.fmode;
1942 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001943 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02001944 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001946 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001947 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001949 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001951 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 /* Fill in the rest of the superblock */
1954 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02001955 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 sb->s_dirt = 0;
1958 sb->s_magic = UDF_SUPER_MAGIC;
1959 sb->s_time_gran = 1000;
1960
Jan Kara40346002009-03-19 16:21:38 +01001961 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
1962 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1963 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04001964 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Jan Kara40346002009-03-19 16:21:38 +01001965 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1966 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
1967 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001968 pr_notice("Rescanning with blocksize %d\n",
1969 UDF_DEFAULT_BLOCKSIZE);
Jan Kara40346002009-03-19 16:21:38 +01001970 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
1971 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1972 }
1973 }
1974 if (!ret) {
Joe Perches78ace702011-10-10 01:08:05 -07001975 udf_warn(sb, "No partition found (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 goto error_out;
1977 }
1978
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001979 udf_debug("Lastblock=%d\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001981 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001982 struct logicalVolIntegrityDescImpUse *lvidiu =
1983 udf_sb_lvidiu(sbi);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001984 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
1985 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001986 /* uint16_t maxUDFWriteRev =
1987 le16_to_cpu(lvidiu->maxUDFWriteRev); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001989 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Joe Perches78ace702011-10-10 01:08:05 -07001990 udf_err(sb, "minUDFReadRev=%x (max is %x)\n",
1991 le16_to_cpu(lvidiu->minUDFReadRev),
1992 UDF_MAX_READ_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 goto error_out;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001994 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001997 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2000 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2001 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2002 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2003 }
2004
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002005 if (!sbi->s_partitions) {
Joe Perches78ace702011-10-10 01:08:05 -07002006 udf_warn(sb, "No partition found (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 goto error_out;
2008 }
2009
Marcin Slusarz4b111112008-02-08 04:20:36 -08002010 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2011 UDF_PART_FLAG_READ_ONLY) {
Joe Perches78ace702011-10-10 01:08:05 -07002012 pr_notice("Partition marked readonly; forcing readonly mount\n");
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002013 sb->s_flags |= MS_RDONLY;
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002014 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002015
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002016 if (udf_find_fileset(sb, &fileset, &rootdir)) {
Joe Perches78ace702011-10-10 01:08:05 -07002017 udf_warn(sb, "No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 goto error_out;
2019 }
2020
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002021 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002022 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002023 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Joe Perches78ace702011-10-10 01:08:05 -07002024 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2025 sbi->s_volume_ident,
2026 le16_to_cpu(ts.year), ts.month, ts.day,
Marcin Slusarz56774802008-02-10 11:25:31 +01002027 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029 if (!(sb->s_flags & MS_RDONLY))
2030 udf_open_lvid(sb);
2031
2032 /* Assign the root inode */
2033 /* assign inodes by physical block number */
2034 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002035 inode = udf_iget(sb, &rootdir);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002036 if (!inode) {
Joe Perches78ace702011-10-10 01:08:05 -07002037 udf_err(sb, "Error in udf_iget, block=%d, partition=%d\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002038 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 goto error_out;
2040 }
2041
2042 /* Allocate a dentry for the root inode */
Al Viro48fde702012-01-08 22:15:13 -05002043 sb->s_root = d_make_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002044 if (!sb->s_root) {
Joe Perches78ace702011-10-10 01:08:05 -07002045 udf_err(sb, "Couldn't allocate root dentry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 goto error_out;
2047 }
Jan Kara31170b62007-05-08 00:35:21 -07002048 sb->s_maxbytes = MAX_LFS_FILESIZE;
Al Viro8de52772012-02-06 12:45:27 -05002049 sb->s_max_links = UDF_MAX_LINKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 return 0;
2051
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002052error_out:
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002053 if (sbi->s_vat_inode)
2054 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002055 if (sbi->s_partitions)
2056 for (i = 0; i < sbi->s_partitions; i++)
2057 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058#ifdef CONFIG_UDF_NLS
2059 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002060 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061#endif
2062 if (!(sb->s_flags & MS_RDONLY))
2063 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002064 brelse(sbi->s_lvid_bh);
2065
2066 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 kfree(sbi);
2068 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return -EINVAL;
2071}
2072
Joe Perches8076c362011-10-10 01:08:03 -07002073void _udf_err(struct super_block *sb, const char *function,
2074 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
Joe Perchesc2bff362011-10-10 01:08:06 -07002076 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 va_list args;
2078
Joe Perchesc2bff362011-10-10 01:08:06 -07002079 /* mark sb error */
2080 if (!(sb->s_flags & MS_RDONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 sb->s_dirt = 1;
Joe Perchesc2bff362011-10-10 01:08:06 -07002082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002084
2085 vaf.fmt = fmt;
2086 vaf.va = &args;
2087
2088 pr_err("error (device %s): %s: %pV", sb->s_id, function, &vaf);
2089
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
Joe Perchesa40ecd72011-10-10 01:08:04 -07002093void _udf_warn(struct super_block *sb, const char *function,
2094 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095{
Joe Perchesc2bff362011-10-10 01:08:06 -07002096 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 va_list args;
2098
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002099 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002100
2101 vaf.fmt = fmt;
2102 vaf.va = &args;
2103
2104 pr_warn("warning (device %s): %s: %pV", sb->s_id, function, &vaf);
2105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002109static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
2111 int i;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002112 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002114 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002115
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002116 if (sbi->s_vat_inode)
2117 iput(sbi->s_vat_inode);
Jan Kara2e0838f2008-04-01 18:08:51 +02002118 if (sbi->s_partitions)
2119 for (i = 0; i < sbi->s_partitions; i++)
2120 udf_free_partition(&sbi->s_partmaps[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121#ifdef CONFIG_UDF_NLS
2122 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002123 unload_nls(sbi->s_nls_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124#endif
2125 if (!(sb->s_flags & MS_RDONLY))
2126 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002127 brelse(sbi->s_lvid_bh);
2128 kfree(sbi->s_partmaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 kfree(sb->s_fs_info);
2130 sb->s_fs_info = NULL;
2131}
2132
Jan Kara146bca72009-03-16 18:27:37 +01002133static int udf_sync_fs(struct super_block *sb, int wait)
2134{
2135 struct udf_sb_info *sbi = UDF_SB(sb);
2136
2137 mutex_lock(&sbi->s_alloc_mutex);
2138 if (sbi->s_lvid_dirty) {
2139 /*
2140 * Blockdevice will be synced later so we don't have to submit
2141 * the buffer for IO
2142 */
2143 mark_buffer_dirty(sbi->s_lvid_bh);
2144 sb->s_dirt = 0;
2145 sbi->s_lvid_dirty = 0;
2146 }
2147 mutex_unlock(&sbi->s_alloc_mutex);
2148
2149 return 0;
2150}
2151
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002152static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
David Howells726c3342006-06-23 02:02:58 -07002154 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002155 struct udf_sb_info *sbi = UDF_SB(sb);
2156 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002157 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002158
2159 if (sbi->s_lvid_bh != NULL)
2160 lvidiu = udf_sb_lvidiu(sbi);
2161 else
2162 lvidiu = NULL;
David Howells726c3342006-06-23 02:02:58 -07002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 buf->f_type = UDF_SUPER_MAGIC;
2165 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002166 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 buf->f_bfree = udf_count_free(sb);
2168 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002169 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2170 le32_to_cpu(lvidiu->numDirs)) : 0)
2171 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 buf->f_ffree = buf->f_bfree;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002173 buf->f_namelen = UDF_NAME_LEN - 2;
Coly Li557f5a12009-01-20 01:36:55 +08002174 buf->f_fsid.val[0] = (u32)id;
2175 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 return 0;
2178}
2179
Marcin Slusarz4b111112008-02-08 04:20:36 -08002180static unsigned int udf_count_free_bitmap(struct super_block *sb,
2181 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
2183 struct buffer_head *bh = NULL;
2184 unsigned int accum = 0;
2185 int index;
2186 int block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002187 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 uint8_t *ptr;
2190 uint16_t ident;
2191 struct spaceBitmapDesc *bm;
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002194 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002195 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002197 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07002198 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002200 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002201 brelse(bh);
Joe Perches78ace702011-10-10 01:08:05 -07002202 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 goto out;
2204 }
2205
2206 bm = (struct spaceBitmapDesc *)bh->b_data;
2207 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002208 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2209 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002211 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002212 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2213 accum += bitmap_weight((const unsigned long *)(ptr + index),
2214 cur_bytes * 8);
2215 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002216 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002217 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002218 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002220 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 udf_debug("read failed\n");
2222 goto out;
2223 }
2224 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002225 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 }
2227 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002228 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002229out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 return accum;
2231}
2232
Marcin Slusarz4b111112008-02-08 04:20:36 -08002233static unsigned int udf_count_free_table(struct super_block *sb,
2234 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
2236 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002237 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002238 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002240 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Jan Karad1668fe2010-10-20 23:24:12 +02002242 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002243 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002244 epos.offset = sizeof(struct unallocSpaceEntry);
2245 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002247 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002249
Jan Kara3bf25cb2007-05-08 00:35:16 -07002250 brelse(epos.bh);
Jan Karad1668fe2010-10-20 23:24:12 +02002251 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 return accum;
2254}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002255
2256static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
2258 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002259 struct udf_sb_info *sbi;
2260 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002262 sbi = UDF_SB(sb);
2263 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002264 struct logicalVolIntegrityDesc *lvid =
2265 (struct logicalVolIntegrityDesc *)
2266 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002267 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002268 accum = le32_to_cpu(
2269 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 if (accum == 0xFFFFFFFF)
2271 accum = 0;
2272 }
2273 }
2274
2275 if (accum)
2276 return accum;
2277
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002278 map = &sbi->s_partmaps[sbi->s_partition];
2279 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002280 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002281 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002283 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002284 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002285 map->s_fspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
2287 if (accum)
2288 return accum;
2289
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002290 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002291 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002292 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002294 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002295 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002296 map->s_fspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
2298
2299 return accum;
2300}