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