Merge tag 'armsoc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[linux-2.6-block.git] / fs / udf / super.c
CommitLineData
1da177e4
LT
1/*
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 *
1da177e4
LT
17 * 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
3a71fc5d
MS
36 * 12/06/98 blf really hosed things royally. vat/sparing support. sequenced
37 * vol descs. rewrote option handling based on isofs
1da177e4
LT
38 * 12/20/98 find the free space bitmap (if it exists)
39 */
40
cb00ea35 41#include "udfdecl.h"
1da177e4 42
1da177e4
LT
43#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>
1da177e4
LT
51#include <linux/vfs.h>
52#include <linux/vmalloc.h>
dc5d39be 53#include <linux/errno.h>
6da80894
MS
54#include <linux/mount.h>
55#include <linux/seq_file.h>
01b954a3 56#include <linux/bitmap.h>
f845fced 57#include <linux/crc-itu-t.h>
1df2ae31 58#include <linux/log2.h>
1da177e4
LT
59#include <asm/byteorder.h>
60
1da177e4
LT
61#include "udf_sb.h"
62#include "udf_i.h"
63
64#include <linux/init.h>
e973606c 65#include <linux/uaccess.h>
1da177e4 66
4b8d4252
JK
67enum {
68 VDS_POS_PRIMARY_VOL_DESC,
69 VDS_POS_UNALLOC_SPACE_DESC,
70 VDS_POS_LOGICAL_VOL_DESC,
4b8d4252 71 VDS_POS_IMP_USE_VOL_DESC,
4b8d4252
JK
72 VDS_POS_LENGTH
73};
1da177e4 74
44499602
PF
75#define VSD_FIRST_SECTOR_OFFSET 32768
76#define VSD_MAX_SECTOR_OFFSET 0x800000
77
a47241cd
AT
78/*
79 * Maximum number of Terminating Descriptor / Logical Volume Integrity
80 * Descriptor redirections. The chosen numbers are arbitrary - just that we
81 * hopefully don't limit any real use of rewritten inode on write-once media
82 * but avoid looping for too long on corrupted media.
83 */
84#define UDF_MAX_TD_NESTING 64
85#define UDF_MAX_LVID_NESTING 1000
86
8de52778
AV
87enum { UDF_MAX_LINKS = 0xffff };
88
1da177e4
LT
89/* These are the "meat" - everything else is stuffing */
90static int udf_fill_super(struct super_block *, void *, int);
91static void udf_put_super(struct super_block *);
146bca72 92static int udf_sync_fs(struct super_block *, int);
1da177e4 93static int udf_remount_fs(struct super_block *, int *, char *);
5ca4e4be 94static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
5ca4e4be
PE
95static int udf_find_fileset(struct super_block *, struct kernel_lb_addr *,
96 struct kernel_lb_addr *);
cb00ea35 97static void udf_load_fileset(struct super_block *, struct buffer_head *,
5ca4e4be 98 struct kernel_lb_addr *);
1da177e4
LT
99static void udf_open_lvid(struct super_block *);
100static void udf_close_lvid(struct super_block *);
101static unsigned int udf_count_free(struct super_block *);
726c3342 102static int udf_statfs(struct dentry *, struct kstatfs *);
34c80b1d 103static int udf_show_options(struct seq_file *, struct dentry *);
1da177e4 104
69d75671 105struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct super_block *sb)
6c79e987 106{
69d75671
JK
107 struct logicalVolIntegrityDesc *lvid;
108 unsigned int partnum;
109 unsigned int offset;
110
111 if (!UDF_SB(sb)->s_lvid_bh)
112 return NULL;
113 lvid = (struct logicalVolIntegrityDesc *)UDF_SB(sb)->s_lvid_bh->b_data;
114 partnum = le32_to_cpu(lvid->numOfPartitions);
115 if ((sb->s_blocksize - sizeof(struct logicalVolIntegrityDescImpUse) -
116 offsetof(struct logicalVolIntegrityDesc, impUse)) /
117 (2 * sizeof(uint32_t)) < partnum) {
118 udf_err(sb, "Logical volume integrity descriptor corrupted "
119 "(numOfPartitions = %u)!\n", partnum);
120 return NULL;
121 }
122 /* The offset is to skip freeSpaceTable and sizeTable arrays */
123 offset = partnum * 2 * sizeof(uint32_t);
6c79e987
MS
124 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
125}
126
1da177e4 127/* UDF filesystem type */
152a0836
AV
128static struct dentry *udf_mount(struct file_system_type *fs_type,
129 int flags, const char *dev_name, void *data)
1da177e4 130{
152a0836 131 return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
1da177e4
LT
132}
133
134static struct file_system_type udf_fstype = {
28de7948
CG
135 .owner = THIS_MODULE,
136 .name = "udf",
152a0836 137 .mount = udf_mount,
28de7948
CG
138 .kill_sb = kill_block_super,
139 .fs_flags = FS_REQUIRES_DEV,
1da177e4 140};
3e64fe5b 141MODULE_ALIAS_FS("udf");
1da177e4 142
cb00ea35 143static struct kmem_cache *udf_inode_cachep;
1da177e4
LT
144
145static struct inode *udf_alloc_inode(struct super_block *sb)
146{
147 struct udf_inode_info *ei;
3a71fc5d 148 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
1da177e4
LT
149 if (!ei)
150 return NULL;
95f8797f
DB
151
152 ei->i_unique = 0;
153 ei->i_lenExtents = 0;
154 ei->i_next_alloc_block = 0;
155 ei->i_next_alloc_goal = 0;
156 ei->i_strat4096 = 0;
4d0fb621 157 init_rwsem(&ei->i_data_sem);
99600051
NJ
158 ei->cached_extent.lstart = -1;
159 spin_lock_init(&ei->i_extent_cache_lock);
95f8797f 160
1da177e4
LT
161 return &ei->vfs_inode;
162}
163
fa0d7e3d 164static void udf_i_callback(struct rcu_head *head)
1da177e4 165{
fa0d7e3d 166 struct inode *inode = container_of(head, struct inode, i_rcu);
1da177e4
LT
167 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
168}
169
fa0d7e3d
NP
170static void udf_destroy_inode(struct inode *inode)
171{
172 call_rcu(&inode->i_rcu, udf_i_callback);
173}
174
51cc5068 175static void init_once(void *foo)
1da177e4 176{
cb00ea35 177 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
1da177e4 178
a35afb83
CL
179 ei->i_ext.i_data = NULL;
180 inode_init_once(&ei->vfs_inode);
1da177e4
LT
181}
182
53ea18de 183static int __init init_inodecache(void)
1da177e4
LT
184{
185 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
186 sizeof(struct udf_inode_info),
cb00ea35 187 0, (SLAB_RECLAIM_ACCOUNT |
5d097056
VD
188 SLAB_MEM_SPREAD |
189 SLAB_ACCOUNT),
20c2df83 190 init_once);
28de7948 191 if (!udf_inode_cachep)
1da177e4
LT
192 return -ENOMEM;
193 return 0;
194}
195
196static void destroy_inodecache(void)
197{
8c0a8537
KS
198 /*
199 * Make sure all delayed rcu free inodes are flushed before we
200 * destroy cache.
201 */
202 rcu_barrier();
1a1d92c1 203 kmem_cache_destroy(udf_inode_cachep);
1da177e4
LT
204}
205
206/* Superblock operations */
ee9b6d61 207static const struct super_operations udf_sb_ops = {
28de7948
CG
208 .alloc_inode = udf_alloc_inode,
209 .destroy_inode = udf_destroy_inode,
210 .write_inode = udf_write_inode,
3aac2b62 211 .evict_inode = udf_evict_inode,
28de7948 212 .put_super = udf_put_super,
146bca72 213 .sync_fs = udf_sync_fs,
28de7948
CG
214 .statfs = udf_statfs,
215 .remount_fs = udf_remount_fs,
6da80894 216 .show_options = udf_show_options,
1da177e4
LT
217};
218
cb00ea35 219struct udf_options {
1da177e4
LT
220 unsigned char novrs;
221 unsigned int blocksize;
222 unsigned int session;
223 unsigned int lastblock;
224 unsigned int anchor;
1da177e4 225 unsigned int flags;
faa17292 226 umode_t umask;
c2ba138a
EB
227 kgid_t gid;
228 kuid_t uid;
faa17292
AV
229 umode_t fmode;
230 umode_t dmode;
1da177e4
LT
231 struct nls_table *nls_map;
232};
233
234static int __init init_udf_fs(void)
235{
236 int err;
28de7948 237
1da177e4
LT
238 err = init_inodecache();
239 if (err)
240 goto out1;
241 err = register_filesystem(&udf_fstype);
242 if (err)
243 goto out;
28de7948 244
1da177e4 245 return 0;
28de7948
CG
246
247out:
1da177e4 248 destroy_inodecache();
28de7948
CG
249
250out1:
1da177e4
LT
251 return err;
252}
253
254static void __exit exit_udf_fs(void)
255{
256 unregister_filesystem(&udf_fstype);
257 destroy_inodecache();
258}
259
dc5d39be
MS
260static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
261{
262 struct udf_sb_info *sbi = UDF_SB(sb);
263
033c9da0 264 sbi->s_partmaps = kcalloc(count, sizeof(*sbi->s_partmaps), GFP_KERNEL);
dc5d39be 265 if (!sbi->s_partmaps) {
dc5d39be
MS
266 sbi->s_partitions = 0;
267 return -ENOMEM;
268 }
269
270 sbi->s_partitions = count;
271 return 0;
272}
273
bff943af
JK
274static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
275{
276 int i;
277 int nr_groups = bitmap->s_nr_groups;
bff943af
JK
278
279 for (i = 0; i < nr_groups; i++)
280 if (bitmap->s_block_bitmap[i])
281 brelse(bitmap->s_block_bitmap[i]);
282
1d5cfdb0 283 kvfree(bitmap);
bff943af
JK
284}
285
286static void udf_free_partition(struct udf_part_map *map)
287{
288 int i;
289 struct udf_meta_data *mdata;
290
291 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
292 iput(map->s_uspace.s_table);
293 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
294 iput(map->s_fspace.s_table);
295 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
296 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
297 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
298 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
299 if (map->s_partition_type == UDF_SPARABLE_MAP15)
300 for (i = 0; i < 4; i++)
301 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
302 else if (map->s_partition_type == UDF_METADATA_MAP25) {
303 mdata = &map->s_type_specific.s_metadata;
304 iput(mdata->s_metadata_fe);
305 mdata->s_metadata_fe = NULL;
306
307 iput(mdata->s_mirror_fe);
308 mdata->s_mirror_fe = NULL;
309
310 iput(mdata->s_bitmap_fe);
311 mdata->s_bitmap_fe = NULL;
312 }
313}
314
315static void udf_sb_free_partitions(struct super_block *sb)
316{
317 struct udf_sb_info *sbi = UDF_SB(sb);
318 int i;
ba2eb866
ME
319
320 if (!sbi->s_partmaps)
1b1baff6 321 return;
bff943af
JK
322 for (i = 0; i < sbi->s_partitions; i++)
323 udf_free_partition(&sbi->s_partmaps[i]);
324 kfree(sbi->s_partmaps);
325 sbi->s_partmaps = NULL;
326}
327
34c80b1d 328static int udf_show_options(struct seq_file *seq, struct dentry *root)
6da80894 329{
34c80b1d 330 struct super_block *sb = root->d_sb;
6da80894
MS
331 struct udf_sb_info *sbi = UDF_SB(sb);
332
333 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
334 seq_puts(seq, ",nostrict");
1197e4df 335 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
6da80894
MS
336 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
337 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
338 seq_puts(seq, ",unhide");
339 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
340 seq_puts(seq, ",undelete");
341 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
342 seq_puts(seq, ",noadinicb");
343 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
344 seq_puts(seq, ",shortad");
345 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
346 seq_puts(seq, ",uid=forget");
6da80894
MS
347 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
348 seq_puts(seq, ",gid=forget");
6da80894 349 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
c2ba138a 350 seq_printf(seq, ",uid=%u", from_kuid(&init_user_ns, sbi->s_uid));
6da80894 351 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
c2ba138a 352 seq_printf(seq, ",gid=%u", from_kgid(&init_user_ns, sbi->s_gid));
6da80894 353 if (sbi->s_umask != 0)
faa17292 354 seq_printf(seq, ",umask=%ho", sbi->s_umask);
87bc730c 355 if (sbi->s_fmode != UDF_INVALID_MODE)
faa17292 356 seq_printf(seq, ",mode=%ho", sbi->s_fmode);
87bc730c 357 if (sbi->s_dmode != UDF_INVALID_MODE)
faa17292 358 seq_printf(seq, ",dmode=%ho", sbi->s_dmode);
6da80894 359 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
fcbf7637 360 seq_printf(seq, ",session=%d", sbi->s_session);
6da80894
MS
361 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
362 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
40346005
JK
363 if (sbi->s_anchor != 0)
364 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
6da80894
MS
365 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
366 seq_puts(seq, ",utf8");
367 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
368 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
369
370 return 0;
371}
372
1da177e4
LT
373/*
374 * udf_parse_options
375 *
376 * PURPOSE
377 * Parse mount options.
378 *
379 * DESCRIPTION
380 * The following mount options are supported:
381 *
382 * gid= Set the default group.
383 * umask= Set the default umask.
7ac9bcd5
MS
384 * mode= Set the default file permissions.
385 * dmode= Set the default directory permissions.
1da177e4
LT
386 * uid= Set the default user.
387 * bs= Set the block size.
388 * unhide Show otherwise hidden files.
389 * undelete Show deleted files in lists.
390 * adinicb Embed data in the inode (default)
391 * noadinicb Don't embed data in the inode
392 * shortad Use short ad's
393 * longad Use long ad's (default)
394 * nostrict Unset strict conformance
395 * iocharset= Set the NLS character set
396 *
397 * The remaining are for debugging and disaster recovery:
398 *
28de7948 399 * novrs Skip volume sequence recognition
1da177e4
LT
400 *
401 * The following expect a offset from 0.
402 *
403 * session= Set the CDROM session (default= last session)
404 * anchor= Override standard anchor location. (default= 256)
405 * volume= Override the VolumeDesc location. (unused)
406 * partition= Override the PartitionDesc location. (unused)
407 * lastblock= Set the last block of the filesystem/
408 *
409 * The following expect a offset from the partition root.
410 *
411 * fileset= Override the fileset block location. (unused)
412 * rootdir= Override the root directory location. (unused)
413 * WARNING: overriding the rootdir to a non-directory may
414 * yield highly unpredictable results.
415 *
416 * PRE-CONDITIONS
417 * options Pointer to mount options string.
418 * uopts Pointer to mount options variable.
419 *
420 * POST-CONDITIONS
421 * <return> 1 Mount options parsed okay.
422 * <return> 0 Error parsing mount options.
423 *
424 * HISTORY
425 * July 1, 1997 - Andrew E. Mileski
426 * Written, tested, and released.
427 */
28de7948 428
1da177e4
LT
429enum {
430 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
431 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
432 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
433 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
434 Opt_rootdir, Opt_utf8, Opt_iocharset,
7ac9bcd5
MS
435 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
436 Opt_fmode, Opt_dmode
1da177e4
LT
437};
438
a447c093 439static const match_table_t tokens = {
28de7948
CG
440 {Opt_novrs, "novrs"},
441 {Opt_nostrict, "nostrict"},
442 {Opt_bs, "bs=%u"},
443 {Opt_unhide, "unhide"},
444 {Opt_undelete, "undelete"},
445 {Opt_noadinicb, "noadinicb"},
446 {Opt_adinicb, "adinicb"},
447 {Opt_shortad, "shortad"},
448 {Opt_longad, "longad"},
449 {Opt_uforget, "uid=forget"},
450 {Opt_uignore, "uid=ignore"},
451 {Opt_gforget, "gid=forget"},
452 {Opt_gignore, "gid=ignore"},
453 {Opt_gid, "gid=%u"},
454 {Opt_uid, "uid=%u"},
455 {Opt_umask, "umask=%o"},
456 {Opt_session, "session=%u"},
457 {Opt_lastblock, "lastblock=%u"},
458 {Opt_anchor, "anchor=%u"},
459 {Opt_volume, "volume=%u"},
460 {Opt_partition, "partition=%u"},
461 {Opt_fileset, "fileset=%u"},
462 {Opt_rootdir, "rootdir=%u"},
463 {Opt_utf8, "utf8"},
464 {Opt_iocharset, "iocharset=%s"},
7ac9bcd5
MS
465 {Opt_fmode, "mode=%o"},
466 {Opt_dmode, "dmode=%o"},
28de7948 467 {Opt_err, NULL}
1da177e4
LT
468};
469
6da80894
MS
470static int udf_parse_options(char *options, struct udf_options *uopt,
471 bool remount)
1da177e4
LT
472{
473 char *p;
474 int option;
475
476 uopt->novrs = 0;
1da177e4
LT
477 uopt->session = 0xFFFFFFFF;
478 uopt->lastblock = 0;
479 uopt->anchor = 0;
1da177e4
LT
480
481 if (!options)
482 return 1;
483
cb00ea35 484 while ((p = strsep(&options, ",")) != NULL) {
1da177e4
LT
485 substring_t args[MAX_OPT_ARGS];
486 int token;
8c6915ae 487 unsigned n;
1da177e4
LT
488 if (!*p)
489 continue;
490
491 token = match_token(p, tokens, args);
cb00ea35
CG
492 switch (token) {
493 case Opt_novrs:
494 uopt->novrs = 1;
4136801a 495 break;
cb00ea35
CG
496 case Opt_bs:
497 if (match_int(&args[0], &option))
498 return 0;
8c6915ae
FF
499 n = option;
500 if (n != 512 && n != 1024 && n != 2048 && n != 4096)
501 return 0;
502 uopt->blocksize = n;
1197e4df 503 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
cb00ea35
CG
504 break;
505 case Opt_unhide:
506 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
507 break;
508 case Opt_undelete:
509 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
510 break;
511 case Opt_noadinicb:
512 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
513 break;
514 case Opt_adinicb:
515 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
516 break;
517 case Opt_shortad:
518 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
519 break;
520 case Opt_longad:
521 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
522 break;
523 case Opt_gid:
524 if (match_int(args, &option))
525 return 0;
c2ba138a
EB
526 uopt->gid = make_kgid(current_user_ns(), option);
527 if (!gid_valid(uopt->gid))
528 return 0;
ca76d2d8 529 uopt->flags |= (1 << UDF_FLAG_GID_SET);
cb00ea35
CG
530 break;
531 case Opt_uid:
532 if (match_int(args, &option))
533 return 0;
c2ba138a
EB
534 uopt->uid = make_kuid(current_user_ns(), option);
535 if (!uid_valid(uopt->uid))
536 return 0;
ca76d2d8 537 uopt->flags |= (1 << UDF_FLAG_UID_SET);
cb00ea35
CG
538 break;
539 case Opt_umask:
540 if (match_octal(args, &option))
541 return 0;
542 uopt->umask = option;
543 break;
544 case Opt_nostrict:
545 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
546 break;
547 case Opt_session:
548 if (match_int(args, &option))
549 return 0;
550 uopt->session = option;
6da80894
MS
551 if (!remount)
552 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
cb00ea35
CG
553 break;
554 case Opt_lastblock:
555 if (match_int(args, &option))
556 return 0;
557 uopt->lastblock = option;
6da80894
MS
558 if (!remount)
559 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
cb00ea35
CG
560 break;
561 case Opt_anchor:
562 if (match_int(args, &option))
563 return 0;
564 uopt->anchor = option;
565 break;
566 case Opt_volume:
cb00ea35 567 case Opt_partition:
cb00ea35 568 case Opt_fileset:
cb00ea35 569 case Opt_rootdir:
f0c4a817 570 /* Ignored (never implemented properly) */
cb00ea35
CG
571 break;
572 case Opt_utf8:
573 uopt->flags |= (1 << UDF_FLAG_UTF8);
574 break;
cb00ea35 575 case Opt_iocharset:
785dffe1
CX
576 if (!remount) {
577 if (uopt->nls_map)
578 unload_nls(uopt->nls_map);
579 uopt->nls_map = load_nls(args[0].from);
580 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
581 }
cb00ea35 582 break;
cb00ea35
CG
583 case Opt_uforget:
584 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
585 break;
70260e44 586 case Opt_uignore:
cb00ea35 587 case Opt_gignore:
70260e44 588 /* These options are superseeded by uid=<number> */
cb00ea35
CG
589 break;
590 case Opt_gforget:
591 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
592 break;
7ac9bcd5
MS
593 case Opt_fmode:
594 if (match_octal(args, &option))
595 return 0;
596 uopt->fmode = option & 0777;
597 break;
598 case Opt_dmode:
599 if (match_octal(args, &option))
600 return 0;
601 uopt->dmode = option & 0777;
602 break;
cb00ea35 603 default:
78ace70c 604 pr_err("bad mount option \"%s\" or missing value\n", p);
1da177e4
LT
605 return 0;
606 }
607 }
608 return 1;
609}
610
cb00ea35 611static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
1da177e4
LT
612{
613 struct udf_options uopt;
6c79e987 614 struct udf_sb_info *sbi = UDF_SB(sb);
c79d967d 615 int error = 0;
69d75671 616 struct logicalVolIntegrityDescImpUse *lvidiu = udf_sb_lvidiu(sb);
1da177e4 617
02b9984d 618 sync_filesystem(sb);
69d75671
JK
619 if (lvidiu) {
620 int write_rev = le16_to_cpu(lvidiu->minUDFWriteRev);
1751e8a6 621 if (write_rev > UDF_MAX_WRITE_VERSION && !(*flags & SB_RDONLY))
e729eac6
JK
622 return -EACCES;
623 }
624
6c79e987
MS
625 uopt.flags = sbi->s_flags;
626 uopt.uid = sbi->s_uid;
627 uopt.gid = sbi->s_gid;
628 uopt.umask = sbi->s_umask;
7ac9bcd5
MS
629 uopt.fmode = sbi->s_fmode;
630 uopt.dmode = sbi->s_dmode;
785dffe1 631 uopt.nls_map = NULL;
1da177e4 632
6da80894 633 if (!udf_parse_options(options, &uopt, true))
1da177e4
LT
634 return -EINVAL;
635
c03cad24 636 write_lock(&sbi->s_cred_lock);
6c79e987
MS
637 sbi->s_flags = uopt.flags;
638 sbi->s_uid = uopt.uid;
639 sbi->s_gid = uopt.gid;
640 sbi->s_umask = uopt.umask;
7ac9bcd5
MS
641 sbi->s_fmode = uopt.fmode;
642 sbi->s_dmode = uopt.dmode;
c03cad24 643 write_unlock(&sbi->s_cred_lock);
1da177e4 644
1751e8a6 645 if ((bool)(*flags & SB_RDONLY) == sb_rdonly(sb))
c79d967d
CH
646 goto out_unlock;
647
1751e8a6 648 if (*flags & SB_RDONLY)
1da177e4 649 udf_close_lvid(sb);
36350462 650 else
1da177e4
LT
651 udf_open_lvid(sb);
652
c79d967d 653out_unlock:
c79d967d 654 return error;
1da177e4
LT
655}
656
40346005
JK
657/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
658/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
659static loff_t udf_check_vsd(struct super_block *sb)
1da177e4
LT
660{
661 struct volStructDesc *vsd = NULL;
44499602 662 loff_t sector = VSD_FIRST_SECTOR_OFFSET;
1da177e4
LT
663 int sectorsize;
664 struct buffer_head *bh = NULL;
cb00ea35
CG
665 int nsr02 = 0;
666 int nsr03 = 0;
6c79e987 667 struct udf_sb_info *sbi;
1da177e4 668
6c79e987 669 sbi = UDF_SB(sb);
1da177e4
LT
670 if (sb->s_blocksize < sizeof(struct volStructDesc))
671 sectorsize = sizeof(struct volStructDesc);
672 else
673 sectorsize = sb->s_blocksize;
674
abdc0eb0 675 sector += (((loff_t)sbi->s_session) << sb->s_blocksize_bits);
1da177e4 676
fcbf7637 677 udf_debug("Starting at sector %u (%lu byte sectors)\n",
706047a7
SM
678 (unsigned int)(sector >> sb->s_blocksize_bits),
679 sb->s_blocksize);
44499602
PF
680 /* Process the sequence (if applicable). The hard limit on the sector
681 * offset is arbitrary, hopefully large enough so that all valid UDF
682 * filesystems will be recognised. There is no mention of an upper
683 * bound to the size of the volume recognition area in the standard.
684 * The limit will prevent the code to read all the sectors of a
685 * specially crafted image (like a bluray disc full of CD001 sectors),
686 * potentially causing minutes or even hours of uninterruptible I/O
687 * activity. This actually happened with uninitialised SSD partitions
688 * (all 0xFF) before the check for the limit and all valid IDs were
689 * added */
690 for (; !nsr02 && !nsr03 && sector < VSD_MAX_SECTOR_OFFSET;
691 sector += sectorsize) {
1da177e4
LT
692 /* Read a block */
693 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
694 if (!bh)
695 break;
696
697 /* Look for ISO descriptors */
698 vsd = (struct volStructDesc *)(bh->b_data +
3a71fc5d 699 (sector & (sb->s_blocksize - 1)));
1da177e4 700
44499602 701 if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
3a71fc5d 702 VSD_STD_ID_LEN)) {
cb00ea35
CG
703 switch (vsd->structType) {
704 case 0:
705 udf_debug("ISO9660 Boot Record found\n");
706 break;
707 case 1:
a983f368 708 udf_debug("ISO9660 Primary Volume Descriptor found\n");
cb00ea35
CG
709 break;
710 case 2:
a983f368 711 udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
cb00ea35
CG
712 break;
713 case 3:
a983f368 714 udf_debug("ISO9660 Volume Partition Descriptor found\n");
cb00ea35
CG
715 break;
716 case 255:
a983f368 717 udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
cb00ea35
CG
718 break;
719 default:
720 udf_debug("ISO9660 VRS (%u) found\n",
721 vsd->structType);
722 break;
1da177e4 723 }
3a71fc5d
MS
724 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
725 VSD_STD_ID_LEN))
726 ; /* nothing */
727 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
728 VSD_STD_ID_LEN)) {
3bf25cb4 729 brelse(bh);
1da177e4 730 break;
3a71fc5d
MS
731 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
732 VSD_STD_ID_LEN))
1da177e4 733 nsr02 = sector;
3a71fc5d
MS
734 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
735 VSD_STD_ID_LEN))
1da177e4 736 nsr03 = sector;
44499602
PF
737 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BOOT2,
738 VSD_STD_ID_LEN))
739 ; /* nothing */
740 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CDW02,
741 VSD_STD_ID_LEN))
742 ; /* nothing */
743 else {
744 /* invalid id : end of volume recognition area */
745 brelse(bh);
746 break;
747 }
3bf25cb4 748 brelse(bh);
1da177e4
LT
749 }
750
751 if (nsr03)
752 return nsr03;
753 else if (nsr02)
754 return nsr02;
44499602
PF
755 else if (!bh && sector - (sbi->s_session << sb->s_blocksize_bits) ==
756 VSD_FIRST_SECTOR_OFFSET)
1da177e4
LT
757 return -1;
758 else
759 return 0;
760}
761
3a71fc5d 762static int udf_find_fileset(struct super_block *sb,
5ca4e4be
PE
763 struct kernel_lb_addr *fileset,
764 struct kernel_lb_addr *root)
1da177e4
LT
765{
766 struct buffer_head *bh = NULL;
1da177e4
LT
767 uint16_t ident;
768
769 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
cb00ea35 770 fileset->partitionReferenceNum != 0xFFFF) {
97e961fd 771 bh = udf_read_ptagged(sb, fileset, 0, &ident);
1da177e4 772
28de7948 773 if (!bh) {
1da177e4 774 return 1;
28de7948 775 } else if (ident != TAG_IDENT_FSD) {
3bf25cb4 776 brelse(bh);
1da177e4
LT
777 return 1;
778 }
cb00ea35 779
fcbf7637 780 udf_debug("Fileset at block=%u, partition=%u\n",
cb00ea35
CG
781 fileset->logicalBlockNum,
782 fileset->partitionReferenceNum);
1da177e4 783
82c82ab6 784 UDF_SB(sb)->s_partition = fileset->partitionReferenceNum;
1da177e4 785 udf_load_fileset(sb, bh, root);
3bf25cb4 786 brelse(bh);
1da177e4
LT
787 return 0;
788 }
789 return 1;
790}
791
d759bfa4
JK
792/*
793 * Load primary Volume Descriptor Sequence
794 *
795 * Return <0 on error, 0 on success. -EAGAIN is special meaning next sequence
796 * should be tried.
797 */
c0eb31ed 798static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
1da177e4
LT
799{
800 struct primaryVolDesc *pvoldesc;
9293fcfb 801 uint8_t *outstr;
c0eb31ed
JK
802 struct buffer_head *bh;
803 uint16_t ident;
d759bfa4 804 int ret = -ENOMEM;
0220edda
DD
805#ifdef UDFFS_DEBUG
806 struct timestamp *ts;
807#endif
ba9aadd8 808
9293fcfb 809 outstr = kmalloc(128, GFP_NOFS);
ba9aadd8 810 if (!outstr)
9293fcfb 811 return -ENOMEM;
c0eb31ed
JK
812
813 bh = udf_read_tagged(sb, block, block, &ident);
d759bfa4
JK
814 if (!bh) {
815 ret = -EAGAIN;
ba9aadd8 816 goto out2;
d759bfa4 817 }
ba9aadd8 818
d759bfa4
JK
819 if (ident != TAG_IDENT_PVD) {
820 ret = -EIO;
821 goto out_bh;
822 }
1da177e4
LT
823
824 pvoldesc = (struct primaryVolDesc *)bh->b_data;
825
0220edda
DD
826 udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
827 pvoldesc->recordingDateAndTime);
af15a298 828#ifdef UDFFS_DEBUG
0220edda
DD
829 ts = &pvoldesc->recordingDateAndTime;
830 udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
831 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
832 ts->minute, le16_to_cpu(ts->typeAndTimezone));
af15a298 833#endif
0220edda 834
1da177e4 835
e966fc8d 836 ret = udf_dstrCS0toChar(sb, outstr, 31, pvoldesc->volIdent, 32);
9293fcfb
AG
837 if (ret < 0)
838 goto out_bh;
e9d4cf41 839
9293fcfb
AG
840 strncpy(UDF_SB(sb)->s_volume_ident, outstr, ret);
841 udf_debug("volIdent[] = '%s'\n", UDF_SB(sb)->s_volume_ident);
1da177e4 842
e966fc8d 843 ret = udf_dstrCS0toChar(sb, outstr, 127, pvoldesc->volSetIdent, 128);
9293fcfb
AG
844 if (ret < 0)
845 goto out_bh;
e9d4cf41 846
9293fcfb
AG
847 outstr[ret] = 0;
848 udf_debug("volSetIdent[] = '%s'\n", outstr);
c0eb31ed 849
ba9aadd8 850 ret = 0;
d759bfa4
JK
851out_bh:
852 brelse(bh);
ba9aadd8
MS
853out2:
854 kfree(outstr);
ba9aadd8 855 return ret;
1da177e4
LT
856}
857
3080a74e 858struct inode *udf_find_metadata_inode_efe(struct super_block *sb,
7888824b 859 u32 meta_file_loc, u32 partition_ref)
3080a74e
NJ
860{
861 struct kernel_lb_addr addr;
862 struct inode *metadata_fe;
863
864 addr.logicalBlockNum = meta_file_loc;
7888824b 865 addr.partitionReferenceNum = partition_ref;
3080a74e 866
6174c2eb 867 metadata_fe = udf_iget_special(sb, &addr);
3080a74e 868
6d3d5e86 869 if (IS_ERR(metadata_fe)) {
3080a74e 870 udf_warn(sb, "metadata inode efe not found\n");
6d3d5e86
JK
871 return metadata_fe;
872 }
873 if (UDF_I(metadata_fe)->i_alloc_type != ICBTAG_FLAG_AD_SHORT) {
3080a74e
NJ
874 udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
875 iput(metadata_fe);
6d3d5e86 876 return ERR_PTR(-EIO);
3080a74e
NJ
877 }
878
879 return metadata_fe;
880}
881
7888824b
AT
882static int udf_load_metadata_files(struct super_block *sb, int partition,
883 int type1_index)
bfb257a5
JK
884{
885 struct udf_sb_info *sbi = UDF_SB(sb);
886 struct udf_part_map *map;
887 struct udf_meta_data *mdata;
5ca4e4be 888 struct kernel_lb_addr addr;
6d3d5e86 889 struct inode *fe;
bfb257a5
JK
890
891 map = &sbi->s_partmaps[partition];
892 mdata = &map->s_type_specific.s_metadata;
7888824b 893 mdata->s_phys_partition_ref = type1_index;
bfb257a5
JK
894
895 /* metadata address */
fcbf7637 896 udf_debug("Metadata file location: block = %u part = %u\n",
7888824b 897 mdata->s_meta_file_loc, mdata->s_phys_partition_ref);
bfb257a5 898
6d3d5e86 899 fe = udf_find_metadata_inode_efe(sb, mdata->s_meta_file_loc,
7888824b 900 mdata->s_phys_partition_ref);
6d3d5e86 901 if (IS_ERR(fe)) {
3080a74e 902 /* mirror file entry */
fcbf7637 903 udf_debug("Mirror metadata file location: block = %u part = %u\n",
7888824b 904 mdata->s_mirror_file_loc, mdata->s_phys_partition_ref);
bfb257a5 905
6d3d5e86 906 fe = udf_find_metadata_inode_efe(sb, mdata->s_mirror_file_loc,
7888824b 907 mdata->s_phys_partition_ref);
bfb257a5 908
6d3d5e86 909 if (IS_ERR(fe)) {
3080a74e 910 udf_err(sb, "Both metadata and mirror metadata inode efe can not found\n");
6d3d5e86 911 return PTR_ERR(fe);
3080a74e 912 }
6d3d5e86
JK
913 mdata->s_mirror_fe = fe;
914 } else
915 mdata->s_metadata_fe = fe;
916
bfb257a5
JK
917
918 /*
919 * bitmap file entry
920 * Note:
921 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
922 */
923 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
924 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
7888824b 925 addr.partitionReferenceNum = mdata->s_phys_partition_ref;
bfb257a5 926
fcbf7637 927 udf_debug("Bitmap file location: block = %u part = %u\n",
a983f368 928 addr.logicalBlockNum, addr.partitionReferenceNum);
bfb257a5 929
6174c2eb 930 fe = udf_iget_special(sb, &addr);
6d3d5e86 931 if (IS_ERR(fe)) {
bc98a42c 932 if (sb_rdonly(sb))
a40ecd7b 933 udf_warn(sb, "bitmap inode efe not found but it's ok since the disc is mounted read-only\n");
bfb257a5 934 else {
8076c363 935 udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
6d3d5e86 936 return PTR_ERR(fe);
bfb257a5 937 }
6d3d5e86
JK
938 } else
939 mdata->s_bitmap_fe = fe;
bfb257a5
JK
940 }
941
942 udf_debug("udf_load_metadata_files Ok\n");
bfb257a5 943 return 0;
bfb257a5
JK
944}
945
28de7948 946static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
5ca4e4be 947 struct kernel_lb_addr *root)
1da177e4
LT
948{
949 struct fileSetDesc *fset;
950
951 fset = (struct fileSetDesc *)bh->b_data;
952
953 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
954
6c79e987 955 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
1da177e4 956
fcbf7637 957 udf_debug("Rootdir at block=%u, partition=%u\n",
cb00ea35 958 root->logicalBlockNum, root->partitionReferenceNum);
1da177e4
LT
959}
960
883cb9d1
MS
961int udf_compute_nr_groups(struct super_block *sb, u32 partition)
962{
963 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
8dee00bb
JL
964 return DIV_ROUND_UP(map->s_partition_len +
965 (sizeof(struct spaceBitmapDesc) << 3),
966 sb->s_blocksize * 8);
883cb9d1
MS
967}
968
66e1da3f
MS
969static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
970{
66e1da3f
MS
971 struct udf_bitmap *bitmap;
972 int nr_groups;
973 int size;
974
883cb9d1 975 nr_groups = udf_compute_nr_groups(sb, index);
66e1da3f
MS
976 size = sizeof(struct udf_bitmap) +
977 (sizeof(struct buffer_head *) * nr_groups);
978
979 if (size <= PAGE_SIZE)
ed2ae6f6 980 bitmap = kzalloc(size, GFP_KERNEL);
66e1da3f 981 else
ed2ae6f6 982 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
66e1da3f 983
ba2eb866 984 if (!bitmap)
66e1da3f 985 return NULL;
66e1da3f 986
66e1da3f
MS
987 bitmap->s_nr_groups = nr_groups;
988 return bitmap;
989}
990
3fb38dfa
JK
991static int udf_fill_partdesc_info(struct super_block *sb,
992 struct partitionDesc *p, int p_index)
1da177e4 993{
6c79e987 994 struct udf_part_map *map;
165923fa 995 struct udf_sb_info *sbi = UDF_SB(sb);
3fb38dfa 996 struct partitionHeaderDesc *phd;
165923fa 997
3fb38dfa 998 map = &sbi->s_partmaps[p_index];
165923fa
MS
999
1000 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
1001 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
1002
1003 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
1004 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
1005 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
1006 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
1007 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
1008 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
1009 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
1010 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1011
fcbf7637 1012 udf_debug("Partition (%d type %x) starts at physical %u, block length %u\n",
a983f368
JP
1013 p_index, map->s_partition_type,
1014 map->s_partition_root, map->s_partition_len);
165923fa
MS
1015
1016 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1017 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
3fb38dfa 1018 return 0;
165923fa
MS
1019
1020 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1021 if (phd->unallocSpaceTable.extLength) {
5ca4e4be 1022 struct kernel_lb_addr loc = {
165923fa
MS
1023 .logicalBlockNum = le32_to_cpu(
1024 phd->unallocSpaceTable.extPosition),
3fb38dfa 1025 .partitionReferenceNum = p_index,
165923fa 1026 };
6d3d5e86 1027 struct inode *inode;
165923fa 1028
6174c2eb 1029 inode = udf_iget_special(sb, &loc);
6d3d5e86 1030 if (IS_ERR(inode)) {
165923fa 1031 udf_debug("cannot load unallocSpaceTable (part %d)\n",
a983f368 1032 p_index);
6d3d5e86 1033 return PTR_ERR(inode);
165923fa 1034 }
6d3d5e86 1035 map->s_uspace.s_table = inode;
165923fa 1036 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
fcbf7637 1037 udf_debug("unallocSpaceTable (part %d) @ %lu\n",
a983f368 1038 p_index, map->s_uspace.s_table->i_ino);
165923fa
MS
1039 }
1040
1041 if (phd->unallocSpaceBitmap.extLength) {
3fb38dfa
JK
1042 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1043 if (!bitmap)
d759bfa4 1044 return -ENOMEM;
165923fa 1045 map->s_uspace.s_bitmap = bitmap;
2e0838fd 1046 bitmap->s_extPosition = le32_to_cpu(
165923fa 1047 phd->unallocSpaceBitmap.extPosition);
2e0838fd 1048 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
fcbf7637 1049 udf_debug("unallocSpaceBitmap (part %d) @ %u\n",
a983f368 1050 p_index, bitmap->s_extPosition);
165923fa
MS
1051 }
1052
1053 if (phd->partitionIntegrityTable.extLength)
3fb38dfa 1054 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
165923fa
MS
1055
1056 if (phd->freedSpaceTable.extLength) {
5ca4e4be 1057 struct kernel_lb_addr loc = {
165923fa
MS
1058 .logicalBlockNum = le32_to_cpu(
1059 phd->freedSpaceTable.extPosition),
3fb38dfa 1060 .partitionReferenceNum = p_index,
165923fa 1061 };
6d3d5e86 1062 struct inode *inode;
165923fa 1063
6174c2eb 1064 inode = udf_iget_special(sb, &loc);
6d3d5e86 1065 if (IS_ERR(inode)) {
3fb38dfa 1066 udf_debug("cannot load freedSpaceTable (part %d)\n",
a983f368 1067 p_index);
6d3d5e86 1068 return PTR_ERR(inode);
165923fa 1069 }
6d3d5e86 1070 map->s_fspace.s_table = inode;
165923fa 1071 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
fcbf7637 1072 udf_debug("freedSpaceTable (part %d) @ %lu\n",
a983f368 1073 p_index, map->s_fspace.s_table->i_ino);
165923fa
MS
1074 }
1075
1076 if (phd->freedSpaceBitmap.extLength) {
3fb38dfa
JK
1077 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1078 if (!bitmap)
d759bfa4 1079 return -ENOMEM;
165923fa 1080 map->s_fspace.s_bitmap = bitmap;
2e0838fd 1081 bitmap->s_extPosition = le32_to_cpu(
165923fa 1082 phd->freedSpaceBitmap.extPosition);
2e0838fd 1083 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
fcbf7637 1084 udf_debug("freedSpaceBitmap (part %d) @ %u\n",
a983f368 1085 p_index, bitmap->s_extPosition);
165923fa 1086 }
3fb38dfa
JK
1087 return 0;
1088}
1089
e971b0b9
JK
1090static void udf_find_vat_block(struct super_block *sb, int p_index,
1091 int type1_index, sector_t start_block)
38b74a53
JK
1092{
1093 struct udf_sb_info *sbi = UDF_SB(sb);
1094 struct udf_part_map *map = &sbi->s_partmaps[p_index];
e971b0b9 1095 sector_t vat_block;
5ca4e4be 1096 struct kernel_lb_addr ino;
6d3d5e86 1097 struct inode *inode;
e971b0b9
JK
1098
1099 /*
1100 * VAT file entry is in the last recorded block. Some broken disks have
1101 * it a few blocks before so try a bit harder...
1102 */
1103 ino.partitionReferenceNum = type1_index;
1104 for (vat_block = start_block;
1105 vat_block >= map->s_partition_root &&
6d3d5e86 1106 vat_block >= start_block - 3; vat_block--) {
e971b0b9 1107 ino.logicalBlockNum = vat_block - map->s_partition_root;
6174c2eb 1108 inode = udf_iget_special(sb, &ino);
6d3d5e86
JK
1109 if (!IS_ERR(inode)) {
1110 sbi->s_vat_inode = inode;
1111 break;
1112 }
e971b0b9
JK
1113 }
1114}
1115
1116static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1117{
1118 struct udf_sb_info *sbi = UDF_SB(sb);
1119 struct udf_part_map *map = &sbi->s_partmaps[p_index];
fa5e0815
JK
1120 struct buffer_head *bh = NULL;
1121 struct udf_inode_info *vati;
1122 uint32_t pos;
1123 struct virtualAllocationTable20 *vat20;
23bcda11
FF
1124 sector_t blocks = i_size_read(sb->s_bdev->bd_inode) >>
1125 sb->s_blocksize_bits;
38b74a53 1126
e971b0b9 1127 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
4bf17af0
JK
1128 if (!sbi->s_vat_inode &&
1129 sbi->s_last_block != blocks - 1) {
78ace70c
JP
1130 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1131 (unsigned long)sbi->s_last_block,
1132 (unsigned long)blocks - 1);
e971b0b9 1133 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
4bf17af0 1134 }
38b74a53 1135 if (!sbi->s_vat_inode)
d759bfa4 1136 return -EIO;
38b74a53
JK
1137
1138 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
47c9358a 1139 map->s_type_specific.s_virtual.s_start_offset = 0;
38b74a53
JK
1140 map->s_type_specific.s_virtual.s_num_entries =
1141 (sbi->s_vat_inode->i_size - 36) >> 2;
1142 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
fa5e0815
JK
1143 vati = UDF_I(sbi->s_vat_inode);
1144 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1145 pos = udf_block_map(sbi->s_vat_inode, 0);
1146 bh = sb_bread(sb, pos);
1147 if (!bh)
d759bfa4 1148 return -EIO;
fa5e0815
JK
1149 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1150 } else {
1151 vat20 = (struct virtualAllocationTable20 *)
1152 vati->i_ext.i_data;
1153 }
38b74a53 1154
38b74a53 1155 map->s_type_specific.s_virtual.s_start_offset =
47c9358a 1156 le16_to_cpu(vat20->lengthHeader);
38b74a53
JK
1157 map->s_type_specific.s_virtual.s_num_entries =
1158 (sbi->s_vat_inode->i_size -
1159 map->s_type_specific.s_virtual.
1160 s_start_offset) >> 2;
1161 brelse(bh);
1162 }
1163 return 0;
1164}
1165
d759bfa4
JK
1166/*
1167 * Load partition descriptor block
1168 *
1169 * Returns <0 on error, 0 on success, -EAGAIN is special - try next descriptor
1170 * sequence.
1171 */
3fb38dfa
JK
1172static int udf_load_partdesc(struct super_block *sb, sector_t block)
1173{
1174 struct buffer_head *bh;
1175 struct partitionDesc *p;
1176 struct udf_part_map *map;
1177 struct udf_sb_info *sbi = UDF_SB(sb);
38b74a53 1178 int i, type1_idx;
3fb38dfa
JK
1179 uint16_t partitionNumber;
1180 uint16_t ident;
d759bfa4 1181 int ret;
3fb38dfa
JK
1182
1183 bh = udf_read_tagged(sb, block, block, &ident);
1184 if (!bh)
d759bfa4
JK
1185 return -EAGAIN;
1186 if (ident != TAG_IDENT_PD) {
1187 ret = 0;
3fb38dfa 1188 goto out_bh;
d759bfa4 1189 }
3fb38dfa
JK
1190
1191 p = (struct partitionDesc *)bh->b_data;
1192 partitionNumber = le16_to_cpu(p->partitionNumber);
38b74a53 1193
7888824b 1194 /* First scan for TYPE1 and SPARABLE partitions */
3fb38dfa
JK
1195 for (i = 0; i < sbi->s_partitions; i++) {
1196 map = &sbi->s_partmaps[i];
fcbf7637 1197 udf_debug("Searching map: (%u == %u)\n",
3fb38dfa 1198 map->s_partition_num, partitionNumber);
38b74a53
JK
1199 if (map->s_partition_num == partitionNumber &&
1200 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1201 map->s_partition_type == UDF_SPARABLE_MAP15))
3fb38dfa
JK
1202 break;
1203 }
1204
38b74a53 1205 if (i >= sbi->s_partitions) {
fcbf7637 1206 udf_debug("Partition (%u) not found in partition map\n",
3fb38dfa 1207 partitionNumber);
d759bfa4 1208 ret = 0;
3fb38dfa
JK
1209 goto out_bh;
1210 }
165923fa 1211
3fb38dfa 1212 ret = udf_fill_partdesc_info(sb, p, i);
d759bfa4
JK
1213 if (ret < 0)
1214 goto out_bh;
38b74a53
JK
1215
1216 /*
bfb257a5
JK
1217 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1218 * PHYSICAL partitions are already set up
38b74a53
JK
1219 */
1220 type1_idx = i;
44499602
PF
1221#ifdef UDFFS_DEBUG
1222 map = NULL; /* supress 'maybe used uninitialized' warning */
1223#endif
38b74a53
JK
1224 for (i = 0; i < sbi->s_partitions; i++) {
1225 map = &sbi->s_partmaps[i];
1226
1227 if (map->s_partition_num == partitionNumber &&
1228 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
bfb257a5
JK
1229 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1230 map->s_partition_type == UDF_METADATA_MAP25))
38b74a53
JK
1231 break;
1232 }
1233
d759bfa4
JK
1234 if (i >= sbi->s_partitions) {
1235 ret = 0;
38b74a53 1236 goto out_bh;
d759bfa4 1237 }
38b74a53
JK
1238
1239 ret = udf_fill_partdesc_info(sb, p, i);
d759bfa4 1240 if (ret < 0)
38b74a53
JK
1241 goto out_bh;
1242
bfb257a5 1243 if (map->s_partition_type == UDF_METADATA_MAP25) {
7888824b 1244 ret = udf_load_metadata_files(sb, i, type1_idx);
d759bfa4 1245 if (ret < 0) {
78ace70c
JP
1246 udf_err(sb, "error loading MetaData partition map %d\n",
1247 i);
bfb257a5
JK
1248 goto out_bh;
1249 }
1250 } else {
e729eac6
JK
1251 /*
1252 * If we have a partition with virtual map, we don't handle
1253 * writing to it (we overwrite blocks instead of relocating
1254 * them).
1255 */
bc98a42c 1256 if (!sb_rdonly(sb)) {
e729eac6
JK
1257 ret = -EACCES;
1258 goto out_bh;
1259 }
bfb257a5 1260 ret = udf_load_vat(sb, i, type1_idx);
d759bfa4 1261 if (ret < 0)
bfb257a5 1262 goto out_bh;
bfb257a5 1263 }
d759bfa4 1264 ret = 0;
c0eb31ed 1265out_bh:
2e0838fd 1266 /* In case loading failed, we handle cleanup in udf_fill_super */
c0eb31ed
JK
1267 brelse(bh);
1268 return ret;
1da177e4
LT
1269}
1270
1df2ae31
JK
1271static int udf_load_sparable_map(struct super_block *sb,
1272 struct udf_part_map *map,
1273 struct sparablePartitionMap *spm)
1274{
1275 uint32_t loc;
1276 uint16_t ident;
1277 struct sparingTable *st;
1278 struct udf_sparing_data *sdata = &map->s_type_specific.s_sparing;
1279 int i;
1280 struct buffer_head *bh;
1281
1282 map->s_partition_type = UDF_SPARABLE_MAP15;
1283 sdata->s_packet_len = le16_to_cpu(spm->packetLength);
1284 if (!is_power_of_2(sdata->s_packet_len)) {
1285 udf_err(sb, "error loading logical volume descriptor: "
1286 "Invalid packet length %u\n",
1287 (unsigned)sdata->s_packet_len);
1288 return -EIO;
1289 }
1290 if (spm->numSparingTables > 4) {
1291 udf_err(sb, "error loading logical volume descriptor: "
1292 "Too many sparing tables (%d)\n",
1293 (int)spm->numSparingTables);
1294 return -EIO;
1295 }
1296
1297 for (i = 0; i < spm->numSparingTables; i++) {
1298 loc = le32_to_cpu(spm->locSparingTable[i]);
1299 bh = udf_read_tagged(sb, loc, loc, &ident);
1300 if (!bh)
1301 continue;
1302
1303 st = (struct sparingTable *)bh->b_data;
1304 if (ident != 0 ||
1305 strncmp(st->sparingIdent.ident, UDF_ID_SPARING,
1306 strlen(UDF_ID_SPARING)) ||
1307 sizeof(*st) + le16_to_cpu(st->reallocationTableLen) >
1308 sb->s_blocksize) {
1309 brelse(bh);
1310 continue;
1311 }
1312
1313 sdata->s_spar_map[i] = bh;
1314 }
1315 map->s_partition_func = udf_get_pblock_spar15;
1316 return 0;
1317}
1318
c0eb31ed 1319static int udf_load_logicalvol(struct super_block *sb, sector_t block,
5ca4e4be 1320 struct kernel_lb_addr *fileset)
1da177e4
LT
1321{
1322 struct logicalVolDesc *lvd;
1df2ae31 1323 int i, offset;
1da177e4 1324 uint8_t type;
6c79e987 1325 struct udf_sb_info *sbi = UDF_SB(sb);
4b11111a 1326 struct genericPartitionMap *gpm;
c0eb31ed
JK
1327 uint16_t ident;
1328 struct buffer_head *bh;
adee11b2 1329 unsigned int table_len;
d759bfa4 1330 int ret;
1da177e4 1331
c0eb31ed
JK
1332 bh = udf_read_tagged(sb, block, block, &ident);
1333 if (!bh)
d759bfa4 1334 return -EAGAIN;
c0eb31ed 1335 BUG_ON(ident != TAG_IDENT_LVD);
1da177e4 1336 lvd = (struct logicalVolDesc *)bh->b_data;
adee11b2 1337 table_len = le32_to_cpu(lvd->mapTableLength);
57b9655d 1338 if (table_len > sb->s_blocksize - sizeof(*lvd)) {
adee11b2
JK
1339 udf_err(sb, "error loading logical volume descriptor: "
1340 "Partition table too long (%u > %lu)\n", table_len,
1341 sb->s_blocksize - sizeof(*lvd));
d759bfa4 1342 ret = -EIO;
adee11b2
JK
1343 goto out_bh;
1344 }
1da177e4 1345
cb14d340
JK
1346 ret = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
1347 if (ret)
c0eb31ed 1348 goto out_bh;
1da177e4 1349
cb00ea35 1350 for (i = 0, offset = 0;
adee11b2 1351 i < sbi->s_partitions && offset < table_len;
4b11111a
MS
1352 i++, offset += gpm->partitionMapLength) {
1353 struct udf_part_map *map = &sbi->s_partmaps[i];
1354 gpm = (struct genericPartitionMap *)
1355 &(lvd->partitionMaps[offset]);
1356 type = gpm->partitionMapType;
cb00ea35 1357 if (type == 1) {
4b11111a
MS
1358 struct genericPartitionMap1 *gpm1 =
1359 (struct genericPartitionMap1 *)gpm;
6c79e987
MS
1360 map->s_partition_type = UDF_TYPE1_MAP15;
1361 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1362 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1363 map->s_partition_func = NULL;
cb00ea35 1364 } else if (type == 2) {
4b11111a
MS
1365 struct udfPartitionMap2 *upm2 =
1366 (struct udfPartitionMap2 *)gpm;
1367 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1368 strlen(UDF_ID_VIRTUAL))) {
1369 u16 suf =
1370 le16_to_cpu(((__le16 *)upm2->partIdent.
1371 identSuffix)[0]);
c82a1275 1372 if (suf < 0x0200) {
4b11111a
MS
1373 map->s_partition_type =
1374 UDF_VIRTUAL_MAP15;
1375 map->s_partition_func =
1376 udf_get_pblock_virt15;
c82a1275 1377 } else {
4b11111a
MS
1378 map->s_partition_type =
1379 UDF_VIRTUAL_MAP20;
1380 map->s_partition_func =
1381 udf_get_pblock_virt20;
1da177e4 1382 }
4b11111a
MS
1383 } else if (!strncmp(upm2->partIdent.ident,
1384 UDF_ID_SPARABLE,
1385 strlen(UDF_ID_SPARABLE))) {
d759bfa4
JK
1386 ret = udf_load_sparable_map(sb, map,
1387 (struct sparablePartitionMap *)gpm);
1388 if (ret < 0)
1df2ae31 1389 goto out_bh;
bfb257a5
JK
1390 } else if (!strncmp(upm2->partIdent.ident,
1391 UDF_ID_METADATA,
1392 strlen(UDF_ID_METADATA))) {
1393 struct udf_meta_data *mdata =
1394 &map->s_type_specific.s_metadata;
1395 struct metadataPartitionMap *mdm =
1396 (struct metadataPartitionMap *)
1397 &(lvd->partitionMaps[offset]);
fcbf7637 1398 udf_debug("Parsing Logical vol part %d type %u id=%s\n",
a983f368 1399 i, type, UDF_ID_METADATA);
bfb257a5
JK
1400
1401 map->s_partition_type = UDF_METADATA_MAP25;
1402 map->s_partition_func = udf_get_pblock_meta25;
1403
1404 mdata->s_meta_file_loc =
1405 le32_to_cpu(mdm->metadataFileLoc);
1406 mdata->s_mirror_file_loc =
1407 le32_to_cpu(mdm->metadataMirrorFileLoc);
1408 mdata->s_bitmap_file_loc =
1409 le32_to_cpu(mdm->metadataBitmapFileLoc);
1410 mdata->s_alloc_unit_size =
1411 le32_to_cpu(mdm->allocUnitSize);
1412 mdata->s_align_unit_size =
1413 le16_to_cpu(mdm->alignUnitSize);
ed47a7d0
JK
1414 if (mdm->flags & 0x01)
1415 mdata->s_flags |= MF_DUPLICATE_MD;
bfb257a5
JK
1416
1417 udf_debug("Metadata Ident suffix=0x%x\n",
a983f368
JP
1418 le16_to_cpu(*(__le16 *)
1419 mdm->partIdent.identSuffix));
fcbf7637 1420 udf_debug("Metadata part num=%u\n",
a983f368 1421 le16_to_cpu(mdm->partitionNum));
fcbf7637 1422 udf_debug("Metadata part alloc unit size=%u\n",
a983f368 1423 le32_to_cpu(mdm->allocUnitSize));
fcbf7637 1424 udf_debug("Metadata file loc=%u\n",
a983f368 1425 le32_to_cpu(mdm->metadataFileLoc));
fcbf7637 1426 udf_debug("Mirror file loc=%u\n",
a983f368 1427 le32_to_cpu(mdm->metadataMirrorFileLoc));
fcbf7637 1428 udf_debug("Bitmap file loc=%u\n",
a983f368 1429 le32_to_cpu(mdm->metadataBitmapFileLoc));
fcbf7637 1430 udf_debug("Flags: %d %u\n",
ed47a7d0 1431 mdata->s_flags, mdm->flags);
cb00ea35 1432 } else {
3a71fc5d
MS
1433 udf_debug("Unknown ident: %s\n",
1434 upm2->partIdent.ident);
1da177e4
LT
1435 continue;
1436 }
6c79e987
MS
1437 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1438 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
1da177e4 1439 }
fcbf7637 1440 udf_debug("Partition (%d:%u) type %u on volume %u\n",
a983f368 1441 i, map->s_partition_num, type, map->s_volumeseqnum);
1da177e4
LT
1442 }
1443
cb00ea35 1444 if (fileset) {
5ca4e4be 1445 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
1da177e4
LT
1446
1447 *fileset = lelb_to_cpu(la->extLocation);
fcbf7637 1448 udf_debug("FileSet found in LogicalVolDesc at block=%u, partition=%u\n",
a983f368 1449 fileset->logicalBlockNum,
28de7948 1450 fileset->partitionReferenceNum);
1da177e4
LT
1451 }
1452 if (lvd->integritySeqExt.extLength)
1453 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
d759bfa4 1454 ret = 0;
c0eb31ed
JK
1455out_bh:
1456 brelse(bh);
1457 return ret;
1da177e4
LT
1458}
1459
1460/*
a47241cd 1461 * Find the prevailing Logical Volume Integrity Descriptor.
1da177e4 1462 */
5ca4e4be 1463static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
1da177e4 1464{
a47241cd 1465 struct buffer_head *bh, *final_bh;
1da177e4 1466 uint16_t ident;
6c79e987
MS
1467 struct udf_sb_info *sbi = UDF_SB(sb);
1468 struct logicalVolIntegrityDesc *lvid;
a47241cd
AT
1469 int indirections = 0;
1470
1471 while (++indirections <= UDF_MAX_LVID_NESTING) {
1472 final_bh = NULL;
1473 while (loc.extLength > 0 &&
1474 (bh = udf_read_tagged(sb, loc.extLocation,
1475 loc.extLocation, &ident))) {
1476 if (ident != TAG_IDENT_LVID) {
1477 brelse(bh);
1478 break;
1479 }
1480
1481 brelse(final_bh);
1482 final_bh = bh;
1da177e4 1483
a47241cd
AT
1484 loc.extLength -= sb->s_blocksize;
1485 loc.extLocation++;
1486 }
cb00ea35 1487
a47241cd
AT
1488 if (!final_bh)
1489 return;
cb00ea35 1490
a47241cd
AT
1491 brelse(sbi->s_lvid_bh);
1492 sbi->s_lvid_bh = final_bh;
1493
1494 lvid = (struct logicalVolIntegrityDesc *)final_bh->b_data;
1495 if (lvid->nextIntegrityExt.extLength == 0)
1496 return;
1497
1498 loc = leea_to_cpu(lvid->nextIntegrityExt);
1da177e4 1499 }
a47241cd
AT
1500
1501 udf_warn(sb, "Too many LVID indirections (max %u), ignoring.\n",
1502 UDF_MAX_LVID_NESTING);
1503 brelse(sbi->s_lvid_bh);
1504 sbi->s_lvid_bh = NULL;
1da177e4
LT
1505}
1506
7b78fd02
JK
1507/*
1508 * Step for reallocation of table of partition descriptor sequence numbers.
1509 * Must be power of 2.
1510 */
1511#define PART_DESC_ALLOC_STEP 32
1512
ee4af50c
JK
1513struct part_desc_seq_scan_data {
1514 struct udf_vds_record rec;
1515 u32 partnum;
1516};
1517
7b78fd02
JK
1518struct desc_seq_scan_data {
1519 struct udf_vds_record vds[VDS_POS_LENGTH];
1520 unsigned int size_part_descs;
ee4af50c
JK
1521 unsigned int num_part_descs;
1522 struct part_desc_seq_scan_data *part_descs_loc;
7b78fd02
JK
1523};
1524
1525static struct udf_vds_record *handle_partition_descriptor(
1526 struct buffer_head *bh,
1527 struct desc_seq_scan_data *data)
1528{
1529 struct partitionDesc *desc = (struct partitionDesc *)bh->b_data;
1530 int partnum;
ee4af50c 1531 int i;
7b78fd02
JK
1532
1533 partnum = le16_to_cpu(desc->partitionNumber);
ee4af50c
JK
1534 for (i = 0; i < data->num_part_descs; i++)
1535 if (partnum == data->part_descs_loc[i].partnum)
1536 return &(data->part_descs_loc[i].rec);
1537 if (data->num_part_descs >= data->size_part_descs) {
1538 struct part_desc_seq_scan_data *new_loc;
7b78fd02
JK
1539 unsigned int new_size = ALIGN(partnum, PART_DESC_ALLOC_STEP);
1540
6396bb22 1541 new_loc = kcalloc(new_size, sizeof(*new_loc), GFP_KERNEL);
7b78fd02
JK
1542 if (!new_loc)
1543 return ERR_PTR(-ENOMEM);
1544 memcpy(new_loc, data->part_descs_loc,
1545 data->size_part_descs * sizeof(*new_loc));
1546 kfree(data->part_descs_loc);
1547 data->part_descs_loc = new_loc;
1548 data->size_part_descs = new_size;
1549 }
ee4af50c 1550 return &(data->part_descs_loc[data->num_part_descs++].rec);
7b78fd02
JK
1551}
1552
1553
1554static struct udf_vds_record *get_volume_descriptor_record(uint16_t ident,
1555 struct buffer_head *bh, struct desc_seq_scan_data *data)
18cf4781
JK
1556{
1557 switch (ident) {
1558 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
7b78fd02 1559 return &(data->vds[VDS_POS_PRIMARY_VOL_DESC]);
18cf4781 1560 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
7b78fd02 1561 return &(data->vds[VDS_POS_IMP_USE_VOL_DESC]);
18cf4781 1562 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
7b78fd02 1563 return &(data->vds[VDS_POS_LOGICAL_VOL_DESC]);
18cf4781 1564 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
7b78fd02
JK
1565 return &(data->vds[VDS_POS_UNALLOC_SPACE_DESC]);
1566 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
1567 return handle_partition_descriptor(bh, data);
18cf4781
JK
1568 }
1569 return NULL;
1570}
e7a4eb86 1571
1da177e4 1572/*
d759bfa4
JK
1573 * Process a main/reserve volume descriptor sequence.
1574 * @block First block of first extent of the sequence.
1575 * @lastblock Lastblock of first extent of the sequence.
1576 * @fileset There we store extent containing root fileset
1da177e4 1577 *
d759bfa4
JK
1578 * Returns <0 on error, 0 on success. -EAGAIN is special - try next descriptor
1579 * sequence
1da177e4 1580 */
d759bfa4
JK
1581static noinline int udf_process_sequence(
1582 struct super_block *sb,
1583 sector_t block, sector_t lastblock,
1584 struct kernel_lb_addr *fileset)
1da177e4
LT
1585{
1586 struct buffer_head *bh = NULL;
4b11111a 1587 struct udf_vds_record *curr;
1da177e4
LT
1588 struct generic_desc *gd;
1589 struct volDescPtr *vdp;
2b8f9421 1590 bool done = false;
1da177e4
LT
1591 uint32_t vdsn;
1592 uint16_t ident;
d759bfa4 1593 int ret;
e7a4eb86 1594 unsigned int indirections = 0;
7b78fd02
JK
1595 struct desc_seq_scan_data data;
1596 unsigned int i;
1597
1598 memset(data.vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1599 data.size_part_descs = PART_DESC_ALLOC_STEP;
ee4af50c 1600 data.num_part_descs = 0;
6396bb22
KC
1601 data.part_descs_loc = kcalloc(data.size_part_descs,
1602 sizeof(*data.part_descs_loc),
1603 GFP_KERNEL);
7b78fd02
JK
1604 if (!data.part_descs_loc)
1605 return -ENOMEM;
1da177e4 1606
c0eb31ed
JK
1607 /*
1608 * Read the main descriptor sequence and find which descriptors
1609 * are in it.
1610 */
cb00ea35 1611 for (; (!done && block <= lastblock); block++) {
1da177e4 1612 bh = udf_read_tagged(sb, block, block, &ident);
67621675
JK
1613 if (!bh)
1614 break;
1da177e4
LT
1615
1616 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1617 gd = (struct generic_desc *)bh->b_data;
1618 vdsn = le32_to_cpu(gd->volDescSeqNum);
cb00ea35 1619 switch (ident) {
28de7948 1620 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
7b568cba
JK
1621 if (++indirections > UDF_MAX_TD_NESTING) {
1622 udf_err(sb, "too many Volume Descriptor "
1623 "Pointers (max %u supported)\n",
1624 UDF_MAX_TD_NESTING);
1625 brelse(bh);
1626 return -EIO;
cb00ea35 1627 }
7b568cba
JK
1628
1629 vdp = (struct volDescPtr *)bh->b_data;
1630 block = le32_to_cpu(vdp->nextVolDescSeqExt.extLocation);
1631 lastblock = le32_to_cpu(
1632 vdp->nextVolDescSeqExt.extLength) >>
1633 sb->s_blocksize_bits;
1634 lastblock += block - 1;
1635 /* For loop is going to increment 'block' again */
1636 block--;
cb00ea35 1637 break;
18cf4781 1638 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
28de7948 1639 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
18cf4781
JK
1640 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
1641 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
7b78fd02
JK
1642 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
1643 curr = get_volume_descriptor_record(ident, bh, &data);
1644 if (IS_ERR(curr)) {
1645 brelse(bh);
1646 return PTR_ERR(curr);
1647 }
1648 /* Descriptor we don't care about? */
1649 if (!curr)
1650 break;
4b11111a
MS
1651 if (vdsn >= curr->volDescSeqNum) {
1652 curr->volDescSeqNum = vdsn;
1653 curr->block = block;
cb00ea35
CG
1654 }
1655 break;
28de7948 1656 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
7b568cba 1657 done = true;
cb00ea35 1658 break;
1da177e4 1659 }
3bf25cb4 1660 brelse(bh);
1da177e4 1661 }
c0eb31ed
JK
1662 /*
1663 * Now read interesting descriptors again and process them
1664 * in a suitable order
1665 */
7b78fd02 1666 if (!data.vds[VDS_POS_PRIMARY_VOL_DESC].block) {
78ace70c 1667 udf_err(sb, "Primary Volume Descriptor not found!\n");
d759bfa4
JK
1668 return -EAGAIN;
1669 }
7b78fd02 1670 ret = udf_load_pvoldesc(sb, data.vds[VDS_POS_PRIMARY_VOL_DESC].block);
d759bfa4
JK
1671 if (ret < 0)
1672 return ret;
1673
7b78fd02 1674 if (data.vds[VDS_POS_LOGICAL_VOL_DESC].block) {
d759bfa4 1675 ret = udf_load_logicalvol(sb,
7b78fd02
JK
1676 data.vds[VDS_POS_LOGICAL_VOL_DESC].block,
1677 fileset);
d759bfa4
JK
1678 if (ret < 0)
1679 return ret;
c0eb31ed 1680 }
165923fa 1681
7b78fd02 1682 /* Now handle prevailing Partition Descriptors */
ee4af50c
JK
1683 for (i = 0; i < data.num_part_descs; i++) {
1684 ret = udf_load_partdesc(sb, data.part_descs_loc[i].rec.block);
1685 if (ret < 0)
1686 return ret;
1da177e4
LT
1687 }
1688
1689 return 0;
1690}
1691
d759bfa4
JK
1692/*
1693 * Load Volume Descriptor Sequence described by anchor in bh
1694 *
1695 * Returns <0 on error, 0 on success
1696 */
40346005
JK
1697static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1698 struct kernel_lb_addr *fileset)
1da177e4 1699{
40346005 1700 struct anchorVolDescPtr *anchor;
d759bfa4
JK
1701 sector_t main_s, main_e, reserve_s, reserve_e;
1702 int ret;
1da177e4 1703
40346005
JK
1704 anchor = (struct anchorVolDescPtr *)bh->b_data;
1705
1706 /* Locate the main sequence */
1707 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1708 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1709 main_e = main_e >> sb->s_blocksize_bits;
91c9c9ec 1710 main_e += main_s - 1;
40346005
JK
1711
1712 /* Locate the reserve sequence */
1713 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1714 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1715 reserve_e = reserve_e >> sb->s_blocksize_bits;
91c9c9ec 1716 reserve_e += reserve_s - 1;
40346005
JK
1717
1718 /* Process the main & reserve sequences */
1719 /* responsible for finding the PartitionDesc(s) */
d759bfa4
JK
1720 ret = udf_process_sequence(sb, main_s, main_e, fileset);
1721 if (ret != -EAGAIN)
1722 return ret;
bff943af 1723 udf_sb_free_partitions(sb);
d759bfa4
JK
1724 ret = udf_process_sequence(sb, reserve_s, reserve_e, fileset);
1725 if (ret < 0) {
1726 udf_sb_free_partitions(sb);
1727 /* No sequence was OK, return -EIO */
1728 if (ret == -EAGAIN)
1729 ret = -EIO;
1730 }
1731 return ret;
1da177e4
LT
1732}
1733
40346005
JK
1734/*
1735 * Check whether there is an anchor block in the given block and
1736 * load Volume Descriptor Sequence if so.
d759bfa4
JK
1737 *
1738 * Returns <0 on error, 0 on success, -EAGAIN is special - try next anchor
1739 * block
40346005
JK
1740 */
1741static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1742 struct kernel_lb_addr *fileset)
1197e4df 1743{
40346005
JK
1744 struct buffer_head *bh;
1745 uint16_t ident;
1746 int ret;
1197e4df 1747
40346005
JK
1748 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1749 udf_fixed_to_variable(block) >=
23bcda11 1750 i_size_read(sb->s_bdev->bd_inode) >> sb->s_blocksize_bits)
d759bfa4 1751 return -EAGAIN;
40346005
JK
1752
1753 bh = udf_read_tagged(sb, block, block, &ident);
1754 if (!bh)
d759bfa4 1755 return -EAGAIN;
40346005
JK
1756 if (ident != TAG_IDENT_AVDP) {
1757 brelse(bh);
d759bfa4 1758 return -EAGAIN;
1197e4df 1759 }
40346005
JK
1760 ret = udf_load_sequence(sb, bh, fileset);
1761 brelse(bh);
1762 return ret;
1197e4df
CL
1763}
1764
d759bfa4
JK
1765/*
1766 * Search for an anchor volume descriptor pointer.
1767 *
1768 * Returns < 0 on error, 0 on success. -EAGAIN is special - try next set
1769 * of anchors.
1770 */
1771static int udf_scan_anchors(struct super_block *sb, sector_t *lastblock,
1772 struct kernel_lb_addr *fileset)
1da177e4 1773{
40346005 1774 sector_t last[6];
38b74a53 1775 int i;
40346005
JK
1776 struct udf_sb_info *sbi = UDF_SB(sb);
1777 int last_count = 0;
d759bfa4 1778 int ret;
1da177e4 1779
40346005
JK
1780 /* First try user provided anchor */
1781 if (sbi->s_anchor) {
d759bfa4
JK
1782 ret = udf_check_anchor_block(sb, sbi->s_anchor, fileset);
1783 if (ret != -EAGAIN)
1784 return ret;
40346005
JK
1785 }
1786 /*
1787 * according to spec, anchor is in either:
1788 * block 256
1789 * lastblock-256
1790 * lastblock
1791 * however, if the disc isn't closed, it could be 512.
1792 */
d759bfa4
JK
1793 ret = udf_check_anchor_block(sb, sbi->s_session + 256, fileset);
1794 if (ret != -EAGAIN)
1795 return ret;
40346005
JK
1796 /*
1797 * The trouble is which block is the last one. Drives often misreport
1798 * this so we try various possibilities.
1799 */
d759bfa4
JK
1800 last[last_count++] = *lastblock;
1801 if (*lastblock >= 1)
1802 last[last_count++] = *lastblock - 1;
1803 last[last_count++] = *lastblock + 1;
1804 if (*lastblock >= 2)
1805 last[last_count++] = *lastblock - 2;
1806 if (*lastblock >= 150)
1807 last[last_count++] = *lastblock - 150;
1808 if (*lastblock >= 152)
1809 last[last_count++] = *lastblock - 152;
1da177e4 1810
40346005 1811 for (i = 0; i < last_count; i++) {
23bcda11 1812 if (last[i] >= i_size_read(sb->s_bdev->bd_inode) >>
40346005 1813 sb->s_blocksize_bits)
28f7c4d4 1814 continue;
d759bfa4
JK
1815 ret = udf_check_anchor_block(sb, last[i], fileset);
1816 if (ret != -EAGAIN) {
1817 if (!ret)
1818 *lastblock = last[i];
1819 return ret;
1820 }
40346005 1821 if (last[i] < 256)
28f7c4d4 1822 continue;
d759bfa4
JK
1823 ret = udf_check_anchor_block(sb, last[i] - 256, fileset);
1824 if (ret != -EAGAIN) {
1825 if (!ret)
1826 *lastblock = last[i];
1827 return ret;
1828 }
40346005 1829 }
28f7c4d4 1830
40346005 1831 /* Finally try block 512 in case media is open */
d759bfa4 1832 return udf_check_anchor_block(sb, sbi->s_session + 512, fileset);
40346005 1833}
28f7c4d4 1834
40346005
JK
1835/*
1836 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1837 * area specified by it. The function expects sbi->s_lastblock to be the last
1838 * block on the media.
1839 *
d759bfa4
JK
1840 * Return <0 on error, 0 if anchor found. -EAGAIN is special meaning anchor
1841 * was not found.
40346005
JK
1842 */
1843static int udf_find_anchor(struct super_block *sb,
1844 struct kernel_lb_addr *fileset)
1845{
40346005 1846 struct udf_sb_info *sbi = UDF_SB(sb);
d759bfa4
JK
1847 sector_t lastblock = sbi->s_last_block;
1848 int ret;
28f7c4d4 1849
d759bfa4
JK
1850 ret = udf_scan_anchors(sb, &lastblock, fileset);
1851 if (ret != -EAGAIN)
40346005 1852 goto out;
1da177e4 1853
40346005
JK
1854 /* No anchor found? Try VARCONV conversion of block numbers */
1855 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
d759bfa4 1856 lastblock = udf_variable_to_fixed(sbi->s_last_block);
40346005 1857 /* Firstly, we try to not convert number of the last block */
d759bfa4
JK
1858 ret = udf_scan_anchors(sb, &lastblock, fileset);
1859 if (ret != -EAGAIN)
40346005 1860 goto out;
1da177e4 1861
d759bfa4 1862 lastblock = sbi->s_last_block;
40346005 1863 /* Secondly, we try with converted number of the last block */
d759bfa4
JK
1864 ret = udf_scan_anchors(sb, &lastblock, fileset);
1865 if (ret < 0) {
40346005
JK
1866 /* VARCONV didn't help. Clear it. */
1867 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1da177e4 1868 }
40346005 1869out:
d759bfa4
JK
1870 if (ret == 0)
1871 sbi->s_last_block = lastblock;
1872 return ret;
40346005 1873}
1da177e4 1874
40346005
JK
1875/*
1876 * Check Volume Structure Descriptor, find Anchor block and load Volume
d759bfa4
JK
1877 * Descriptor Sequence.
1878 *
1879 * Returns < 0 on error, 0 on success. -EAGAIN is special meaning anchor
1880 * block was not found.
40346005
JK
1881 */
1882static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1883 int silent, struct kernel_lb_addr *fileset)
1884{
1885 struct udf_sb_info *sbi = UDF_SB(sb);
1886 loff_t nsr_off;
d759bfa4 1887 int ret;
40346005
JK
1888
1889 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1890 if (!silent)
78ace70c 1891 udf_warn(sb, "Bad block size\n");
d759bfa4 1892 return -EINVAL;
40346005
JK
1893 }
1894 sbi->s_last_block = uopt->lastblock;
1895 if (!uopt->novrs) {
1896 /* Check that it is NSR02 compliant */
1897 nsr_off = udf_check_vsd(sb);
1898 if (!nsr_off) {
1899 if (!silent)
78ace70c 1900 udf_warn(sb, "No VRS found\n");
70f16cef 1901 return -EINVAL;
40346005
JK
1902 }
1903 if (nsr_off == -1)
44499602
PF
1904 udf_debug("Failed to read sector at offset %d. "
1905 "Assuming open disc. Skipping validity "
1906 "check\n", VSD_FIRST_SECTOR_OFFSET);
40346005
JK
1907 if (!sbi->s_last_block)
1908 sbi->s_last_block = udf_get_last_block(sb);
1909 } else {
1910 udf_debug("Validity check skipped because of novrs option\n");
28f7c4d4 1911 }
1da177e4 1912
40346005
JK
1913 /* Look for anchor block and load Volume Descriptor Sequence */
1914 sbi->s_anchor = uopt->anchor;
d759bfa4
JK
1915 ret = udf_find_anchor(sb, fileset);
1916 if (ret < 0) {
1917 if (!silent && ret == -EAGAIN)
78ace70c 1918 udf_warn(sb, "No anchor found\n");
d759bfa4 1919 return ret;
40346005 1920 }
d759bfa4 1921 return 0;
1da177e4
LT
1922}
1923
1924static void udf_open_lvid(struct super_block *sb)
1925{
6c79e987
MS
1926 struct udf_sb_info *sbi = UDF_SB(sb);
1927 struct buffer_head *bh = sbi->s_lvid_bh;
165923fa
MS
1928 struct logicalVolIntegrityDesc *lvid;
1929 struct logicalVolIntegrityDescImpUse *lvidiu;
c3b9cecd 1930 struct timespec64 ts;
146bca72 1931
165923fa
MS
1932 if (!bh)
1933 return;
165923fa 1934 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
69d75671
JK
1935 lvidiu = udf_sb_lvidiu(sb);
1936 if (!lvidiu)
1937 return;
165923fa 1938
69d75671 1939 mutex_lock(&sbi->s_alloc_mutex);
165923fa
MS
1940 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1941 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
c3b9cecd 1942 ktime_get_real_ts64(&ts);
88b50ce3 1943 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, ts);
b72e632c
JK
1944 if (le32_to_cpu(lvid->integrityType) == LVID_INTEGRITY_TYPE_CLOSE)
1945 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
1946 else
1947 UDF_SET_FLAG(sb, UDF_FLAG_INCONSISTENT);
165923fa
MS
1948
1949 lvid->descTag.descCRC = cpu_to_le16(
5ca4e4be 1950 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
f845fced 1951 le16_to_cpu(lvid->descTag.descCRCLength)));
165923fa
MS
1952
1953 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1954 mark_buffer_dirty(bh);
146bca72 1955 sbi->s_lvid_dirty = 0;
949f4a7c 1956 mutex_unlock(&sbi->s_alloc_mutex);
9734c971
JK
1957 /* Make opening of filesystem visible on the media immediately */
1958 sync_dirty_buffer(bh);
1da177e4
LT
1959}
1960
1961static void udf_close_lvid(struct super_block *sb)
1962{
6c79e987
MS
1963 struct udf_sb_info *sbi = UDF_SB(sb);
1964 struct buffer_head *bh = sbi->s_lvid_bh;
1965 struct logicalVolIntegrityDesc *lvid;
165923fa 1966 struct logicalVolIntegrityDescImpUse *lvidiu;
c3b9cecd 1967 struct timespec64 ts;
28de7948 1968
6c79e987
MS
1969 if (!bh)
1970 return;
69d75671
JK
1971 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1972 lvidiu = udf_sb_lvidiu(sb);
1973 if (!lvidiu)
1974 return;
6c79e987 1975
949f4a7c 1976 mutex_lock(&sbi->s_alloc_mutex);
165923fa
MS
1977 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1978 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
c3b9cecd 1979 ktime_get_real_ts64(&ts);
88b50ce3 1980 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, ts);
165923fa
MS
1981 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1982 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1983 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1984 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1985 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1986 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
b72e632c
JK
1987 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_INCONSISTENT))
1988 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
165923fa
MS
1989
1990 lvid->descTag.descCRC = cpu_to_le16(
5ca4e4be 1991 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
f845fced 1992 le16_to_cpu(lvid->descTag.descCRCLength)));
165923fa
MS
1993
1994 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
853a0c25
JK
1995 /*
1996 * We set buffer uptodate unconditionally here to avoid spurious
1997 * warnings from mark_buffer_dirty() when previous EIO has marked
1998 * the buffer as !uptodate
1999 */
2000 set_buffer_uptodate(bh);
165923fa 2001 mark_buffer_dirty(bh);
146bca72 2002 sbi->s_lvid_dirty = 0;
949f4a7c 2003 mutex_unlock(&sbi->s_alloc_mutex);
9734c971
JK
2004 /* Make closing of filesystem visible on the media immediately */
2005 sync_dirty_buffer(bh);
1da177e4
LT
2006}
2007
d664b6af
JK
2008u64 lvid_get_unique_id(struct super_block *sb)
2009{
2010 struct buffer_head *bh;
2011 struct udf_sb_info *sbi = UDF_SB(sb);
2012 struct logicalVolIntegrityDesc *lvid;
2013 struct logicalVolHeaderDesc *lvhd;
2014 u64 uniqueID;
2015 u64 ret;
2016
2017 bh = sbi->s_lvid_bh;
2018 if (!bh)
2019 return 0;
2020
2021 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
2022 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
2023
2024 mutex_lock(&sbi->s_alloc_mutex);
2025 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
2026 if (!(++uniqueID & 0xFFFFFFFF))
2027 uniqueID += 16;
2028 lvhd->uniqueID = cpu_to_le64(uniqueID);
2029 mutex_unlock(&sbi->s_alloc_mutex);
2030 mark_buffer_dirty(bh);
2031
2032 return ret;
1da177e4
LT
2033}
2034
1da177e4
LT
2035static int udf_fill_super(struct super_block *sb, void *options, int silent)
2036{
d759bfa4 2037 int ret = -EINVAL;
cb00ea35 2038 struct inode *inode = NULL;
1da177e4 2039 struct udf_options uopt;
5ca4e4be 2040 struct kernel_lb_addr rootdir, fileset;
1da177e4 2041 struct udf_sb_info *sbi;
9181f8bf 2042 bool lvid_open = false;
1da177e4
LT
2043
2044 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
116e5258
JK
2045 /* By default we'll use overflow[ug]id when UDF inode [ug]id == -1 */
2046 uopt.uid = make_kuid(current_user_ns(), overflowuid);
2047 uopt.gid = make_kgid(current_user_ns(), overflowgid);
1da177e4 2048 uopt.umask = 0;
87bc730c
MS
2049 uopt.fmode = UDF_INVALID_MODE;
2050 uopt.dmode = UDF_INVALID_MODE;
785dffe1 2051 uopt.nls_map = NULL;
1da177e4 2052
033c9da0 2053 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
9db9f9e3 2054 if (!sbi)
1da177e4 2055 return -ENOMEM;
28de7948 2056
1da177e4 2057 sb->s_fs_info = sbi;
1da177e4 2058
1e7933de 2059 mutex_init(&sbi->s_alloc_mutex);
1da177e4 2060
6da80894 2061 if (!udf_parse_options((char *)options, &uopt, false))
fdf2657b 2062 goto parse_options_failure;
1da177e4
LT
2063
2064 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
cb00ea35 2065 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
8076c363 2066 udf_err(sb, "utf8 cannot be combined with iocharset\n");
fdf2657b 2067 goto parse_options_failure;
1da177e4 2068 }
cb00ea35 2069 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
1da177e4
LT
2070 uopt.nls_map = load_nls_default();
2071 if (!uopt.nls_map)
2072 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
2073 else
2074 udf_debug("Using default NLS map\n");
2075 }
1da177e4
LT
2076 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
2077 uopt.flags |= (1 << UDF_FLAG_UTF8);
2078
2079 fileset.logicalBlockNum = 0xFFFFFFFF;
2080 fileset.partitionReferenceNum = 0xFFFF;
2081
6c79e987
MS
2082 sbi->s_flags = uopt.flags;
2083 sbi->s_uid = uopt.uid;
2084 sbi->s_gid = uopt.gid;
2085 sbi->s_umask = uopt.umask;
7ac9bcd5
MS
2086 sbi->s_fmode = uopt.fmode;
2087 sbi->s_dmode = uopt.dmode;
6c79e987 2088 sbi->s_nls_map = uopt.nls_map;
c03cad24 2089 rwlock_init(&sbi->s_cred_lock);
1da177e4 2090
cb00ea35 2091 if (uopt.session == 0xFFFFFFFF)
6c79e987 2092 sbi->s_session = udf_get_last_session(sb);
1da177e4 2093 else
6c79e987 2094 sbi->s_session = uopt.session;
1da177e4 2095
6c79e987 2096 udf_debug("Multi-session=%d\n", sbi->s_session);
1da177e4 2097
40346005
JK
2098 /* Fill in the rest of the superblock */
2099 sb->s_op = &udf_sb_ops;
2100 sb->s_export_op = &udf_export_ops;
123e9caf 2101
40346005
JK
2102 sb->s_magic = UDF_SUPER_MAGIC;
2103 sb->s_time_gran = 1000;
2104
1197e4df 2105 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
40346005 2106 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1197e4df 2107 } else {
e1defc4f 2108 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
70f16cef 2109 while (uopt.blocksize <= 4096) {
40346005 2110 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
70f16cef
FF
2111 if (ret < 0) {
2112 if (!silent && ret != -EACCES) {
fcbf7637 2113 pr_notice("Scanning with blocksize %u failed\n",
70f16cef
FF
2114 uopt.blocksize);
2115 }
2116 brelse(sbi->s_lvid_bh);
2117 sbi->s_lvid_bh = NULL;
2118 /*
2119 * EACCES is special - we want to propagate to
2120 * upper layers that we cannot handle RW mount.
2121 */
2122 if (ret == -EACCES)
2123 break;
2124 } else
2125 break;
2126
2127 uopt.blocksize <<= 1;
1197e4df 2128 }
1da177e4 2129 }
d759bfa4
JK
2130 if (ret < 0) {
2131 if (ret == -EAGAIN) {
2132 udf_warn(sb, "No partition found (1)\n");
2133 ret = -EINVAL;
2134 }
1da177e4
LT
2135 goto error_out;
2136 }
2137
fcbf7637 2138 udf_debug("Lastblock=%u\n", sbi->s_last_block);
1da177e4 2139
6c79e987 2140 if (sbi->s_lvid_bh) {
4b11111a 2141 struct logicalVolIntegrityDescImpUse *lvidiu =
69d75671
JK
2142 udf_sb_lvidiu(sb);
2143 uint16_t minUDFReadRev;
2144 uint16_t minUDFWriteRev;
1da177e4 2145
69d75671
JK
2146 if (!lvidiu) {
2147 ret = -EINVAL;
2148 goto error_out;
2149 }
2150 minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2151 minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
cb00ea35 2152 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
78ace70c 2153 udf_err(sb, "minUDFReadRev=%x (max is %x)\n",
69d75671 2154 minUDFReadRev,
78ace70c 2155 UDF_MAX_READ_VERSION);
d759bfa4 2156 ret = -EINVAL;
1da177e4 2157 goto error_out;
e729eac6 2158 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION &&
bc98a42c 2159 !sb_rdonly(sb)) {
e729eac6
JK
2160 ret = -EACCES;
2161 goto error_out;
2162 }
1da177e4 2163
6c79e987 2164 sbi->s_udfrev = minUDFWriteRev;
1da177e4
LT
2165
2166 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2167 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2168 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2169 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2170 }
2171
6c79e987 2172 if (!sbi->s_partitions) {
78ace70c 2173 udf_warn(sb, "No partition found (2)\n");
d759bfa4 2174 ret = -EINVAL;
1da177e4
LT
2175 goto error_out;
2176 }
2177
4b11111a 2178 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
e729eac6 2179 UDF_PART_FLAG_READ_ONLY &&
bc98a42c 2180 !sb_rdonly(sb)) {
e729eac6
JK
2181 ret = -EACCES;
2182 goto error_out;
c1a26e7d 2183 }
39b3f6d6 2184
cb00ea35 2185 if (udf_find_fileset(sb, &fileset, &rootdir)) {
78ace70c 2186 udf_warn(sb, "No fileset found\n");
d759bfa4 2187 ret = -EINVAL;
1da177e4
LT
2188 goto error_out;
2189 }
2190
cb00ea35 2191 if (!silent) {
5ca4e4be 2192 struct timestamp ts;
56774805 2193 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
78ace70c
JP
2194 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2195 sbi->s_volume_ident,
2196 le16_to_cpu(ts.year), ts.month, ts.day,
56774805 2197 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
1da177e4 2198 }
bc98a42c 2199 if (!sb_rdonly(sb)) {
1da177e4 2200 udf_open_lvid(sb);
9181f8bf
JK
2201 lvid_open = true;
2202 }
1da177e4
LT
2203
2204 /* Assign the root inode */
2205 /* assign inodes by physical block number */
2206 /* perhaps it's not extensible enough, but for now ... */
97e961fd 2207 inode = udf_iget(sb, &rootdir);
6d3d5e86 2208 if (IS_ERR(inode)) {
fcbf7637 2209 udf_err(sb, "Error in udf_iget, block=%u, partition=%u\n",
cb00ea35 2210 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
6d3d5e86 2211 ret = PTR_ERR(inode);
1da177e4
LT
2212 goto error_out;
2213 }
2214
2215 /* Allocate a dentry for the root inode */
48fde701 2216 sb->s_root = d_make_root(inode);
cb00ea35 2217 if (!sb->s_root) {
78ace70c 2218 udf_err(sb, "Couldn't allocate root dentry\n");
d759bfa4 2219 ret = -ENOMEM;
1da177e4
LT
2220 goto error_out;
2221 }
31170b6a 2222 sb->s_maxbytes = MAX_LFS_FILESIZE;
8de52778 2223 sb->s_max_links = UDF_MAX_LINKS;
1da177e4
LT
2224 return 0;
2225
28de7948 2226error_out:
0d454e4a 2227 iput(sbi->s_vat_inode);
fdf2657b 2228parse_options_failure:
785dffe1
CX
2229 if (uopt.nls_map)
2230 unload_nls(uopt.nls_map);
9181f8bf 2231 if (lvid_open)
1da177e4 2232 udf_close_lvid(sb);
6c79e987 2233 brelse(sbi->s_lvid_bh);
bff943af 2234 udf_sb_free_partitions(sb);
1da177e4
LT
2235 kfree(sbi);
2236 sb->s_fs_info = NULL;
28de7948 2237
d759bfa4 2238 return ret;
1da177e4
LT
2239}
2240
8076c363
JP
2241void _udf_err(struct super_block *sb, const char *function,
2242 const char *fmt, ...)
1da177e4 2243{
c2bff36c 2244 struct va_format vaf;
1da177e4
LT
2245 va_list args;
2246
1da177e4 2247 va_start(args, fmt);
c2bff36c
JP
2248
2249 vaf.fmt = fmt;
2250 vaf.va = &args;
2251
2252 pr_err("error (device %s): %s: %pV", sb->s_id, function, &vaf);
2253
1da177e4 2254 va_end(args);
1da177e4
LT
2255}
2256
a40ecd7b
JP
2257void _udf_warn(struct super_block *sb, const char *function,
2258 const char *fmt, ...)
1da177e4 2259{
c2bff36c 2260 struct va_format vaf;
1da177e4
LT
2261 va_list args;
2262
cb00ea35 2263 va_start(args, fmt);
c2bff36c
JP
2264
2265 vaf.fmt = fmt;
2266 vaf.va = &args;
2267
2268 pr_warn("warning (device %s): %s: %pV", sb->s_id, function, &vaf);
2269
1da177e4 2270 va_end(args);
1da177e4
LT
2271}
2272
cb00ea35 2273static void udf_put_super(struct super_block *sb)
1da177e4 2274{
6c79e987 2275 struct udf_sb_info *sbi;
1da177e4 2276
6c79e987 2277 sbi = UDF_SB(sb);
6cfd0148 2278
0d454e4a 2279 iput(sbi->s_vat_inode);
1da177e4 2280 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
6c79e987 2281 unload_nls(sbi->s_nls_map);
bc98a42c 2282 if (!sb_rdonly(sb))
1da177e4 2283 udf_close_lvid(sb);
6c79e987 2284 brelse(sbi->s_lvid_bh);
bff943af 2285 udf_sb_free_partitions(sb);
bbe48dd8 2286 mutex_destroy(&sbi->s_alloc_mutex);
1da177e4
LT
2287 kfree(sb->s_fs_info);
2288 sb->s_fs_info = NULL;
2289}
2290
146bca72
JK
2291static int udf_sync_fs(struct super_block *sb, int wait)
2292{
2293 struct udf_sb_info *sbi = UDF_SB(sb);
2294
2295 mutex_lock(&sbi->s_alloc_mutex);
2296 if (sbi->s_lvid_dirty) {
2297 /*
2298 * Blockdevice will be synced later so we don't have to submit
2299 * the buffer for IO
2300 */
2301 mark_buffer_dirty(sbi->s_lvid_bh);
146bca72
JK
2302 sbi->s_lvid_dirty = 0;
2303 }
2304 mutex_unlock(&sbi->s_alloc_mutex);
2305
2306 return 0;
2307}
2308
cb00ea35 2309static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4 2310{
726c3342 2311 struct super_block *sb = dentry->d_sb;
6c79e987
MS
2312 struct udf_sb_info *sbi = UDF_SB(sb);
2313 struct logicalVolIntegrityDescImpUse *lvidiu;
557f5a14 2314 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
6c79e987 2315
69d75671 2316 lvidiu = udf_sb_lvidiu(sb);
1da177e4
LT
2317 buf->f_type = UDF_SUPER_MAGIC;
2318 buf->f_bsize = sb->s_blocksize;
6c79e987 2319 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
1da177e4
LT
2320 buf->f_bfree = udf_count_free(sb);
2321 buf->f_bavail = buf->f_bfree;
6c79e987
MS
2322 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2323 le32_to_cpu(lvidiu->numDirs)) : 0)
2324 + buf->f_bfree;
1da177e4 2325 buf->f_ffree = buf->f_bfree;
9fba7056 2326 buf->f_namelen = UDF_NAME_LEN;
557f5a14
CL
2327 buf->f_fsid.val[0] = (u32)id;
2328 buf->f_fsid.val[1] = (u32)(id >> 32);
1da177e4
LT
2329
2330 return 0;
2331}
2332
4b11111a
MS
2333static unsigned int udf_count_free_bitmap(struct super_block *sb,
2334 struct udf_bitmap *bitmap)
1da177e4
LT
2335{
2336 struct buffer_head *bh = NULL;
2337 unsigned int accum = 0;
2338 int index;
b490bdd6 2339 udf_pblk_t block = 0, newblock;
5ca4e4be 2340 struct kernel_lb_addr loc;
1da177e4 2341 uint32_t bytes;
1da177e4
LT
2342 uint8_t *ptr;
2343 uint16_t ident;
2344 struct spaceBitmapDesc *bm;
2345
1da177e4 2346 loc.logicalBlockNum = bitmap->s_extPosition;
6c79e987 2347 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
97e961fd 2348 bh = udf_read_ptagged(sb, &loc, 0, &ident);
1da177e4 2349
cb00ea35 2350 if (!bh) {
78ace70c 2351 udf_err(sb, "udf_count_free failed\n");
1da177e4 2352 goto out;
cb00ea35 2353 } else if (ident != TAG_IDENT_SBD) {
3bf25cb4 2354 brelse(bh);
78ace70c 2355 udf_err(sb, "udf_count_free failed\n");
1da177e4
LT
2356 goto out;
2357 }
2358
2359 bm = (struct spaceBitmapDesc *)bh->b_data;
2360 bytes = le32_to_cpu(bm->numOfBytes);
28de7948
CG
2361 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2362 ptr = (uint8_t *)bh->b_data;
1da177e4 2363
cb00ea35 2364 while (bytes > 0) {
01b954a3
MS
2365 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2366 accum += bitmap_weight((const unsigned long *)(ptr + index),
2367 cur_bytes * 8);
2368 bytes -= cur_bytes;
cb00ea35 2369 if (bytes) {
3bf25cb4 2370 brelse(bh);
97e961fd 2371 newblock = udf_get_lb_pblock(sb, &loc, ++block);
1da177e4 2372 bh = udf_tread(sb, newblock);
cb00ea35 2373 if (!bh) {
1da177e4
LT
2374 udf_debug("read failed\n");
2375 goto out;
2376 }
2377 index = 0;
28de7948 2378 ptr = (uint8_t *)bh->b_data;
1da177e4
LT
2379 }
2380 }
3bf25cb4 2381 brelse(bh);
28de7948 2382out:
1da177e4
LT
2383 return accum;
2384}
2385
4b11111a
MS
2386static unsigned int udf_count_free_table(struct super_block *sb,
2387 struct inode *table)
1da177e4
LT
2388{
2389 unsigned int accum = 0;
ff116fc8 2390 uint32_t elen;
5ca4e4be 2391 struct kernel_lb_addr eloc;
1da177e4 2392 int8_t etype;
ff116fc8 2393 struct extent_position epos;
1da177e4 2394
d1668fe3 2395 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
c0b34438 2396 epos.block = UDF_I(table)->i_location;
ff116fc8
JK
2397 epos.offset = sizeof(struct unallocSpaceEntry);
2398 epos.bh = NULL;
1da177e4 2399
3a71fc5d 2400 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
1da177e4 2401 accum += (elen >> table->i_sb->s_blocksize_bits);
3a71fc5d 2402
3bf25cb4 2403 brelse(epos.bh);
d1668fe3 2404 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
1da177e4
LT
2405
2406 return accum;
2407}
cb00ea35
CG
2408
2409static unsigned int udf_count_free(struct super_block *sb)
1da177e4
LT
2410{
2411 unsigned int accum = 0;
6c79e987
MS
2412 struct udf_sb_info *sbi;
2413 struct udf_part_map *map;
1da177e4 2414
6c79e987
MS
2415 sbi = UDF_SB(sb);
2416 if (sbi->s_lvid_bh) {
4b11111a
MS
2417 struct logicalVolIntegrityDesc *lvid =
2418 (struct logicalVolIntegrityDesc *)
2419 sbi->s_lvid_bh->b_data;
6c79e987 2420 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
4b11111a
MS
2421 accum = le32_to_cpu(
2422 lvid->freeSpaceTable[sbi->s_partition]);
1da177e4
LT
2423 if (accum == 0xFFFFFFFF)
2424 accum = 0;
2425 }
2426 }
2427
2428 if (accum)
2429 return accum;
2430
6c79e987
MS
2431 map = &sbi->s_partmaps[sbi->s_partition];
2432 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
28de7948 2433 accum += udf_count_free_bitmap(sb,
6c79e987 2434 map->s_uspace.s_bitmap);
1da177e4 2435 }
6c79e987 2436 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
28de7948 2437 accum += udf_count_free_bitmap(sb,
6c79e987 2438 map->s_fspace.s_bitmap);
1da177e4
LT
2439 }
2440 if (accum)
2441 return accum;
2442
6c79e987 2443 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
28de7948 2444 accum += udf_count_free_table(sb,
6c79e987 2445 map->s_uspace.s_table);
1da177e4 2446 }
6c79e987 2447 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
28de7948 2448 accum += udf_count_free_table(sb,
6c79e987 2449 map->s_fspace.s_table);
1da177e4
LT
2450 }
2451
2452 return accum;
2453}
54bb60d5
FF
2454
2455MODULE_AUTHOR("Ben Fennema");
2456MODULE_DESCRIPTION("Universal Disk Format Filesystem");
2457MODULE_LICENSE("GPL");
2458module_init(init_udf_fs)
2459module_exit(exit_udf_fs)