super.c 66.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*
 * super.c
 *
 * PURPOSE
 *  Super block routines for the OSTA-UDF(tm) filesystem.
 *
 * DESCRIPTION
 *  OSTA-UDF(tm) = Optical Storage Technology Association
 *  Universal Disk Format.
 *
 *  This code is based on version 2.00 of the UDF specification,
 *  and revision 3 of the ECMA 167 standard [equivalent to ISO 13346].
 *    http://www.osta.org/
 *    http://www.ecma.ch/
 *    http://www.iso.org/
 *
 * COPYRIGHT
 *  This file is distributed under the terms of the GNU General Public
 *  License (GPL). Copies of the GPL can be obtained from:
 *    ftp://prep.ai.mit.edu/pub/gnu/GPL
 *  Each contributing author retains all rights to their own work.
 *
 *  (C) 1998 Dave Boynton
 *  (C) 1998-2004 Ben Fennema
 *  (C) 2000 Stelias Computing Inc
 *
 * HISTORY
 *
 *  09/24/98 dgb  changed to allow compiling outside of kernel, and
 *                added some debugging.
 *  10/01/98 dgb  updated to allow (some) possibility of compiling w/2.0.34
 *  10/16/98      attempting some multi-session support
 *  10/17/98      added freespace count for "df"
 *  11/11/98 gr   added novrs option
 *  11/26/98 dgb  added fileset,anchor mount options
36 37
 *  12/06/98 blf  really hosed things royally. vat/sparing support. sequenced
 *                vol descs. rewrote option handling based on isofs
L
Linus Torvalds 已提交
38 39 40
 *  12/20/98      find the free space bitmap (if it exists)
 */

41
#include "udfdecl.h"
L
Linus Torvalds 已提交
42 43 44 45 46 47 48 49 50 51 52

#include <linux/blkdev.h>
#include <linux/slab.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/parser.h>
#include <linux/stat.h>
#include <linux/cdrom.h>
#include <linux/nls.h>
#include <linux/vfs.h>
#include <linux/vmalloc.h>
53
#include <linux/errno.h>
M
Miklos Szeredi 已提交
54 55
#include <linux/mount.h>
#include <linux/seq_file.h>
56
#include <linux/bitmap.h>
57
#include <linux/crc-itu-t.h>
J
Jan Kara 已提交
58
#include <linux/log2.h>
L
Linus Torvalds 已提交
59 60 61 62 63 64
#include <asm/byteorder.h>

#include "udf_sb.h"
#include "udf_i.h"

#include <linux/init.h>
F
Fabian Frederick 已提交
65
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
66

67 68 69 70 71 72 73
enum {
	VDS_POS_PRIMARY_VOL_DESC,
	VDS_POS_UNALLOC_SPACE_DESC,
	VDS_POS_LOGICAL_VOL_DESC,
	VDS_POS_IMP_USE_VOL_DESC,
	VDS_POS_LENGTH
};
L
Linus Torvalds 已提交
74

75 76 77
#define VSD_FIRST_SECTOR_OFFSET		32768
#define VSD_MAX_SECTOR_OFFSET		0x800000

78 79 80 81 82 83 84 85 86
/*
 * Maximum number of Terminating Descriptor / Logical Volume Integrity
 * Descriptor redirections. The chosen numbers are arbitrary - just that we
 * hopefully don't limit any real use of rewritten inode on write-once media
 * but avoid looping for too long on corrupted media.
 */
#define UDF_MAX_TD_NESTING 64
#define UDF_MAX_LVID_NESTING 1000

87 88
enum { UDF_MAX_LINKS = 0xffff };

L
Linus Torvalds 已提交
89 90 91
/* These are the "meat" - everything else is stuffing */
static int udf_fill_super(struct super_block *, void *, int);
static void udf_put_super(struct super_block *);
92
static int udf_sync_fs(struct super_block *, int);
L
Linus Torvalds 已提交
93
static int udf_remount_fs(struct super_block *, int *, char *);
94
static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
L
Linus Torvalds 已提交
95 96 97
static void udf_open_lvid(struct super_block *);
static void udf_close_lvid(struct super_block *);
static unsigned int udf_count_free(struct super_block *);
98
static int udf_statfs(struct dentry *, struct kstatfs *);
99
static int udf_show_options(struct seq_file *, struct dentry *);
L
Linus Torvalds 已提交
100

J
Jan Kara 已提交
101
struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct super_block *sb)
M
Marcin Slusarz 已提交
102
{
J
Jan Kara 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
	struct logicalVolIntegrityDesc *lvid;
	unsigned int partnum;
	unsigned int offset;

	if (!UDF_SB(sb)->s_lvid_bh)
		return NULL;
	lvid = (struct logicalVolIntegrityDesc *)UDF_SB(sb)->s_lvid_bh->b_data;
	partnum = le32_to_cpu(lvid->numOfPartitions);
	if ((sb->s_blocksize - sizeof(struct logicalVolIntegrityDescImpUse) -
	     offsetof(struct logicalVolIntegrityDesc, impUse)) /
	     (2 * sizeof(uint32_t)) < partnum) {
		udf_err(sb, "Logical volume integrity descriptor corrupted "
			"(numOfPartitions = %u)!\n", partnum);
		return NULL;
	}
	/* The offset is to skip freeSpaceTable and sizeTable arrays */
	offset = partnum * 2 * sizeof(uint32_t);
M
Marcin Slusarz 已提交
120 121 122
	return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
}

L
Linus Torvalds 已提交
123
/* UDF filesystem type */
A
Al Viro 已提交
124 125
static struct dentry *udf_mount(struct file_system_type *fs_type,
		      int flags, const char *dev_name, void *data)
L
Linus Torvalds 已提交
126
{
A
Al Viro 已提交
127
	return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
L
Linus Torvalds 已提交
128 129 130
}

static struct file_system_type udf_fstype = {
131 132
	.owner		= THIS_MODULE,
	.name		= "udf",
A
Al Viro 已提交
133
	.mount		= udf_mount,
134 135
	.kill_sb	= kill_block_super,
	.fs_flags	= FS_REQUIRES_DEV,
L
Linus Torvalds 已提交
136
};
137
MODULE_ALIAS_FS("udf");
L
Linus Torvalds 已提交
138

139
static struct kmem_cache *udf_inode_cachep;
L
Linus Torvalds 已提交
140 141 142 143

static struct inode *udf_alloc_inode(struct super_block *sb)
{
	struct udf_inode_info *ei;
144
	ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
L
Linus Torvalds 已提交
145 146
	if (!ei)
		return NULL;
147 148 149

	ei->i_unique = 0;
	ei->i_lenExtents = 0;
150
	ei->i_lenStreams = 0;
151 152 153
	ei->i_next_alloc_block = 0;
	ei->i_next_alloc_goal = 0;
	ei->i_strat4096 = 0;
154
	ei->i_streamdir = 0;
155
	init_rwsem(&ei->i_data_sem);
156 157
	ei->cached_extent.lstart = -1;
	spin_lock_init(&ei->i_extent_cache_lock);
158

L
Linus Torvalds 已提交
159 160 161
	return &ei->vfs_inode;
}

A
Al Viro 已提交
162
static void udf_free_in_core_inode(struct inode *inode)
L
Linus Torvalds 已提交
163 164 165 166
{
	kmem_cache_free(udf_inode_cachep, UDF_I(inode));
}

167
static void init_once(void *foo)
L
Linus Torvalds 已提交
168
{
169
	struct udf_inode_info *ei = (struct udf_inode_info *)foo;
L
Linus Torvalds 已提交
170

C
Christoph Lameter 已提交
171 172
	ei->i_ext.i_data = NULL;
	inode_init_once(&ei->vfs_inode);
L
Linus Torvalds 已提交
173 174
}

175
static int __init init_inodecache(void)
L
Linus Torvalds 已提交
176 177 178
{
	udf_inode_cachep = kmem_cache_create("udf_inode_cache",
					     sizeof(struct udf_inode_info),
179
					     0, (SLAB_RECLAIM_ACCOUNT |
180 181
						 SLAB_MEM_SPREAD |
						 SLAB_ACCOUNT),
182
					     init_once);
183
	if (!udf_inode_cachep)
L
Linus Torvalds 已提交
184 185 186 187 188 189
		return -ENOMEM;
	return 0;
}

static void destroy_inodecache(void)
{
190 191 192 193 194
	/*
	 * Make sure all delayed rcu free inodes are flushed before we
	 * destroy cache.
	 */
	rcu_barrier();
195
	kmem_cache_destroy(udf_inode_cachep);
L
Linus Torvalds 已提交
196 197 198
}

/* Superblock operations */
199
static const struct super_operations udf_sb_ops = {
200
	.alloc_inode	= udf_alloc_inode,
A
Al Viro 已提交
201
	.free_inode	= udf_free_in_core_inode,
202
	.write_inode	= udf_write_inode,
A
Al Viro 已提交
203
	.evict_inode	= udf_evict_inode,
204
	.put_super	= udf_put_super,
205
	.sync_fs	= udf_sync_fs,
206 207
	.statfs		= udf_statfs,
	.remount_fs	= udf_remount_fs,
M
Miklos Szeredi 已提交
208
	.show_options	= udf_show_options,
L
Linus Torvalds 已提交
209 210
};

211
struct udf_options {
L
Linus Torvalds 已提交
212 213 214 215 216 217
	unsigned char novrs;
	unsigned int blocksize;
	unsigned int session;
	unsigned int lastblock;
	unsigned int anchor;
	unsigned int flags;
A
Al Viro 已提交
218
	umode_t umask;
219 220
	kgid_t gid;
	kuid_t uid;
A
Al Viro 已提交
221 222
	umode_t fmode;
	umode_t dmode;
L
Linus Torvalds 已提交
223 224 225 226 227 228
	struct nls_table *nls_map;
};

static int __init init_udf_fs(void)
{
	int err;
229

L
Linus Torvalds 已提交
230 231 232 233 234 235
	err = init_inodecache();
	if (err)
		goto out1;
	err = register_filesystem(&udf_fstype);
	if (err)
		goto out;
236

L
Linus Torvalds 已提交
237
	return 0;
238 239

out:
L
Linus Torvalds 已提交
240
	destroy_inodecache();
241 242

out1:
L
Linus Torvalds 已提交
243 244 245 246 247 248 249 250 251
	return err;
}

static void __exit exit_udf_fs(void)
{
	unregister_filesystem(&udf_fstype);
	destroy_inodecache();
}

252 253 254 255
static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
{
	struct udf_sb_info *sbi = UDF_SB(sb);

256
	sbi->s_partmaps = kcalloc(count, sizeof(*sbi->s_partmaps), GFP_KERNEL);
257 258 259 260 261 262 263 264 265
	if (!sbi->s_partmaps) {
		sbi->s_partitions = 0;
		return -ENOMEM;
	}

	sbi->s_partitions = count;
	return 0;
}

J
Jan Kara 已提交
266 267 268 269 270 271
static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
{
	int i;
	int nr_groups = bitmap->s_nr_groups;

	for (i = 0; i < nr_groups; i++)
272
		brelse(bitmap->s_block_bitmap[i]);
J
Jan Kara 已提交
273

274
	kvfree(bitmap);
J
Jan Kara 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
}

static void udf_free_partition(struct udf_part_map *map)
{
	int i;
	struct udf_meta_data *mdata;

	if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
		iput(map->s_uspace.s_table);
	if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
		udf_sb_free_bitmap(map->s_uspace.s_bitmap);
	if (map->s_partition_type == UDF_SPARABLE_MAP15)
		for (i = 0; i < 4; i++)
			brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
	else if (map->s_partition_type == UDF_METADATA_MAP25) {
		mdata = &map->s_type_specific.s_metadata;
		iput(mdata->s_metadata_fe);
		mdata->s_metadata_fe = NULL;

		iput(mdata->s_mirror_fe);
		mdata->s_mirror_fe = NULL;

		iput(mdata->s_bitmap_fe);
		mdata->s_bitmap_fe = NULL;
	}
}

static void udf_sb_free_partitions(struct super_block *sb)
{
	struct udf_sb_info *sbi = UDF_SB(sb);
	int i;
306 307

	if (!sbi->s_partmaps)
308
		return;
J
Jan Kara 已提交
309 310 311 312 313 314
	for (i = 0; i < sbi->s_partitions; i++)
		udf_free_partition(&sbi->s_partmaps[i]);
	kfree(sbi->s_partmaps);
	sbi->s_partmaps = NULL;
}

315
static int udf_show_options(struct seq_file *seq, struct dentry *root)
M
Miklos Szeredi 已提交
316
{
317
	struct super_block *sb = root->d_sb;
M
Miklos Szeredi 已提交
318 319 320 321
	struct udf_sb_info *sbi = UDF_SB(sb);

	if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
		seq_puts(seq, ",nostrict");
C
Clemens Ladisch 已提交
322
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
M
Miklos Szeredi 已提交
323 324 325 326 327 328 329 330 331 332 333 334 335 336
		seq_printf(seq, ",bs=%lu", sb->s_blocksize);
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
		seq_puts(seq, ",unhide");
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
		seq_puts(seq, ",undelete");
	if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
		seq_puts(seq, ",noadinicb");
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
		seq_puts(seq, ",shortad");
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
		seq_puts(seq, ",uid=forget");
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
		seq_puts(seq, ",gid=forget");
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
337
		seq_printf(seq, ",uid=%u", from_kuid(&init_user_ns, sbi->s_uid));
M
Miklos Szeredi 已提交
338
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
339
		seq_printf(seq, ",gid=%u", from_kgid(&init_user_ns, sbi->s_gid));
M
Miklos Szeredi 已提交
340
	if (sbi->s_umask != 0)
A
Al Viro 已提交
341
		seq_printf(seq, ",umask=%ho", sbi->s_umask);
342
	if (sbi->s_fmode != UDF_INVALID_MODE)
A
Al Viro 已提交
343
		seq_printf(seq, ",mode=%ho", sbi->s_fmode);
344
	if (sbi->s_dmode != UDF_INVALID_MODE)
A
Al Viro 已提交
345
		seq_printf(seq, ",dmode=%ho", sbi->s_dmode);
M
Miklos Szeredi 已提交
346
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
347
		seq_printf(seq, ",session=%d", sbi->s_session);
M
Miklos Szeredi 已提交
348 349
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
		seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
J
Jan Kara 已提交
350 351
	if (sbi->s_anchor != 0)
		seq_printf(seq, ",anchor=%u", sbi->s_anchor);
M
Miklos Szeredi 已提交
352 353 354 355 356 357 358 359
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
		seq_puts(seq, ",utf8");
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
		seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);

	return 0;
}

L
Linus Torvalds 已提交
360 361 362 363 364 365 366 367 368 369 370
/*
 * udf_parse_options
 *
 * PURPOSE
 *	Parse mount options.
 *
 * DESCRIPTION
 *	The following mount options are supported:
 *
 *	gid=		Set the default group.
 *	umask=		Set the default umask.
371 372
 *	mode=		Set the default file permissions.
 *	dmode=		Set the default directory permissions.
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385
 *	uid=		Set the default user.
 *	bs=		Set the block size.
 *	unhide		Show otherwise hidden files.
 *	undelete	Show deleted files in lists.
 *	adinicb		Embed data in the inode (default)
 *	noadinicb	Don't embed data in the inode
 *	shortad		Use short ad's
 *	longad		Use long ad's (default)
 *	nostrict	Unset strict conformance
 *	iocharset=	Set the NLS character set
 *
 *	The remaining are for debugging and disaster recovery:
 *
386
 *	novrs		Skip volume sequence recognition
L
Linus Torvalds 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
 *
 *	The following expect a offset from 0.
 *
 *	session=	Set the CDROM session (default= last session)
 *	anchor=		Override standard anchor location. (default= 256)
 *	volume=		Override the VolumeDesc location. (unused)
 *	partition=	Override the PartitionDesc location. (unused)
 *	lastblock=	Set the last block of the filesystem/
 *
 *	The following expect a offset from the partition root.
 *
 *	fileset=	Override the fileset block location. (unused)
 *	rootdir=	Override the root directory location. (unused)
 *		WARNING: overriding the rootdir to a non-directory may
 *		yield highly unpredictable results.
 *
 * PRE-CONDITIONS
 *	options		Pointer to mount options string.
 *	uopts		Pointer to mount options variable.
 *
 * POST-CONDITIONS
 *	<return>	1	Mount options parsed okay.
 *	<return>	0	Error parsing mount options.
 *
 * HISTORY
 *	July 1, 1997 - Andrew E. Mileski
 *	Written, tested, and released.
 */
415

L
Linus Torvalds 已提交
416 417 418 419 420 421
enum {
	Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
	Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
	Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
	Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
	Opt_rootdir, Opt_utf8, Opt_iocharset,
422 423
	Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
	Opt_fmode, Opt_dmode
L
Linus Torvalds 已提交
424 425
};

426
static const match_table_t tokens = {
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
	{Opt_novrs,	"novrs"},
	{Opt_nostrict,	"nostrict"},
	{Opt_bs,	"bs=%u"},
	{Opt_unhide,	"unhide"},
	{Opt_undelete,	"undelete"},
	{Opt_noadinicb,	"noadinicb"},
	{Opt_adinicb,	"adinicb"},
	{Opt_shortad,	"shortad"},
	{Opt_longad,	"longad"},
	{Opt_uforget,	"uid=forget"},
	{Opt_uignore,	"uid=ignore"},
	{Opt_gforget,	"gid=forget"},
	{Opt_gignore,	"gid=ignore"},
	{Opt_gid,	"gid=%u"},
	{Opt_uid,	"uid=%u"},
	{Opt_umask,	"umask=%o"},
	{Opt_session,	"session=%u"},
	{Opt_lastblock,	"lastblock=%u"},
	{Opt_anchor,	"anchor=%u"},
	{Opt_volume,	"volume=%u"},
	{Opt_partition,	"partition=%u"},
	{Opt_fileset,	"fileset=%u"},
	{Opt_rootdir,	"rootdir=%u"},
	{Opt_utf8,	"utf8"},
	{Opt_iocharset,	"iocharset=%s"},
452 453
	{Opt_fmode,     "mode=%o"},
	{Opt_dmode,     "dmode=%o"},
454
	{Opt_err,	NULL}
L
Linus Torvalds 已提交
455 456
};

M
Miklos Szeredi 已提交
457 458
static int udf_parse_options(char *options, struct udf_options *uopt,
			     bool remount)
L
Linus Torvalds 已提交
459 460 461 462 463 464 465 466 467 468 469 470
{
	char *p;
	int option;

	uopt->novrs = 0;
	uopt->session = 0xFFFFFFFF;
	uopt->lastblock = 0;
	uopt->anchor = 0;

	if (!options)
		return 1;

471
	while ((p = strsep(&options, ",")) != NULL) {
L
Linus Torvalds 已提交
472 473
		substring_t args[MAX_OPT_ARGS];
		int token;
474
		unsigned n;
L
Linus Torvalds 已提交
475 476 477 478
		if (!*p)
			continue;

		token = match_token(p, tokens, args);
479 480 481
		switch (token) {
		case Opt_novrs:
			uopt->novrs = 1;
C
Clemens Ladisch 已提交
482
			break;
483 484 485
		case Opt_bs:
			if (match_int(&args[0], &option))
				return 0;
486 487 488 489
			n = option;
			if (n != 512 && n != 1024 && n != 2048 && n != 4096)
				return 0;
			uopt->blocksize = n;
C
Clemens Ladisch 已提交
490
			uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
			break;
		case Opt_unhide:
			uopt->flags |= (1 << UDF_FLAG_UNHIDE);
			break;
		case Opt_undelete:
			uopt->flags |= (1 << UDF_FLAG_UNDELETE);
			break;
		case Opt_noadinicb:
			uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
			break;
		case Opt_adinicb:
			uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
			break;
		case Opt_shortad:
			uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
			break;
		case Opt_longad:
			uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
			break;
		case Opt_gid:
			if (match_int(args, &option))
				return 0;
513 514 515
			uopt->gid = make_kgid(current_user_ns(), option);
			if (!gid_valid(uopt->gid))
				return 0;
516
			uopt->flags |= (1 << UDF_FLAG_GID_SET);
517 518 519 520
			break;
		case Opt_uid:
			if (match_int(args, &option))
				return 0;
521 522 523
			uopt->uid = make_kuid(current_user_ns(), option);
			if (!uid_valid(uopt->uid))
				return 0;
524
			uopt->flags |= (1 << UDF_FLAG_UID_SET);
525 526 527 528 529 530 531 532 533 534 535 536 537
			break;
		case Opt_umask:
			if (match_octal(args, &option))
				return 0;
			uopt->umask = option;
			break;
		case Opt_nostrict:
			uopt->flags &= ~(1 << UDF_FLAG_STRICT);
			break;
		case Opt_session:
			if (match_int(args, &option))
				return 0;
			uopt->session = option;
M
Miklos Szeredi 已提交
538 539
			if (!remount)
				uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
540 541 542 543 544
			break;
		case Opt_lastblock:
			if (match_int(args, &option))
				return 0;
			uopt->lastblock = option;
M
Miklos Szeredi 已提交
545 546
			if (!remount)
				uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
547 548 549 550 551 552 553 554 555 556
			break;
		case Opt_anchor:
			if (match_int(args, &option))
				return 0;
			uopt->anchor = option;
			break;
		case Opt_volume:
		case Opt_partition:
		case Opt_fileset:
		case Opt_rootdir:
557
			/* Ignored (never implemented properly) */
558 559 560 561 562
			break;
		case Opt_utf8:
			uopt->flags |= (1 << UDF_FLAG_UTF8);
			break;
		case Opt_iocharset:
563 564 565
			if (!remount) {
				if (uopt->nls_map)
					unload_nls(uopt->nls_map);
566 567 568 569 570
				/*
				 * load_nls() failure is handled later in
				 * udf_fill_super() after all options are
				 * parsed.
				 */
571 572 573
				uopt->nls_map = load_nls(args[0].from);
				uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
			}
574 575 576 577
			break;
		case Opt_uforget:
			uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
			break;
578
		case Opt_uignore:
579
		case Opt_gignore:
580
			/* These options are superseeded by uid=<number> */
581 582 583 584
			break;
		case Opt_gforget:
			uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
			break;
585 586 587 588 589 590 591 592 593 594
		case Opt_fmode:
			if (match_octal(args, &option))
				return 0;
			uopt->fmode = option & 0777;
			break;
		case Opt_dmode:
			if (match_octal(args, &option))
				return 0;
			uopt->dmode = option & 0777;
			break;
595
		default:
J
Joe Perches 已提交
596
			pr_err("bad mount option \"%s\" or missing value\n", p);
L
Linus Torvalds 已提交
597 598 599 600 601 602
			return 0;
		}
	}
	return 1;
}

603
static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
L
Linus Torvalds 已提交
604 605
{
	struct udf_options uopt;
M
Marcin Slusarz 已提交
606
	struct udf_sb_info *sbi = UDF_SB(sb);
607
	int error = 0;
608 609 610

	if (!(*flags & SB_RDONLY) && UDF_QUERY_FLAG(sb, UDF_FLAG_RW_INCOMPAT))
		return -EACCES;
L
Linus Torvalds 已提交
611

612
	sync_filesystem(sb);
613

M
Marcin Slusarz 已提交
614 615 616 617
	uopt.flags = sbi->s_flags;
	uopt.uid   = sbi->s_uid;
	uopt.gid   = sbi->s_gid;
	uopt.umask = sbi->s_umask;
618 619
	uopt.fmode = sbi->s_fmode;
	uopt.dmode = sbi->s_dmode;
620
	uopt.nls_map = NULL;
L
Linus Torvalds 已提交
621

M
Miklos Szeredi 已提交
622
	if (!udf_parse_options(options, &uopt, true))
L
Linus Torvalds 已提交
623 624
		return -EINVAL;

625
	write_lock(&sbi->s_cred_lock);
M
Marcin Slusarz 已提交
626 627 628 629
	sbi->s_flags = uopt.flags;
	sbi->s_uid   = uopt.uid;
	sbi->s_gid   = uopt.gid;
	sbi->s_umask = uopt.umask;
630 631
	sbi->s_fmode = uopt.fmode;
	sbi->s_dmode = uopt.dmode;
632
	write_unlock(&sbi->s_cred_lock);
L
Linus Torvalds 已提交
633

634
	if ((bool)(*flags & SB_RDONLY) == sb_rdonly(sb))
635 636
		goto out_unlock;

637
	if (*flags & SB_RDONLY)
L
Linus Torvalds 已提交
638
		udf_close_lvid(sb);
J
Jan Kara 已提交
639
	else
L
Linus Torvalds 已提交
640 641
		udf_open_lvid(sb);

642 643
out_unlock:
	return error;
L
Linus Torvalds 已提交
644 645
}

646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
/*
 * Check VSD descriptor. Returns -1 in case we are at the end of volume
 * recognition area, 0 if the descriptor is valid but non-interesting, 1 if
 * we found one of NSR descriptors we are looking for.
 */
static int identify_vsd(const struct volStructDesc *vsd)
{
	int ret = 0;

	if (!memcmp(vsd->stdIdent, VSD_STD_ID_CD001, VSD_STD_ID_LEN)) {
		switch (vsd->structType) {
		case 0:
			udf_debug("ISO9660 Boot Record found\n");
			break;
		case 1:
			udf_debug("ISO9660 Primary Volume Descriptor found\n");
			break;
		case 2:
			udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
			break;
		case 3:
			udf_debug("ISO9660 Volume Partition Descriptor found\n");
			break;
		case 255:
			udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
			break;
		default:
			udf_debug("ISO9660 VRS (%u) found\n", vsd->structType);
			break;
		}
	} else if (!memcmp(vsd->stdIdent, VSD_STD_ID_BEA01, VSD_STD_ID_LEN))
		; /* ret = 0 */
	else if (!memcmp(vsd->stdIdent, VSD_STD_ID_NSR02, VSD_STD_ID_LEN))
		ret = 1;
	else if (!memcmp(vsd->stdIdent, VSD_STD_ID_NSR03, VSD_STD_ID_LEN))
		ret = 1;
	else if (!memcmp(vsd->stdIdent, VSD_STD_ID_BOOT2, VSD_STD_ID_LEN))
		; /* ret = 0 */
	else if (!memcmp(vsd->stdIdent, VSD_STD_ID_CDW02, VSD_STD_ID_LEN))
		; /* ret = 0 */
	else {
		/* TEA01 or invalid id : end of volume recognition area */
		ret = -1;
	}

	return ret;
}

/*
 * Check Volume Structure Descriptors (ECMA 167 2/9.1)
 * We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1)
 * @return   1 if NSR02 or NSR03 found,
 *	    -1 if first sector read error, 0 otherwise
 */
static int udf_check_vsd(struct super_block *sb)
L
Linus Torvalds 已提交
701 702
{
	struct volStructDesc *vsd = NULL;
703
	loff_t sector = VSD_FIRST_SECTOR_OFFSET;
L
Linus Torvalds 已提交
704 705
	int sectorsize;
	struct buffer_head *bh = NULL;
706
	int nsr = 0;
M
Marcin Slusarz 已提交
707
	struct udf_sb_info *sbi;
L
Linus Torvalds 已提交
708

M
Marcin Slusarz 已提交
709
	sbi = UDF_SB(sb);
L
Linus Torvalds 已提交
710 711 712 713 714
	if (sb->s_blocksize < sizeof(struct volStructDesc))
		sectorsize = sizeof(struct volStructDesc);
	else
		sectorsize = sb->s_blocksize;

715
	sector += (((loff_t)sbi->s_session) << sb->s_blocksize_bits);
L
Linus Torvalds 已提交
716

717
	udf_debug("Starting at sector %u (%lu byte sectors)\n",
718 719
		  (unsigned int)(sector >> sb->s_blocksize_bits),
		  sb->s_blocksize);
720 721 722 723 724 725 726 727 728 729
	/* Process the sequence (if applicable). The hard limit on the sector
	 * offset is arbitrary, hopefully large enough so that all valid UDF
	 * filesystems will be recognised. There is no mention of an upper
	 * bound to the size of the volume recognition area in the standard.
	 *  The limit will prevent the code to read all the sectors of a
	 * specially crafted image (like a bluray disc full of CD001 sectors),
	 * potentially causing minutes or even hours of uninterruptible I/O
	 * activity. This actually happened with uninitialised SSD partitions
	 * (all 0xFF) before the check for the limit and all valid IDs were
	 * added */
730
	for (; !nsr && sector < VSD_MAX_SECTOR_OFFSET; sector += sectorsize) {
L
Linus Torvalds 已提交
731 732 733 734 735 736
		/* Read a block */
		bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
		if (!bh)
			break;

		vsd = (struct volStructDesc *)(bh->b_data +
737
					      (sector & (sb->s_blocksize - 1)));
738
		nsr = identify_vsd(vsd);
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754
		/* Found NSR or end? */
		if (nsr) {
			brelse(bh);
			break;
		}
		/*
		 * Special handling for improperly formatted VRS (e.g., Win10)
		 * where components are separated by 2048 bytes even though
		 * sectors are 4K
		 */
		if (sb->s_blocksize == 4096) {
			nsr = identify_vsd(vsd + 1);
			/* Ignore unknown IDs... */
			if (nsr < 0)
				nsr = 0;
		}
J
Jan Kara 已提交
755
		brelse(bh);
L
Linus Torvalds 已提交
756 757
	}

758 759
	if (nsr > 0)
		return 1;
760 761
	else if (!bh && sector - (sbi->s_session << sb->s_blocksize_bits) ==
			VSD_FIRST_SECTOR_OFFSET)
L
Linus Torvalds 已提交
762 763 764 765 766
		return -1;
	else
		return 0;
}

767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
static int udf_verify_domain_identifier(struct super_block *sb,
					struct regid *ident, char *dname)
{
	struct domainEntityIDSuffix *suffix;

	if (memcmp(ident->ident, UDF_ID_COMPLIANT, strlen(UDF_ID_COMPLIANT))) {
		udf_warn(sb, "Not OSTA UDF compliant %s descriptor.\n", dname);
		goto force_ro;
	}
	if (ident->flags & (1 << ENTITYID_FLAGS_DIRTY)) {
		udf_warn(sb, "Possibly not OSTA UDF compliant %s descriptor.\n",
			 dname);
		goto force_ro;
	}
	suffix = (struct domainEntityIDSuffix *)ident->identSuffix;
	if (suffix->flags & (1 << ENTITYIDSUFFIX_FLAGS_HARDWRITEPROTECT) ||
	    suffix->flags & (1 << ENTITYIDSUFFIX_FLAGS_SOFTWRITEPROTECT)) {
		if (!sb_rdonly(sb)) {
			udf_warn(sb, "Descriptor for %s marked write protected."
				 " Forcing read only mount.\n", dname);
		}
		goto force_ro;
	}
	return 0;

force_ro:
	if (!sb_rdonly(sb))
		return -EACCES;
	UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
	return 0;
}

static int udf_load_fileset(struct super_block *sb, struct fileSetDesc *fset,
			    struct kernel_lb_addr *root)
{
	int ret;

	ret = udf_verify_domain_identifier(sb, &fset->domainIdent, "file set");
	if (ret < 0)
		return ret;

	*root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
	UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);

	udf_debug("Rootdir at block=%u, partition=%u\n",
		  root->logicalBlockNum, root->partitionReferenceNum);
	return 0;
}

816
static int udf_find_fileset(struct super_block *sb,
817 818
			    struct kernel_lb_addr *fileset,
			    struct kernel_lb_addr *root)
L
Linus Torvalds 已提交
819 820 821
{
	struct buffer_head *bh = NULL;
	uint16_t ident;
J
Jan Kara 已提交
822
	int ret;
L
Linus Torvalds 已提交
823

J
Jan Kara 已提交
824 825 826
	if (fileset->logicalBlockNum == 0xFFFFFFFF &&
	    fileset->partitionReferenceNum == 0xFFFF)
		return -EINVAL;
L
Linus Torvalds 已提交
827

J
Jan Kara 已提交
828 829 830 831
	bh = udf_read_ptagged(sb, fileset, 0, &ident);
	if (!bh)
		return -EIO;
	if (ident != TAG_IDENT_FSD) {
J
Jan Kara 已提交
832
		brelse(bh);
J
Jan Kara 已提交
833
		return -EINVAL;
L
Linus Torvalds 已提交
834
	}
J
Jan Kara 已提交
835 836 837 838 839 840 841 842

	udf_debug("Fileset at block=%u, partition=%u\n",
		  fileset->logicalBlockNum, fileset->partitionReferenceNum);

	UDF_SB(sb)->s_partition = fileset->partitionReferenceNum;
	ret = udf_load_fileset(sb, (struct fileSetDesc *)bh->b_data, root);
	brelse(bh);
	return ret;
L
Linus Torvalds 已提交
843 844
}

845 846 847 848 849 850
/*
 * Load primary Volume Descriptor Sequence
 *
 * Return <0 on error, 0 on success. -EAGAIN is special meaning next sequence
 * should be tried.
 */
851
static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
L
Linus Torvalds 已提交
852 853
{
	struct primaryVolDesc *pvoldesc;
854
	uint8_t *outstr;
855 856
	struct buffer_head *bh;
	uint16_t ident;
857
	int ret = -ENOMEM;
858
	struct timestamp *ts;
859

860
	outstr = kmalloc(128, GFP_NOFS);
861
	if (!outstr)
862
		return -ENOMEM;
863 864

	bh = udf_read_tagged(sb, block, block, &ident);
865 866
	if (!bh) {
		ret = -EAGAIN;
867
		goto out2;
868
	}
869

870 871 872 873
	if (ident != TAG_IDENT_PVD) {
		ret = -EIO;
		goto out_bh;
	}
L
Linus Torvalds 已提交
874 875 876

	pvoldesc = (struct primaryVolDesc *)bh->b_data;

877 878 879 880 881 882
	udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
			      pvoldesc->recordingDateAndTime);
	ts = &pvoldesc->recordingDateAndTime;
	udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
		  le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
		  ts->minute, le16_to_cpu(ts->typeAndTimezone));
L
Linus Torvalds 已提交
883

884
	ret = udf_dstrCS0toChar(sb, outstr, 31, pvoldesc->volIdent, 32);
885 886 887 888 889 890 891
	if (ret < 0) {
		strcpy(UDF_SB(sb)->s_volume_ident, "InvalidName");
		pr_warn("incorrect volume identification, setting to "
			"'InvalidName'\n");
	} else {
		strncpy(UDF_SB(sb)->s_volume_ident, outstr, ret);
	}
892
	udf_debug("volIdent[] = '%s'\n", UDF_SB(sb)->s_volume_ident);
L
Linus Torvalds 已提交
893

894
	ret = udf_dstrCS0toChar(sb, outstr, 127, pvoldesc->volSetIdent, 128);
895 896
	if (ret < 0) {
		ret = 0;
897
		goto out_bh;
898
	}
899 900
	outstr[ret] = 0;
	udf_debug("volSetIdent[] = '%s'\n", outstr);
901

902
	ret = 0;
903 904
out_bh:
	brelse(bh);
905 906 907
out2:
	kfree(outstr);
	return ret;
L
Linus Torvalds 已提交
908 909
}

910
struct inode *udf_find_metadata_inode_efe(struct super_block *sb,
911
					u32 meta_file_loc, u32 partition_ref)
912 913 914 915 916
{
	struct kernel_lb_addr addr;
	struct inode *metadata_fe;

	addr.logicalBlockNum = meta_file_loc;
917
	addr.partitionReferenceNum = partition_ref;
918

J
Jan Kara 已提交
919
	metadata_fe = udf_iget_special(sb, &addr);
920

921
	if (IS_ERR(metadata_fe)) {
922
		udf_warn(sb, "metadata inode efe not found\n");
923 924 925
		return metadata_fe;
	}
	if (UDF_I(metadata_fe)->i_alloc_type != ICBTAG_FLAG_AD_SHORT) {
926 927
		udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
		iput(metadata_fe);
928
		return ERR_PTR(-EIO);
929 930 931 932 933
	}

	return metadata_fe;
}

934 935
static int udf_load_metadata_files(struct super_block *sb, int partition,
				   int type1_index)
936 937 938 939
{
	struct udf_sb_info *sbi = UDF_SB(sb);
	struct udf_part_map *map;
	struct udf_meta_data *mdata;
940
	struct kernel_lb_addr addr;
941
	struct inode *fe;
942 943 944

	map = &sbi->s_partmaps[partition];
	mdata = &map->s_type_specific.s_metadata;
945
	mdata->s_phys_partition_ref = type1_index;
946 947

	/* metadata address */
948
	udf_debug("Metadata file location: block = %u part = %u\n",
949
		  mdata->s_meta_file_loc, mdata->s_phys_partition_ref);
950

951
	fe = udf_find_metadata_inode_efe(sb, mdata->s_meta_file_loc,
952
					 mdata->s_phys_partition_ref);
953
	if (IS_ERR(fe)) {
954
		/* mirror file entry */
955
		udf_debug("Mirror metadata file location: block = %u part = %u\n",
956
			  mdata->s_mirror_file_loc, mdata->s_phys_partition_ref);
957

958
		fe = udf_find_metadata_inode_efe(sb, mdata->s_mirror_file_loc,
959
						 mdata->s_phys_partition_ref);
960

961
		if (IS_ERR(fe)) {
962
			udf_err(sb, "Both metadata and mirror metadata inode efe can not found\n");
963
			return PTR_ERR(fe);
964
		}
965 966 967 968
		mdata->s_mirror_fe = fe;
	} else
		mdata->s_metadata_fe = fe;

969 970 971 972 973 974 975 976

	/*
	 * bitmap file entry
	 * Note:
	 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
	*/
	if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
		addr.logicalBlockNum = mdata->s_bitmap_file_loc;
977
		addr.partitionReferenceNum = mdata->s_phys_partition_ref;
978

979
		udf_debug("Bitmap file location: block = %u part = %u\n",
J
Joe Perches 已提交
980
			  addr.logicalBlockNum, addr.partitionReferenceNum);
981

J
Jan Kara 已提交
982
		fe = udf_iget_special(sb, &addr);
983
		if (IS_ERR(fe)) {
984
			if (sb_rdonly(sb))
J
Joe Perches 已提交
985
				udf_warn(sb, "bitmap inode efe not found but it's ok since the disc is mounted read-only\n");
986
			else {
J
Joe Perches 已提交
987
				udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
988
				return PTR_ERR(fe);
989
			}
990 991
		} else
			mdata->s_bitmap_fe = fe;
992 993 994 995 996 997
	}

	udf_debug("udf_load_metadata_files Ok\n");
	return 0;
}

998 999 1000
int udf_compute_nr_groups(struct super_block *sb, u32 partition)
{
	struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
J
Julia Lawall 已提交
1001 1002 1003
	return DIV_ROUND_UP(map->s_partition_len +
			    (sizeof(struct spaceBitmapDesc) << 3),
			    sb->s_blocksize * 8);
1004 1005
}

1006 1007 1008 1009 1010 1011
static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
{
	struct udf_bitmap *bitmap;
	int nr_groups;
	int size;

1012
	nr_groups = udf_compute_nr_groups(sb, index);
1013 1014 1015 1016
	size = sizeof(struct udf_bitmap) +
		(sizeof(struct buffer_head *) * nr_groups);

	if (size <= PAGE_SIZE)
J
Joe Perches 已提交
1017
		bitmap = kzalloc(size, GFP_KERNEL);
1018
	else
J
Joe Perches 已提交
1019
		bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
1020

1021
	if (!bitmap)
1022 1023 1024 1025 1026 1027
		return NULL;

	bitmap->s_nr_groups = nr_groups;
	return bitmap;
}

J
Jan Kara 已提交
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
static int check_partition_desc(struct super_block *sb,
				struct partitionDesc *p,
				struct udf_part_map *map)
{
	bool umap, utable, fmap, ftable;
	struct partitionHeaderDesc *phd;

	switch (le32_to_cpu(p->accessType)) {
	case PD_ACCESS_TYPE_READ_ONLY:
	case PD_ACCESS_TYPE_WRITE_ONCE:
	case PD_ACCESS_TYPE_REWRITABLE:
	case PD_ACCESS_TYPE_NONE:
		goto force_ro;
	}

	/* No Partition Header Descriptor? */
	if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
	    strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
		goto force_ro;

	phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
	utable = phd->unallocSpaceTable.extLength;
	umap = phd->unallocSpaceBitmap.extLength;
	ftable = phd->freedSpaceTable.extLength;
	fmap = phd->freedSpaceBitmap.extLength;

	/* No allocation info? */
	if (!utable && !umap && !ftable && !fmap)
		goto force_ro;

	/* We don't support blocks that require erasing before overwrite */
	if (ftable || fmap)
		goto force_ro;
	/* UDF 2.60: 2.3.3 - no mixing of tables & bitmaps, no VAT. */
	if (utable && umap)
		goto force_ro;

	if (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
	    map->s_partition_type == UDF_VIRTUAL_MAP20)
		goto force_ro;

	return 0;
force_ro:
	if (!sb_rdonly(sb))
		return -EACCES;
	UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
	return 0;
}

1077 1078
static int udf_fill_partdesc_info(struct super_block *sb,
		struct partitionDesc *p, int p_index)
L
Linus Torvalds 已提交
1079
{
M
Marcin Slusarz 已提交
1080
	struct udf_part_map *map;
M
Marcin Slusarz 已提交
1081
	struct udf_sb_info *sbi = UDF_SB(sb);
1082
	struct partitionHeaderDesc *phd;
J
Jan Kara 已提交
1083
	int err;
M
Marcin Slusarz 已提交
1084

1085
	map = &sbi->s_partmaps[p_index];
M
Marcin Slusarz 已提交
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098

	map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
	map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);

	if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
		map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
	if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
		map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
	if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
		map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
	if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
		map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;

1099
	udf_debug("Partition (%d type %x) starts at physical %u, block length %u\n",
J
Joe Perches 已提交
1100 1101
		  p_index, map->s_partition_type,
		  map->s_partition_root, map->s_partition_len);
M
Marcin Slusarz 已提交
1102

J
Jan Kara 已提交
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
	err = check_partition_desc(sb, p, map);
	if (err)
		return err;

	/*
	 * Skip loading allocation info it we cannot ever write to the fs.
	 * This is a correctness thing as we may have decided to force ro mount
	 * to avoid allocation info we don't support.
	 */
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_RW_INCOMPAT))
1113
		return 0;
M
Marcin Slusarz 已提交
1114 1115 1116

	phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
	if (phd->unallocSpaceTable.extLength) {
1117
		struct kernel_lb_addr loc = {
M
Marcin Slusarz 已提交
1118 1119
			.logicalBlockNum = le32_to_cpu(
				phd->unallocSpaceTable.extPosition),
1120
			.partitionReferenceNum = p_index,
M
Marcin Slusarz 已提交
1121
		};
1122
		struct inode *inode;
M
Marcin Slusarz 已提交
1123

J
Jan Kara 已提交
1124
		inode = udf_iget_special(sb, &loc);
1125
		if (IS_ERR(inode)) {
M
Marcin Slusarz 已提交
1126
			udf_debug("cannot load unallocSpaceTable (part %d)\n",
J
Joe Perches 已提交
1127
				  p_index);
1128
			return PTR_ERR(inode);
M
Marcin Slusarz 已提交
1129
		}
1130
		map->s_uspace.s_table = inode;
M
Marcin Slusarz 已提交
1131
		map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1132
		udf_debug("unallocSpaceTable (part %d) @ %lu\n",
J
Joe Perches 已提交
1133
			  p_index, map->s_uspace.s_table->i_ino);
M
Marcin Slusarz 已提交
1134 1135 1136
	}

	if (phd->unallocSpaceBitmap.extLength) {
1137 1138
		struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
		if (!bitmap)
1139
			return -ENOMEM;
M
Marcin Slusarz 已提交
1140
		map->s_uspace.s_bitmap = bitmap;
J
Jan Kara 已提交
1141
		bitmap->s_extPosition = le32_to_cpu(
M
Marcin Slusarz 已提交
1142
				phd->unallocSpaceBitmap.extPosition);
J
Jan Kara 已提交
1143
		map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
1144
		udf_debug("unallocSpaceBitmap (part %d) @ %u\n",
J
Joe Perches 已提交
1145
			  p_index, bitmap->s_extPosition);
M
Marcin Slusarz 已提交
1146 1147
	}

1148 1149 1150
	return 0;
}

1151 1152
static void udf_find_vat_block(struct super_block *sb, int p_index,
			       int type1_index, sector_t start_block)
1153 1154 1155
{
	struct udf_sb_info *sbi = UDF_SB(sb);
	struct udf_part_map *map = &sbi->s_partmaps[p_index];
1156
	sector_t vat_block;
1157
	struct kernel_lb_addr ino;
1158
	struct inode *inode;
1159 1160 1161 1162 1163 1164 1165 1166

	/*
	 * VAT file entry is in the last recorded block. Some broken disks have
	 * it a few blocks before so try a bit harder...
	 */
	ino.partitionReferenceNum = type1_index;
	for (vat_block = start_block;
	     vat_block >= map->s_partition_root &&
1167
	     vat_block >= start_block - 3; vat_block--) {
1168
		ino.logicalBlockNum = vat_block - map->s_partition_root;
J
Jan Kara 已提交
1169
		inode = udf_iget_special(sb, &ino);
1170 1171 1172 1173
		if (!IS_ERR(inode)) {
			sbi->s_vat_inode = inode;
			break;
		}
1174 1175 1176 1177 1178 1179 1180
	}
}

static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
{
	struct udf_sb_info *sbi = UDF_SB(sb);
	struct udf_part_map *map = &sbi->s_partmaps[p_index];
1181 1182 1183 1184
	struct buffer_head *bh = NULL;
	struct udf_inode_info *vati;
	uint32_t pos;
	struct virtualAllocationTable20 *vat20;
1185 1186
	sector_t blocks = i_size_read(sb->s_bdev->bd_inode) >>
			  sb->s_blocksize_bits;
1187

1188
	udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
1189 1190
	if (!sbi->s_vat_inode &&
	    sbi->s_last_block != blocks - 1) {
J
Joe Perches 已提交
1191 1192 1193
		pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
			  (unsigned long)sbi->s_last_block,
			  (unsigned long)blocks - 1);
1194
		udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
1195
	}
1196
	if (!sbi->s_vat_inode)
1197
		return -EIO;
1198 1199

	if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
1200
		map->s_type_specific.s_virtual.s_start_offset = 0;
1201 1202 1203
		map->s_type_specific.s_virtual.s_num_entries =
			(sbi->s_vat_inode->i_size - 36) >> 2;
	} else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
1204 1205 1206 1207 1208
		vati = UDF_I(sbi->s_vat_inode);
		if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
			pos = udf_block_map(sbi->s_vat_inode, 0);
			bh = sb_bread(sb, pos);
			if (!bh)
1209
				return -EIO;
1210 1211 1212 1213 1214
			vat20 = (struct virtualAllocationTable20 *)bh->b_data;
		} else {
			vat20 = (struct virtualAllocationTable20 *)
							vati->i_ext.i_data;
		}
1215 1216

		map->s_type_specific.s_virtual.s_start_offset =
1217
			le16_to_cpu(vat20->lengthHeader);
1218 1219 1220 1221 1222 1223 1224 1225 1226
		map->s_type_specific.s_virtual.s_num_entries =
			(sbi->s_vat_inode->i_size -
				map->s_type_specific.s_virtual.
					s_start_offset) >> 2;
		brelse(bh);
	}
	return 0;
}

1227 1228 1229 1230 1231 1232
/*
 * Load partition descriptor block
 *
 * Returns <0 on error, 0 on success, -EAGAIN is special - try next descriptor
 * sequence.
 */
1233 1234 1235 1236 1237 1238
static int udf_load_partdesc(struct super_block *sb, sector_t block)
{
	struct buffer_head *bh;
	struct partitionDesc *p;
	struct udf_part_map *map;
	struct udf_sb_info *sbi = UDF_SB(sb);
1239
	int i, type1_idx;
1240 1241
	uint16_t partitionNumber;
	uint16_t ident;
1242
	int ret;
1243 1244 1245

	bh = udf_read_tagged(sb, block, block, &ident);
	if (!bh)
1246 1247 1248
		return -EAGAIN;
	if (ident != TAG_IDENT_PD) {
		ret = 0;
1249
		goto out_bh;
1250
	}
1251 1252 1253

	p = (struct partitionDesc *)bh->b_data;
	partitionNumber = le16_to_cpu(p->partitionNumber);
1254

1255
	/* First scan for TYPE1 and SPARABLE partitions */
1256 1257
	for (i = 0; i < sbi->s_partitions; i++) {
		map = &sbi->s_partmaps[i];
1258
		udf_debug("Searching map: (%u == %u)\n",
1259
			  map->s_partition_num, partitionNumber);
1260 1261 1262
		if (map->s_partition_num == partitionNumber &&
		    (map->s_partition_type == UDF_TYPE1_MAP15 ||
		     map->s_partition_type == UDF_SPARABLE_MAP15))
1263 1264 1265
			break;
	}

1266
	if (i >= sbi->s_partitions) {
1267
		udf_debug("Partition (%u) not found in partition map\n",
1268
			  partitionNumber);
1269
		ret = 0;
1270 1271
		goto out_bh;
	}
M
Marcin Slusarz 已提交
1272

1273
	ret = udf_fill_partdesc_info(sb, p, i);
1274 1275
	if (ret < 0)
		goto out_bh;
1276 1277

	/*
1278 1279
	 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
	 * PHYSICAL partitions are already set up
1280 1281
	 */
	type1_idx = i;
1282
	map = NULL; /* supress 'maybe used uninitialized' warning */
1283 1284 1285 1286 1287
	for (i = 0; i < sbi->s_partitions; i++) {
		map = &sbi->s_partmaps[i];

		if (map->s_partition_num == partitionNumber &&
		    (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
1288 1289
		     map->s_partition_type == UDF_VIRTUAL_MAP20 ||
		     map->s_partition_type == UDF_METADATA_MAP25))
1290 1291 1292
			break;
	}

1293 1294
	if (i >= sbi->s_partitions) {
		ret = 0;
1295
		goto out_bh;
1296
	}
1297 1298

	ret = udf_fill_partdesc_info(sb, p, i);
1299
	if (ret < 0)
1300 1301
		goto out_bh;

1302
	if (map->s_partition_type == UDF_METADATA_MAP25) {
1303
		ret = udf_load_metadata_files(sb, i, type1_idx);
1304
		if (ret < 0) {
J
Joe Perches 已提交
1305 1306
			udf_err(sb, "error loading MetaData partition map %d\n",
				i);
1307 1308 1309
			goto out_bh;
		}
	} else {
1310 1311 1312 1313 1314
		/*
		 * If we have a partition with virtual map, we don't handle
		 * writing to it (we overwrite blocks instead of relocating
		 * them).
		 */
1315
		if (!sb_rdonly(sb)) {
1316 1317 1318
			ret = -EACCES;
			goto out_bh;
		}
1319
		UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
1320
		ret = udf_load_vat(sb, i, type1_idx);
1321
		if (ret < 0)
1322 1323
			goto out_bh;
	}
1324
	ret = 0;
1325
out_bh:
J
Jan Kara 已提交
1326
	/* In case loading failed, we handle cleanup in udf_fill_super */
1327 1328
	brelse(bh);
	return ret;
L
Linus Torvalds 已提交
1329 1330
}

J
Jan Kara 已提交
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
static int udf_load_sparable_map(struct super_block *sb,
				 struct udf_part_map *map,
				 struct sparablePartitionMap *spm)
{
	uint32_t loc;
	uint16_t ident;
	struct sparingTable *st;
	struct udf_sparing_data *sdata = &map->s_type_specific.s_sparing;
	int i;
	struct buffer_head *bh;

	map->s_partition_type = UDF_SPARABLE_MAP15;
	sdata->s_packet_len = le16_to_cpu(spm->packetLength);
	if (!is_power_of_2(sdata->s_packet_len)) {
		udf_err(sb, "error loading logical volume descriptor: "
			"Invalid packet length %u\n",
			(unsigned)sdata->s_packet_len);
		return -EIO;
	}
	if (spm->numSparingTables > 4) {
		udf_err(sb, "error loading logical volume descriptor: "
			"Too many sparing tables (%d)\n",
			(int)spm->numSparingTables);
		return -EIO;
	}

	for (i = 0; i < spm->numSparingTables; i++) {
		loc = le32_to_cpu(spm->locSparingTable[i]);
		bh = udf_read_tagged(sb, loc, loc, &ident);
		if (!bh)
			continue;

		st = (struct sparingTable *)bh->b_data;
		if (ident != 0 ||
		    strncmp(st->sparingIdent.ident, UDF_ID_SPARING,
			    strlen(UDF_ID_SPARING)) ||
		    sizeof(*st) + le16_to_cpu(st->reallocationTableLen) >
							sb->s_blocksize) {
			brelse(bh);
			continue;
		}

		sdata->s_spar_map[i] = bh;
	}
	map->s_partition_func = udf_get_pblock_spar15;
	return 0;
}

1379
static int udf_load_logicalvol(struct super_block *sb, sector_t block,
1380
			       struct kernel_lb_addr *fileset)
L
Linus Torvalds 已提交
1381 1382
{
	struct logicalVolDesc *lvd;
J
Jan Kara 已提交
1383
	int i, offset;
L
Linus Torvalds 已提交
1384
	uint8_t type;
M
Marcin Slusarz 已提交
1385
	struct udf_sb_info *sbi = UDF_SB(sb);
M
Marcin Slusarz 已提交
1386
	struct genericPartitionMap *gpm;
1387 1388
	uint16_t ident;
	struct buffer_head *bh;
1389
	unsigned int table_len;
1390
	int ret;
L
Linus Torvalds 已提交
1391

1392 1393
	bh = udf_read_tagged(sb, block, block, &ident);
	if (!bh)
1394
		return -EAGAIN;
1395
	BUG_ON(ident != TAG_IDENT_LVD);
L
Linus Torvalds 已提交
1396
	lvd = (struct logicalVolDesc *)bh->b_data;
1397
	table_len = le32_to_cpu(lvd->mapTableLength);
1398
	if (table_len > sb->s_blocksize - sizeof(*lvd)) {
1399 1400 1401
		udf_err(sb, "error loading logical volume descriptor: "
			"Partition table too long (%u > %lu)\n", table_len,
			sb->s_blocksize - sizeof(*lvd));
1402
		ret = -EIO;
1403 1404
		goto out_bh;
	}
L
Linus Torvalds 已提交
1405

J
Jan Kara 已提交
1406 1407 1408 1409
	ret = udf_verify_domain_identifier(sb, &lvd->domainIdent,
					   "logical volume");
	if (ret)
		goto out_bh;
1410 1411
	ret = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
	if (ret)
1412
		goto out_bh;
L
Linus Torvalds 已提交
1413

1414
	for (i = 0, offset = 0;
1415
	     i < sbi->s_partitions && offset < table_len;
M
Marcin Slusarz 已提交
1416 1417 1418 1419 1420
	     i++, offset += gpm->partitionMapLength) {
		struct udf_part_map *map = &sbi->s_partmaps[i];
		gpm = (struct genericPartitionMap *)
				&(lvd->partitionMaps[offset]);
		type = gpm->partitionMapType;
1421
		if (type == 1) {
M
Marcin Slusarz 已提交
1422 1423
			struct genericPartitionMap1 *gpm1 =
				(struct genericPartitionMap1 *)gpm;
M
Marcin Slusarz 已提交
1424 1425 1426 1427
			map->s_partition_type = UDF_TYPE1_MAP15;
			map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
			map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
			map->s_partition_func = NULL;
1428
		} else if (type == 2) {
M
Marcin Slusarz 已提交
1429 1430 1431 1432 1433 1434 1435
			struct udfPartitionMap2 *upm2 =
						(struct udfPartitionMap2 *)gpm;
			if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
						strlen(UDF_ID_VIRTUAL))) {
				u16 suf =
					le16_to_cpu(((__le16 *)upm2->partIdent.
							identSuffix)[0]);
J
Jan Kara 已提交
1436
				if (suf < 0x0200) {
M
Marcin Slusarz 已提交
1437 1438 1439 1440
					map->s_partition_type =
							UDF_VIRTUAL_MAP15;
					map->s_partition_func =
							udf_get_pblock_virt15;
J
Jan Kara 已提交
1441
				} else {
M
Marcin Slusarz 已提交
1442 1443 1444 1445
					map->s_partition_type =
							UDF_VIRTUAL_MAP20;
					map->s_partition_func =
							udf_get_pblock_virt20;
L
Linus Torvalds 已提交
1446
				}
M
Marcin Slusarz 已提交
1447 1448 1449
			} else if (!strncmp(upm2->partIdent.ident,
						UDF_ID_SPARABLE,
						strlen(UDF_ID_SPARABLE))) {
1450 1451 1452
				ret = udf_load_sparable_map(sb, map,
					(struct sparablePartitionMap *)gpm);
				if (ret < 0)
J
Jan Kara 已提交
1453
					goto out_bh;
1454 1455 1456 1457 1458 1459 1460 1461
			} else if (!strncmp(upm2->partIdent.ident,
						UDF_ID_METADATA,
						strlen(UDF_ID_METADATA))) {
				struct udf_meta_data *mdata =
					&map->s_type_specific.s_metadata;
				struct metadataPartitionMap *mdm =
						(struct metadataPartitionMap *)
						&(lvd->partitionMaps[offset]);
1462
				udf_debug("Parsing Logical vol part %d type %u  id=%s\n",
J
Joe Perches 已提交
1463
					  i, type, UDF_ID_METADATA);
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477

				map->s_partition_type = UDF_METADATA_MAP25;
				map->s_partition_func = udf_get_pblock_meta25;

				mdata->s_meta_file_loc   =
					le32_to_cpu(mdm->metadataFileLoc);
				mdata->s_mirror_file_loc =
					le32_to_cpu(mdm->metadataMirrorFileLoc);
				mdata->s_bitmap_file_loc =
					le32_to_cpu(mdm->metadataBitmapFileLoc);
				mdata->s_alloc_unit_size =
					le32_to_cpu(mdm->allocUnitSize);
				mdata->s_align_unit_size =
					le16_to_cpu(mdm->alignUnitSize);
J
Jan Kara 已提交
1478 1479
				if (mdm->flags & 0x01)
					mdata->s_flags |= MF_DUPLICATE_MD;
1480 1481

				udf_debug("Metadata Ident suffix=0x%x\n",
J
Joe Perches 已提交
1482 1483
					  le16_to_cpu(*(__le16 *)
						      mdm->partIdent.identSuffix));
1484
				udf_debug("Metadata part num=%u\n",
J
Joe Perches 已提交
1485
					  le16_to_cpu(mdm->partitionNum));
1486
				udf_debug("Metadata part alloc unit size=%u\n",
J
Joe Perches 已提交
1487
					  le32_to_cpu(mdm->allocUnitSize));
1488
				udf_debug("Metadata file loc=%u\n",
J
Joe Perches 已提交
1489
					  le32_to_cpu(mdm->metadataFileLoc));
1490
				udf_debug("Mirror file loc=%u\n",
J
Joe Perches 已提交
1491
					  le32_to_cpu(mdm->metadataMirrorFileLoc));
1492
				udf_debug("Bitmap file loc=%u\n",
J
Joe Perches 已提交
1493
					  le32_to_cpu(mdm->metadataBitmapFileLoc));
1494
				udf_debug("Flags: %d %u\n",
J
Jan Kara 已提交
1495
					  mdata->s_flags, mdm->flags);
1496
			} else {
1497 1498
				udf_debug("Unknown ident: %s\n",
					  upm2->partIdent.ident);
L
Linus Torvalds 已提交
1499 1500
				continue;
			}
M
Marcin Slusarz 已提交
1501 1502
			map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
			map->s_partition_num = le16_to_cpu(upm2->partitionNum);
L
Linus Torvalds 已提交
1503
		}
1504
		udf_debug("Partition (%d:%u) type %u on volume %u\n",
J
Joe Perches 已提交
1505
			  i, map->s_partition_num, type, map->s_volumeseqnum);
L
Linus Torvalds 已提交
1506 1507
	}

1508
	if (fileset) {
1509
		struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
L
Linus Torvalds 已提交
1510 1511

		*fileset = lelb_to_cpu(la->extLocation);
1512
		udf_debug("FileSet found in LogicalVolDesc at block=%u, partition=%u\n",
J
Joe Perches 已提交
1513
			  fileset->logicalBlockNum,
1514
			  fileset->partitionReferenceNum);
L
Linus Torvalds 已提交
1515 1516 1517
	}
	if (lvd->integritySeqExt.extLength)
		udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
1518
	ret = 0;
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529

	if (!sbi->s_lvid_bh) {
		/* We can't generate unique IDs without a valid LVID */
		if (sb_rdonly(sb)) {
			UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
		} else {
			udf_warn(sb, "Damaged or missing LVID, forcing "
				     "readonly mount\n");
			ret = -EACCES;
		}
	}
1530 1531 1532
out_bh:
	brelse(bh);
	return ret;
L
Linus Torvalds 已提交
1533 1534 1535
}

/*
1536
 * Find the prevailing Logical Volume Integrity Descriptor.
L
Linus Torvalds 已提交
1537
 */
1538
static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
L
Linus Torvalds 已提交
1539
{
1540
	struct buffer_head *bh, *final_bh;
L
Linus Torvalds 已提交
1541
	uint16_t ident;
M
Marcin Slusarz 已提交
1542 1543
	struct udf_sb_info *sbi = UDF_SB(sb);
	struct logicalVolIntegrityDesc *lvid;
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
	int indirections = 0;

	while (++indirections <= UDF_MAX_LVID_NESTING) {
		final_bh = NULL;
		while (loc.extLength > 0 &&
			(bh = udf_read_tagged(sb, loc.extLocation,
					loc.extLocation, &ident))) {
			if (ident != TAG_IDENT_LVID) {
				brelse(bh);
				break;
			}

			brelse(final_bh);
			final_bh = bh;
L
Linus Torvalds 已提交
1558

1559 1560 1561
			loc.extLength -= sb->s_blocksize;
			loc.extLocation++;
		}
1562

1563 1564
		if (!final_bh)
			return;
1565

1566 1567 1568 1569 1570 1571 1572 1573
		brelse(sbi->s_lvid_bh);
		sbi->s_lvid_bh = final_bh;

		lvid = (struct logicalVolIntegrityDesc *)final_bh->b_data;
		if (lvid->nextIntegrityExt.extLength == 0)
			return;

		loc = leea_to_cpu(lvid->nextIntegrityExt);
L
Linus Torvalds 已提交
1574
	}
1575 1576 1577 1578 1579

	udf_warn(sb, "Too many LVID indirections (max %u), ignoring.\n",
		UDF_MAX_LVID_NESTING);
	brelse(sbi->s_lvid_bh);
	sbi->s_lvid_bh = NULL;
L
Linus Torvalds 已提交
1580 1581
}

1582 1583 1584 1585 1586 1587
/*
 * Step for reallocation of table of partition descriptor sequence numbers.
 * Must be power of 2.
 */
#define PART_DESC_ALLOC_STEP 32

1588 1589 1590 1591 1592
struct part_desc_seq_scan_data {
	struct udf_vds_record rec;
	u32 partnum;
};

1593 1594 1595
struct desc_seq_scan_data {
	struct udf_vds_record vds[VDS_POS_LENGTH];
	unsigned int size_part_descs;
1596 1597
	unsigned int num_part_descs;
	struct part_desc_seq_scan_data *part_descs_loc;
1598 1599 1600 1601 1602 1603 1604 1605
};

static struct udf_vds_record *handle_partition_descriptor(
				struct buffer_head *bh,
				struct desc_seq_scan_data *data)
{
	struct partitionDesc *desc = (struct partitionDesc *)bh->b_data;
	int partnum;
1606
	int i;
1607 1608

	partnum = le16_to_cpu(desc->partitionNumber);
1609 1610 1611 1612 1613
	for (i = 0; i < data->num_part_descs; i++)
		if (partnum == data->part_descs_loc[i].partnum)
			return &(data->part_descs_loc[i].rec);
	if (data->num_part_descs >= data->size_part_descs) {
		struct part_desc_seq_scan_data *new_loc;
1614 1615
		unsigned int new_size = ALIGN(partnum, PART_DESC_ALLOC_STEP);

K
Kees Cook 已提交
1616
		new_loc = kcalloc(new_size, sizeof(*new_loc), GFP_KERNEL);
1617 1618 1619 1620 1621 1622 1623 1624
		if (!new_loc)
			return ERR_PTR(-ENOMEM);
		memcpy(new_loc, data->part_descs_loc,
		       data->size_part_descs * sizeof(*new_loc));
		kfree(data->part_descs_loc);
		data->part_descs_loc = new_loc;
		data->size_part_descs = new_size;
	}
1625
	return &(data->part_descs_loc[data->num_part_descs++].rec);
1626 1627 1628 1629 1630
}


static struct udf_vds_record *get_volume_descriptor_record(uint16_t ident,
		struct buffer_head *bh, struct desc_seq_scan_data *data)
1631 1632 1633
{
	switch (ident) {
	case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
1634
		return &(data->vds[VDS_POS_PRIMARY_VOL_DESC]);
1635
	case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
1636
		return &(data->vds[VDS_POS_IMP_USE_VOL_DESC]);
1637
	case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
1638
		return &(data->vds[VDS_POS_LOGICAL_VOL_DESC]);
1639
	case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
1640 1641 1642
		return &(data->vds[VDS_POS_UNALLOC_SPACE_DESC]);
	case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
		return handle_partition_descriptor(bh, data);
1643 1644 1645
	}
	return NULL;
}
1646

L
Linus Torvalds 已提交
1647
/*
1648 1649 1650 1651
 * Process a main/reserve volume descriptor sequence.
 *   @block		First block of first extent of the sequence.
 *   @lastblock		Lastblock of first extent of the sequence.
 *   @fileset		There we store extent containing root fileset
L
Linus Torvalds 已提交
1652
 *
1653 1654
 * Returns <0 on error, 0 on success. -EAGAIN is special - try next descriptor
 * sequence
L
Linus Torvalds 已提交
1655
 */
1656 1657 1658 1659
static noinline int udf_process_sequence(
		struct super_block *sb,
		sector_t block, sector_t lastblock,
		struct kernel_lb_addr *fileset)
L
Linus Torvalds 已提交
1660 1661
{
	struct buffer_head *bh = NULL;
M
Marcin Slusarz 已提交
1662
	struct udf_vds_record *curr;
L
Linus Torvalds 已提交
1663 1664
	struct generic_desc *gd;
	struct volDescPtr *vdp;
F
Fabian Frederick 已提交
1665
	bool done = false;
L
Linus Torvalds 已提交
1666 1667
	uint32_t vdsn;
	uint16_t ident;
1668
	int ret;
1669
	unsigned int indirections = 0;
1670 1671 1672 1673 1674
	struct desc_seq_scan_data data;
	unsigned int i;

	memset(data.vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
	data.size_part_descs = PART_DESC_ALLOC_STEP;
1675
	data.num_part_descs = 0;
K
Kees Cook 已提交
1676 1677 1678
	data.part_descs_loc = kcalloc(data.size_part_descs,
				      sizeof(*data.part_descs_loc),
				      GFP_KERNEL);
1679 1680
	if (!data.part_descs_loc)
		return -ENOMEM;
L
Linus Torvalds 已提交
1681

1682 1683 1684 1685
	/*
	 * Read the main descriptor sequence and find which descriptors
	 * are in it.
	 */
1686
	for (; (!done && block <= lastblock); block++) {
L
Linus Torvalds 已提交
1687
		bh = udf_read_tagged(sb, block, block, &ident);
1688 1689
		if (!bh)
			break;
L
Linus Torvalds 已提交
1690 1691 1692 1693

		/* Process each descriptor (ISO 13346 3/8.3-8.4) */
		gd = (struct generic_desc *)bh->b_data;
		vdsn = le32_to_cpu(gd->volDescSeqNum);
1694
		switch (ident) {
1695
		case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
1696 1697 1698 1699 1700 1701
			if (++indirections > UDF_MAX_TD_NESTING) {
				udf_err(sb, "too many Volume Descriptor "
					"Pointers (max %u supported)\n",
					UDF_MAX_TD_NESTING);
				brelse(bh);
				return -EIO;
1702
			}
1703 1704 1705 1706 1707 1708 1709 1710 1711

			vdp = (struct volDescPtr *)bh->b_data;
			block = le32_to_cpu(vdp->nextVolDescSeqExt.extLocation);
			lastblock = le32_to_cpu(
				vdp->nextVolDescSeqExt.extLength) >>
				sb->s_blocksize_bits;
			lastblock += block - 1;
			/* For loop is going to increment 'block' again */
			block--;
1712
			break;
1713
		case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
1714
		case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
1715 1716
		case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
		case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
1717 1718 1719 1720 1721 1722 1723 1724 1725
		case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
			curr = get_volume_descriptor_record(ident, bh, &data);
			if (IS_ERR(curr)) {
				brelse(bh);
				return PTR_ERR(curr);
			}
			/* Descriptor we don't care about? */
			if (!curr)
				break;
M
Marcin Slusarz 已提交
1726 1727 1728
			if (vdsn >= curr->volDescSeqNum) {
				curr->volDescSeqNum = vdsn;
				curr->block = block;
1729 1730
			}
			break;
1731
		case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
1732
			done = true;
1733
			break;
L
Linus Torvalds 已提交
1734
		}
J
Jan Kara 已提交
1735
		brelse(bh);
L
Linus Torvalds 已提交
1736
	}
1737 1738 1739 1740
	/*
	 * Now read interesting descriptors again and process them
	 * in a suitable order
	 */
1741
	if (!data.vds[VDS_POS_PRIMARY_VOL_DESC].block) {
J
Joe Perches 已提交
1742
		udf_err(sb, "Primary Volume Descriptor not found!\n");
1743 1744
		return -EAGAIN;
	}
1745
	ret = udf_load_pvoldesc(sb, data.vds[VDS_POS_PRIMARY_VOL_DESC].block);
1746 1747 1748
	if (ret < 0)
		return ret;

1749
	if (data.vds[VDS_POS_LOGICAL_VOL_DESC].block) {
1750
		ret = udf_load_logicalvol(sb,
1751 1752
				data.vds[VDS_POS_LOGICAL_VOL_DESC].block,
				fileset);
1753 1754
		if (ret < 0)
			return ret;
1755
	}
M
Marcin Slusarz 已提交
1756

1757
	/* Now handle prevailing Partition Descriptors */
1758 1759 1760 1761
	for (i = 0; i < data.num_part_descs; i++) {
		ret = udf_load_partdesc(sb, data.part_descs_loc[i].rec.block);
		if (ret < 0)
			return ret;
L
Linus Torvalds 已提交
1762 1763 1764 1765 1766
	}

	return 0;
}

1767 1768 1769 1770 1771
/*
 * Load Volume Descriptor Sequence described by anchor in bh
 *
 * Returns <0 on error, 0 on success
 */
J
Jan Kara 已提交
1772 1773
static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
			     struct kernel_lb_addr *fileset)
L
Linus Torvalds 已提交
1774
{
J
Jan Kara 已提交
1775
	struct anchorVolDescPtr *anchor;
1776 1777
	sector_t main_s, main_e, reserve_s, reserve_e;
	int ret;
L
Linus Torvalds 已提交
1778

J
Jan Kara 已提交
1779 1780 1781 1782 1783 1784
	anchor = (struct anchorVolDescPtr *)bh->b_data;

	/* Locate the main sequence */
	main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
	main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
	main_e = main_e >> sb->s_blocksize_bits;
1785
	main_e += main_s - 1;
J
Jan Kara 已提交
1786 1787 1788 1789 1790

	/* Locate the reserve sequence */
	reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
	reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
	reserve_e = reserve_e >> sb->s_blocksize_bits;
1791
	reserve_e += reserve_s - 1;
J
Jan Kara 已提交
1792 1793 1794

	/* Process the main & reserve sequences */
	/* responsible for finding the PartitionDesc(s) */
1795 1796 1797
	ret = udf_process_sequence(sb, main_s, main_e, fileset);
	if (ret != -EAGAIN)
		return ret;
J
Jan Kara 已提交
1798
	udf_sb_free_partitions(sb);
1799 1800 1801 1802 1803 1804 1805 1806
	ret = udf_process_sequence(sb, reserve_s, reserve_e, fileset);
	if (ret < 0) {
		udf_sb_free_partitions(sb);
		/* No sequence was OK, return -EIO */
		if (ret == -EAGAIN)
			ret = -EIO;
	}
	return ret;
L
Linus Torvalds 已提交
1807 1808
}

J
Jan Kara 已提交
1809 1810 1811
/*
 * Check whether there is an anchor block in the given block and
 * load Volume Descriptor Sequence if so.
1812 1813 1814
 *
 * Returns <0 on error, 0 on success, -EAGAIN is special - try next anchor
 * block
J
Jan Kara 已提交
1815 1816 1817
 */
static int udf_check_anchor_block(struct super_block *sb, sector_t block,
				  struct kernel_lb_addr *fileset)
C
Clemens Ladisch 已提交
1818
{
J
Jan Kara 已提交
1819 1820 1821
	struct buffer_head *bh;
	uint16_t ident;
	int ret;
C
Clemens Ladisch 已提交
1822

J
Jan Kara 已提交
1823 1824
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
	    udf_fixed_to_variable(block) >=
1825
	    i_size_read(sb->s_bdev->bd_inode) >> sb->s_blocksize_bits)
1826
		return -EAGAIN;
J
Jan Kara 已提交
1827 1828 1829

	bh = udf_read_tagged(sb, block, block, &ident);
	if (!bh)
1830
		return -EAGAIN;
J
Jan Kara 已提交
1831 1832
	if (ident != TAG_IDENT_AVDP) {
		brelse(bh);
1833
		return -EAGAIN;
C
Clemens Ladisch 已提交
1834
	}
J
Jan Kara 已提交
1835 1836 1837
	ret = udf_load_sequence(sb, bh, fileset);
	brelse(bh);
	return ret;
C
Clemens Ladisch 已提交
1838 1839
}

1840 1841 1842 1843 1844 1845 1846 1847
/*
 * Search for an anchor volume descriptor pointer.
 *
 * Returns < 0 on error, 0 on success. -EAGAIN is special - try next set
 * of anchors.
 */
static int udf_scan_anchors(struct super_block *sb, sector_t *lastblock,
			    struct kernel_lb_addr *fileset)
L
Linus Torvalds 已提交
1848
{
J
Jan Kara 已提交
1849
	sector_t last[6];
1850
	int i;
J
Jan Kara 已提交
1851 1852
	struct udf_sb_info *sbi = UDF_SB(sb);
	int last_count = 0;
1853
	int ret;
L
Linus Torvalds 已提交
1854

J
Jan Kara 已提交
1855 1856
	/* First try user provided anchor */
	if (sbi->s_anchor) {
1857 1858 1859
		ret = udf_check_anchor_block(sb, sbi->s_anchor, fileset);
		if (ret != -EAGAIN)
			return ret;
J
Jan Kara 已提交
1860 1861 1862 1863 1864 1865 1866 1867
	}
	/*
	 * according to spec, anchor is in either:
	 *     block 256
	 *     lastblock-256
	 *     lastblock
	 *  however, if the disc isn't closed, it could be 512.
	 */
1868 1869 1870
	ret = udf_check_anchor_block(sb, sbi->s_session + 256, fileset);
	if (ret != -EAGAIN)
		return ret;
J
Jan Kara 已提交
1871 1872 1873 1874
	/*
	 * The trouble is which block is the last one. Drives often misreport
	 * this so we try various possibilities.
	 */
1875 1876 1877 1878 1879 1880 1881 1882 1883 1884
	last[last_count++] = *lastblock;
	if (*lastblock >= 1)
		last[last_count++] = *lastblock - 1;
	last[last_count++] = *lastblock + 1;
	if (*lastblock >= 2)
		last[last_count++] = *lastblock - 2;
	if (*lastblock >= 150)
		last[last_count++] = *lastblock - 150;
	if (*lastblock >= 152)
		last[last_count++] = *lastblock - 152;
L
Linus Torvalds 已提交
1885

J
Jan Kara 已提交
1886
	for (i = 0; i < last_count; i++) {
1887
		if (last[i] >= i_size_read(sb->s_bdev->bd_inode) >>
J
Jan Kara 已提交
1888
				sb->s_blocksize_bits)
1889
			continue;
1890 1891 1892 1893 1894 1895
		ret = udf_check_anchor_block(sb, last[i], fileset);
		if (ret != -EAGAIN) {
			if (!ret)
				*lastblock = last[i];
			return ret;
		}
J
Jan Kara 已提交
1896
		if (last[i] < 256)
1897
			continue;
1898 1899 1900 1901 1902 1903
		ret = udf_check_anchor_block(sb, last[i] - 256, fileset);
		if (ret != -EAGAIN) {
			if (!ret)
				*lastblock = last[i];
			return ret;
		}
J
Jan Kara 已提交
1904
	}
1905

J
Jan Kara 已提交
1906
	/* Finally try block 512 in case media is open */
1907
	return udf_check_anchor_block(sb, sbi->s_session + 512, fileset);
J
Jan Kara 已提交
1908
}
1909

J
Jan Kara 已提交
1910 1911 1912 1913 1914
/*
 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
 * area specified by it. The function expects sbi->s_lastblock to be the last
 * block on the media.
 *
1915 1916
 * Return <0 on error, 0 if anchor found. -EAGAIN is special meaning anchor
 * was not found.
J
Jan Kara 已提交
1917 1918 1919 1920 1921
 */
static int udf_find_anchor(struct super_block *sb,
			   struct kernel_lb_addr *fileset)
{
	struct udf_sb_info *sbi = UDF_SB(sb);
1922 1923
	sector_t lastblock = sbi->s_last_block;
	int ret;
1924

1925 1926
	ret = udf_scan_anchors(sb, &lastblock, fileset);
	if (ret != -EAGAIN)
J
Jan Kara 已提交
1927
		goto out;
L
Linus Torvalds 已提交
1928

J
Jan Kara 已提交
1929 1930
	/* No anchor found? Try VARCONV conversion of block numbers */
	UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1931
	lastblock = udf_variable_to_fixed(sbi->s_last_block);
J
Jan Kara 已提交
1932
	/* Firstly, we try to not convert number of the last block */
1933 1934
	ret = udf_scan_anchors(sb, &lastblock, fileset);
	if (ret != -EAGAIN)
J
Jan Kara 已提交
1935
		goto out;
L
Linus Torvalds 已提交
1936

1937
	lastblock = sbi->s_last_block;
J
Jan Kara 已提交
1938
	/* Secondly, we try with converted number of the last block */
1939 1940
	ret = udf_scan_anchors(sb, &lastblock, fileset);
	if (ret < 0) {
J
Jan Kara 已提交
1941 1942
		/* VARCONV didn't help. Clear it. */
		UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
L
Linus Torvalds 已提交
1943
	}
J
Jan Kara 已提交
1944
out:
1945 1946 1947
	if (ret == 0)
		sbi->s_last_block = lastblock;
	return ret;
J
Jan Kara 已提交
1948
}
L
Linus Torvalds 已提交
1949

J
Jan Kara 已提交
1950 1951
/*
 * Check Volume Structure Descriptor, find Anchor block and load Volume
1952 1953 1954 1955
 * Descriptor Sequence.
 *
 * Returns < 0 on error, 0 on success. -EAGAIN is special meaning anchor
 * block was not found.
J
Jan Kara 已提交
1956 1957 1958 1959 1960
 */
static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
			int silent, struct kernel_lb_addr *fileset)
{
	struct udf_sb_info *sbi = UDF_SB(sb);
1961
	int nsr = 0;
1962
	int ret;
J
Jan Kara 已提交
1963 1964 1965

	if (!sb_set_blocksize(sb, uopt->blocksize)) {
		if (!silent)
J
Joe Perches 已提交
1966
			udf_warn(sb, "Bad block size\n");
1967
		return -EINVAL;
J
Jan Kara 已提交
1968 1969 1970 1971
	}
	sbi->s_last_block = uopt->lastblock;
	if (!uopt->novrs) {
		/* Check that it is NSR02 compliant */
1972 1973
		nsr = udf_check_vsd(sb);
		if (!nsr) {
J
Jan Kara 已提交
1974
			if (!silent)
J
Joe Perches 已提交
1975
				udf_warn(sb, "No VRS found\n");
1976
			return -EINVAL;
J
Jan Kara 已提交
1977
		}
1978
		if (nsr == -1)
1979 1980 1981
			udf_debug("Failed to read sector at offset %d. "
				  "Assuming open disc. Skipping validity "
				  "check\n", VSD_FIRST_SECTOR_OFFSET);
J
Jan Kara 已提交
1982 1983 1984 1985
		if (!sbi->s_last_block)
			sbi->s_last_block = udf_get_last_block(sb);
	} else {
		udf_debug("Validity check skipped because of novrs option\n");
1986
	}
L
Linus Torvalds 已提交
1987

J
Jan Kara 已提交
1988 1989
	/* Look for anchor block and load Volume Descriptor Sequence */
	sbi->s_anchor = uopt->anchor;
1990 1991 1992
	ret = udf_find_anchor(sb, fileset);
	if (ret < 0) {
		if (!silent && ret == -EAGAIN)
J
Joe Perches 已提交
1993
			udf_warn(sb, "No anchor found\n");
1994
		return ret;
J
Jan Kara 已提交
1995
	}
1996
	return 0;
L
Linus Torvalds 已提交
1997 1998
}

1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010
static void udf_finalize_lvid(struct logicalVolIntegrityDesc *lvid)
{
	struct timespec64 ts;

	ktime_get_real_ts64(&ts);
	udf_time_to_disk_stamp(&lvid->recordingDateAndTime, ts);
	lvid->descTag.descCRC = cpu_to_le16(
		crc_itu_t(0, (char *)lvid + sizeof(struct tag),
			le16_to_cpu(lvid->descTag.descCRCLength)));
	lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
}

L
Linus Torvalds 已提交
2011 2012
static void udf_open_lvid(struct super_block *sb)
{
M
Marcin Slusarz 已提交
2013 2014
	struct udf_sb_info *sbi = UDF_SB(sb);
	struct buffer_head *bh = sbi->s_lvid_bh;
M
Marcin Slusarz 已提交
2015 2016
	struct logicalVolIntegrityDesc *lvid;
	struct logicalVolIntegrityDescImpUse *lvidiu;
2017

M
Marcin Slusarz 已提交
2018 2019 2020
	if (!bh)
		return;
	lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
J
Jan Kara 已提交
2021 2022 2023
	lvidiu = udf_sb_lvidiu(sb);
	if (!lvidiu)
		return;
M
Marcin Slusarz 已提交
2024

J
Jan Kara 已提交
2025
	mutex_lock(&sbi->s_alloc_mutex);
M
Marcin Slusarz 已提交
2026 2027
	lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
	lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
2028 2029 2030 2031
	if (le32_to_cpu(lvid->integrityType) == LVID_INTEGRITY_TYPE_CLOSE)
		lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
	else
		UDF_SET_FLAG(sb, UDF_FLAG_INCONSISTENT);
M
Marcin Slusarz 已提交
2032

2033
	udf_finalize_lvid(lvid);
M
Marcin Slusarz 已提交
2034
	mark_buffer_dirty(bh);
2035
	sbi->s_lvid_dirty = 0;
2036
	mutex_unlock(&sbi->s_alloc_mutex);
2037 2038
	/* Make opening of filesystem visible on the media immediately */
	sync_dirty_buffer(bh);
L
Linus Torvalds 已提交
2039 2040 2041 2042
}

static void udf_close_lvid(struct super_block *sb)
{
M
Marcin Slusarz 已提交
2043 2044 2045
	struct udf_sb_info *sbi = UDF_SB(sb);
	struct buffer_head *bh = sbi->s_lvid_bh;
	struct logicalVolIntegrityDesc *lvid;
M
Marcin Slusarz 已提交
2046
	struct logicalVolIntegrityDescImpUse *lvidiu;
2047

M
Marcin Slusarz 已提交
2048 2049
	if (!bh)
		return;
J
Jan Kara 已提交
2050 2051 2052 2053
	lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
	lvidiu = udf_sb_lvidiu(sb);
	if (!lvidiu)
		return;
M
Marcin Slusarz 已提交
2054

2055
	mutex_lock(&sbi->s_alloc_mutex);
M
Marcin Slusarz 已提交
2056 2057 2058 2059 2060 2061 2062 2063
	lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
	lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
	if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
		lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
	if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
		lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
	if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
		lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
2064 2065
	if (!UDF_QUERY_FLAG(sb, UDF_FLAG_INCONSISTENT))
		lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
M
Marcin Slusarz 已提交
2066

2067 2068 2069 2070 2071 2072
	/*
	 * We set buffer uptodate unconditionally here to avoid spurious
	 * warnings from mark_buffer_dirty() when previous EIO has marked
	 * the buffer as !uptodate
	 */
	set_buffer_uptodate(bh);
2073
	udf_finalize_lvid(lvid);
M
Marcin Slusarz 已提交
2074
	mark_buffer_dirty(bh);
2075
	sbi->s_lvid_dirty = 0;
2076
	mutex_unlock(&sbi->s_alloc_mutex);
2077 2078
	/* Make closing of filesystem visible on the media immediately */
	sync_dirty_buffer(bh);
L
Linus Torvalds 已提交
2079 2080
}

2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101
u64 lvid_get_unique_id(struct super_block *sb)
{
	struct buffer_head *bh;
	struct udf_sb_info *sbi = UDF_SB(sb);
	struct logicalVolIntegrityDesc *lvid;
	struct logicalVolHeaderDesc *lvhd;
	u64 uniqueID;
	u64 ret;

	bh = sbi->s_lvid_bh;
	if (!bh)
		return 0;

	lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
	lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;

	mutex_lock(&sbi->s_alloc_mutex);
	ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
	if (!(++uniqueID & 0xFFFFFFFF))
		uniqueID += 16;
	lvhd->uniqueID = cpu_to_le64(uniqueID);
2102
	udf_updated_lvid(sb);
2103 2104 2105
	mutex_unlock(&sbi->s_alloc_mutex);

	return ret;
L
Linus Torvalds 已提交
2106 2107 2108 2109
}

static int udf_fill_super(struct super_block *sb, void *options, int silent)
{
2110
	int ret = -EINVAL;
2111
	struct inode *inode = NULL;
L
Linus Torvalds 已提交
2112
	struct udf_options uopt;
2113
	struct kernel_lb_addr rootdir, fileset;
L
Linus Torvalds 已提交
2114
	struct udf_sb_info *sbi;
2115
	bool lvid_open = false;
L
Linus Torvalds 已提交
2116 2117

	uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
2118 2119 2120
	/* By default we'll use overflow[ug]id when UDF inode [ug]id == -1 */
	uopt.uid = make_kuid(current_user_ns(), overflowuid);
	uopt.gid = make_kgid(current_user_ns(), overflowgid);
L
Linus Torvalds 已提交
2121
	uopt.umask = 0;
2122 2123
	uopt.fmode = UDF_INVALID_MODE;
	uopt.dmode = UDF_INVALID_MODE;
2124
	uopt.nls_map = NULL;
L
Linus Torvalds 已提交
2125

2126
	sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2127
	if (!sbi)
L
Linus Torvalds 已提交
2128
		return -ENOMEM;
2129

L
Linus Torvalds 已提交
2130 2131
	sb->s_fs_info = sbi;

I
Ingo Molnar 已提交
2132
	mutex_init(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
2133

M
Miklos Szeredi 已提交
2134
	if (!udf_parse_options((char *)options, &uopt, false))
2135
		goto parse_options_failure;
L
Linus Torvalds 已提交
2136 2137

	if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
2138
	    uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
J
Joe Perches 已提交
2139
		udf_err(sb, "utf8 cannot be combined with iocharset\n");
2140
		goto parse_options_failure;
L
Linus Torvalds 已提交
2141
	}
2142
	if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
L
Linus Torvalds 已提交
2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154
		uopt.nls_map = load_nls_default();
		if (!uopt.nls_map)
			uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
		else
			udf_debug("Using default NLS map\n");
	}
	if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
		uopt.flags |= (1 << UDF_FLAG_UTF8);

	fileset.logicalBlockNum = 0xFFFFFFFF;
	fileset.partitionReferenceNum = 0xFFFF;

M
Marcin Slusarz 已提交
2155 2156 2157 2158
	sbi->s_flags = uopt.flags;
	sbi->s_uid = uopt.uid;
	sbi->s_gid = uopt.gid;
	sbi->s_umask = uopt.umask;
2159 2160
	sbi->s_fmode = uopt.fmode;
	sbi->s_dmode = uopt.dmode;
M
Marcin Slusarz 已提交
2161
	sbi->s_nls_map = uopt.nls_map;
2162
	rwlock_init(&sbi->s_cred_lock);
L
Linus Torvalds 已提交
2163

2164
	if (uopt.session == 0xFFFFFFFF)
M
Marcin Slusarz 已提交
2165
		sbi->s_session = udf_get_last_session(sb);
L
Linus Torvalds 已提交
2166
	else
M
Marcin Slusarz 已提交
2167
		sbi->s_session = uopt.session;
L
Linus Torvalds 已提交
2168

M
Marcin Slusarz 已提交
2169
	udf_debug("Multi-session=%d\n", sbi->s_session);
L
Linus Torvalds 已提交
2170

J
Jan Kara 已提交
2171 2172 2173
	/* Fill in the rest of the superblock */
	sb->s_op = &udf_sb_ops;
	sb->s_export_op = &udf_export_ops;
2174

J
Jan Kara 已提交
2175 2176 2177
	sb->s_magic = UDF_SUPER_MAGIC;
	sb->s_time_gran = 1000;

C
Clemens Ladisch 已提交
2178
	if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
J
Jan Kara 已提交
2179
		ret = udf_load_vrs(sb, &uopt, silent, &fileset);
C
Clemens Ladisch 已提交
2180
	} else {
2181
		uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
2182
		while (uopt.blocksize <= 4096) {
J
Jan Kara 已提交
2183
			ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2184 2185
			if (ret < 0) {
				if (!silent && ret != -EACCES) {
2186
					pr_notice("Scanning with blocksize %u failed\n",
2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200
						  uopt.blocksize);
				}
				brelse(sbi->s_lvid_bh);
				sbi->s_lvid_bh = NULL;
				/*
				 * EACCES is special - we want to propagate to
				 * upper layers that we cannot handle RW mount.
				 */
				if (ret == -EACCES)
					break;
			} else
				break;

			uopt.blocksize <<= 1;
C
Clemens Ladisch 已提交
2201
		}
L
Linus Torvalds 已提交
2202
	}
2203 2204 2205 2206 2207
	if (ret < 0) {
		if (ret == -EAGAIN) {
			udf_warn(sb, "No partition found (1)\n");
			ret = -EINVAL;
		}
L
Linus Torvalds 已提交
2208 2209 2210
		goto error_out;
	}

2211
	udf_debug("Lastblock=%u\n", sbi->s_last_block);
L
Linus Torvalds 已提交
2212

M
Marcin Slusarz 已提交
2213
	if (sbi->s_lvid_bh) {
M
Marcin Slusarz 已提交
2214
		struct logicalVolIntegrityDescImpUse *lvidiu =
J
Jan Kara 已提交
2215 2216 2217
							udf_sb_lvidiu(sb);
		uint16_t minUDFReadRev;
		uint16_t minUDFWriteRev;
L
Linus Torvalds 已提交
2218

J
Jan Kara 已提交
2219 2220 2221 2222 2223 2224
		if (!lvidiu) {
			ret = -EINVAL;
			goto error_out;
		}
		minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
		minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
2225
		if (minUDFReadRev > UDF_MAX_READ_VERSION) {
J
Joe Perches 已提交
2226
			udf_err(sb, "minUDFReadRev=%x (max is %x)\n",
J
Jan Kara 已提交
2227
				minUDFReadRev,
J
Joe Perches 已提交
2228
				UDF_MAX_READ_VERSION);
2229
			ret = -EINVAL;
L
Linus Torvalds 已提交
2230
			goto error_out;
2231 2232 2233 2234 2235 2236
		} else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION) {
			if (!sb_rdonly(sb)) {
				ret = -EACCES;
				goto error_out;
			}
			UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
2237
		}
L
Linus Torvalds 已提交
2238

M
Marcin Slusarz 已提交
2239
		sbi->s_udfrev = minUDFWriteRev;
L
Linus Torvalds 已提交
2240 2241 2242 2243 2244 2245 2246

		if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
			UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
		if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
			UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
	}

M
Marcin Slusarz 已提交
2247
	if (!sbi->s_partitions) {
J
Joe Perches 已提交
2248
		udf_warn(sb, "No partition found (2)\n");
2249
		ret = -EINVAL;
L
Linus Torvalds 已提交
2250 2251 2252
		goto error_out;
	}

M
Marcin Slusarz 已提交
2253
	if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2254 2255 2256 2257 2258 2259
			UDF_PART_FLAG_READ_ONLY) {
		if (!sb_rdonly(sb)) {
			ret = -EACCES;
			goto error_out;
		}
		UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
2260
	}
2261

J
Jan Kara 已提交
2262 2263
	ret = udf_find_fileset(sb, &fileset, &rootdir);
	if (ret < 0) {
J
Joe Perches 已提交
2264
		udf_warn(sb, "No fileset found\n");
L
Linus Torvalds 已提交
2265 2266 2267
		goto error_out;
	}

2268
	if (!silent) {
2269
		struct timestamp ts;
2270
		udf_time_to_disk_stamp(&ts, sbi->s_record_time);
J
Joe Perches 已提交
2271 2272 2273
		udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
			 sbi->s_volume_ident,
			 le16_to_cpu(ts.year), ts.month, ts.day,
2274
			 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
L
Linus Torvalds 已提交
2275
	}
2276
	if (!sb_rdonly(sb)) {
L
Linus Torvalds 已提交
2277
		udf_open_lvid(sb);
2278 2279
		lvid_open = true;
	}
L
Linus Torvalds 已提交
2280 2281 2282 2283

	/* Assign the root inode */
	/* assign inodes by physical block number */
	/* perhaps it's not extensible enough, but for now ... */
2284
	inode = udf_iget(sb, &rootdir);
2285
	if (IS_ERR(inode)) {
2286
		udf_err(sb, "Error in udf_iget, block=%u, partition=%u\n",
2287
		       rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
2288
		ret = PTR_ERR(inode);
L
Linus Torvalds 已提交
2289 2290 2291 2292
		goto error_out;
	}

	/* Allocate a dentry for the root inode */
2293
	sb->s_root = d_make_root(inode);
2294
	if (!sb->s_root) {
J
Joe Perches 已提交
2295
		udf_err(sb, "Couldn't allocate root dentry\n");
2296
		ret = -ENOMEM;
L
Linus Torvalds 已提交
2297 2298
		goto error_out;
	}
J
Jan Kara 已提交
2299
	sb->s_maxbytes = MAX_LFS_FILESIZE;
2300
	sb->s_max_links = UDF_MAX_LINKS;
L
Linus Torvalds 已提交
2301 2302
	return 0;

2303
error_out:
2304
	iput(sbi->s_vat_inode);
2305
parse_options_failure:
2306 2307
	if (uopt.nls_map)
		unload_nls(uopt.nls_map);
2308
	if (lvid_open)
L
Linus Torvalds 已提交
2309
		udf_close_lvid(sb);
M
Marcin Slusarz 已提交
2310
	brelse(sbi->s_lvid_bh);
J
Jan Kara 已提交
2311
	udf_sb_free_partitions(sb);
L
Linus Torvalds 已提交
2312 2313
	kfree(sbi);
	sb->s_fs_info = NULL;
2314

2315
	return ret;
L
Linus Torvalds 已提交
2316 2317
}

J
Joe Perches 已提交
2318 2319
void _udf_err(struct super_block *sb, const char *function,
	      const char *fmt, ...)
L
Linus Torvalds 已提交
2320
{
2321
	struct va_format vaf;
L
Linus Torvalds 已提交
2322 2323 2324
	va_list args;

	va_start(args, fmt);
2325 2326 2327 2328 2329 2330

	vaf.fmt = fmt;
	vaf.va = &args;

	pr_err("error (device %s): %s: %pV", sb->s_id, function, &vaf);

L
Linus Torvalds 已提交
2331 2332 2333
	va_end(args);
}

J
Joe Perches 已提交
2334 2335
void _udf_warn(struct super_block *sb, const char *function,
	       const char *fmt, ...)
L
Linus Torvalds 已提交
2336
{
2337
	struct va_format vaf;
L
Linus Torvalds 已提交
2338 2339
	va_list args;

2340
	va_start(args, fmt);
2341 2342 2343 2344 2345 2346

	vaf.fmt = fmt;
	vaf.va = &args;

	pr_warn("warning (device %s): %s: %pV", sb->s_id, function, &vaf);

L
Linus Torvalds 已提交
2347 2348 2349
	va_end(args);
}

2350
static void udf_put_super(struct super_block *sb)
L
Linus Torvalds 已提交
2351
{
M
Marcin Slusarz 已提交
2352
	struct udf_sb_info *sbi;
L
Linus Torvalds 已提交
2353

M
Marcin Slusarz 已提交
2354
	sbi = UDF_SB(sb);
2355

2356
	iput(sbi->s_vat_inode);
L
Linus Torvalds 已提交
2357
	if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
M
Marcin Slusarz 已提交
2358
		unload_nls(sbi->s_nls_map);
2359
	if (!sb_rdonly(sb))
L
Linus Torvalds 已提交
2360
		udf_close_lvid(sb);
M
Marcin Slusarz 已提交
2361
	brelse(sbi->s_lvid_bh);
J
Jan Kara 已提交
2362
	udf_sb_free_partitions(sb);
2363
	mutex_destroy(&sbi->s_alloc_mutex);
L
Linus Torvalds 已提交
2364 2365 2366 2367
	kfree(sb->s_fs_info);
	sb->s_fs_info = NULL;
}

2368 2369 2370 2371 2372 2373
static int udf_sync_fs(struct super_block *sb, int wait)
{
	struct udf_sb_info *sbi = UDF_SB(sb);

	mutex_lock(&sbi->s_alloc_mutex);
	if (sbi->s_lvid_dirty) {
2374
		struct buffer_head *bh = sbi->s_lvid_bh;
2375
		struct logicalVolIntegrityDesc *lvid;
2376

2377 2378
		lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
		udf_finalize_lvid(lvid);
2379

2380 2381 2382 2383
		/*
		 * Blockdevice will be synced later so we don't have to submit
		 * the buffer for IO
		 */
2384
		mark_buffer_dirty(bh);
2385 2386 2387 2388 2389 2390 2391
		sbi->s_lvid_dirty = 0;
	}
	mutex_unlock(&sbi->s_alloc_mutex);

	return 0;
}

2392
static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
L
Linus Torvalds 已提交
2393
{
2394
	struct super_block *sb = dentry->d_sb;
M
Marcin Slusarz 已提交
2395 2396
	struct udf_sb_info *sbi = UDF_SB(sb);
	struct logicalVolIntegrityDescImpUse *lvidiu;
C
Coly Li 已提交
2397
	u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
M
Marcin Slusarz 已提交
2398

J
Jan Kara 已提交
2399
	lvidiu = udf_sb_lvidiu(sb);
L
Linus Torvalds 已提交
2400 2401
	buf->f_type = UDF_SUPER_MAGIC;
	buf->f_bsize = sb->s_blocksize;
M
Marcin Slusarz 已提交
2402
	buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
L
Linus Torvalds 已提交
2403 2404
	buf->f_bfree = udf_count_free(sb);
	buf->f_bavail = buf->f_bfree;
M
Marcin Slusarz 已提交
2405 2406 2407
	buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
					  le32_to_cpu(lvidiu->numDirs)) : 0)
			+ buf->f_bfree;
L
Linus Torvalds 已提交
2408
	buf->f_ffree = buf->f_bfree;
2409
	buf->f_namelen = UDF_NAME_LEN;
C
Coly Li 已提交
2410 2411
	buf->f_fsid.val[0] = (u32)id;
	buf->f_fsid.val[1] = (u32)(id >> 32);
L
Linus Torvalds 已提交
2412 2413 2414 2415

	return 0;
}

M
Marcin Slusarz 已提交
2416 2417
static unsigned int udf_count_free_bitmap(struct super_block *sb,
					  struct udf_bitmap *bitmap)
L
Linus Torvalds 已提交
2418 2419 2420 2421
{
	struct buffer_head *bh = NULL;
	unsigned int accum = 0;
	int index;
2422
	udf_pblk_t block = 0, newblock;
2423
	struct kernel_lb_addr loc;
L
Linus Torvalds 已提交
2424 2425 2426 2427 2428 2429
	uint32_t bytes;
	uint8_t *ptr;
	uint16_t ident;
	struct spaceBitmapDesc *bm;

	loc.logicalBlockNum = bitmap->s_extPosition;
M
Marcin Slusarz 已提交
2430
	loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
2431
	bh = udf_read_ptagged(sb, &loc, 0, &ident);
L
Linus Torvalds 已提交
2432

2433
	if (!bh) {
J
Joe Perches 已提交
2434
		udf_err(sb, "udf_count_free failed\n");
L
Linus Torvalds 已提交
2435
		goto out;
2436
	} else if (ident != TAG_IDENT_SBD) {
J
Jan Kara 已提交
2437
		brelse(bh);
J
Joe Perches 已提交
2438
		udf_err(sb, "udf_count_free failed\n");
L
Linus Torvalds 已提交
2439 2440 2441 2442 2443
		goto out;
	}

	bm = (struct spaceBitmapDesc *)bh->b_data;
	bytes = le32_to_cpu(bm->numOfBytes);
2444 2445
	index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
	ptr = (uint8_t *)bh->b_data;
L
Linus Torvalds 已提交
2446

2447
	while (bytes > 0) {
2448 2449 2450 2451
		u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
		accum += bitmap_weight((const unsigned long *)(ptr + index),
					cur_bytes * 8);
		bytes -= cur_bytes;
2452
		if (bytes) {
J
Jan Kara 已提交
2453
			brelse(bh);
2454
			newblock = udf_get_lb_pblock(sb, &loc, ++block);
L
Linus Torvalds 已提交
2455
			bh = udf_tread(sb, newblock);
2456
			if (!bh) {
L
Linus Torvalds 已提交
2457 2458 2459 2460
				udf_debug("read failed\n");
				goto out;
			}
			index = 0;
2461
			ptr = (uint8_t *)bh->b_data;
L
Linus Torvalds 已提交
2462 2463
		}
	}
J
Jan Kara 已提交
2464
	brelse(bh);
2465
out:
L
Linus Torvalds 已提交
2466 2467 2468
	return accum;
}

M
Marcin Slusarz 已提交
2469 2470
static unsigned int udf_count_free_table(struct super_block *sb,
					 struct inode *table)
L
Linus Torvalds 已提交
2471 2472
{
	unsigned int accum = 0;
J
Jan Kara 已提交
2473
	uint32_t elen;
2474
	struct kernel_lb_addr eloc;
L
Linus Torvalds 已提交
2475
	int8_t etype;
J
Jan Kara 已提交
2476
	struct extent_position epos;
L
Linus Torvalds 已提交
2477

2478
	mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
2479
	epos.block = UDF_I(table)->i_location;
J
Jan Kara 已提交
2480 2481
	epos.offset = sizeof(struct unallocSpaceEntry);
	epos.bh = NULL;
L
Linus Torvalds 已提交
2482

2483
	while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
L
Linus Torvalds 已提交
2484
		accum += (elen >> table->i_sb->s_blocksize_bits);
2485

J
Jan Kara 已提交
2486
	brelse(epos.bh);
2487
	mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
L
Linus Torvalds 已提交
2488 2489 2490

	return accum;
}
2491 2492

static unsigned int udf_count_free(struct super_block *sb)
L
Linus Torvalds 已提交
2493 2494
{
	unsigned int accum = 0;
M
Marcin Slusarz 已提交
2495 2496
	struct udf_sb_info *sbi;
	struct udf_part_map *map;
L
Linus Torvalds 已提交
2497

M
Marcin Slusarz 已提交
2498 2499
	sbi = UDF_SB(sb);
	if (sbi->s_lvid_bh) {
M
Marcin Slusarz 已提交
2500 2501 2502
		struct logicalVolIntegrityDesc *lvid =
			(struct logicalVolIntegrityDesc *)
			sbi->s_lvid_bh->b_data;
M
Marcin Slusarz 已提交
2503
		if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
M
Marcin Slusarz 已提交
2504 2505
			accum = le32_to_cpu(
					lvid->freeSpaceTable[sbi->s_partition]);
L
Linus Torvalds 已提交
2506 2507 2508 2509 2510 2511 2512 2513
			if (accum == 0xFFFFFFFF)
				accum = 0;
		}
	}

	if (accum)
		return accum;

M
Marcin Slusarz 已提交
2514 2515
	map = &sbi->s_partmaps[sbi->s_partition];
	if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
2516
		accum += udf_count_free_bitmap(sb,
M
Marcin Slusarz 已提交
2517
					       map->s_uspace.s_bitmap);
L
Linus Torvalds 已提交
2518 2519 2520 2521
	}
	if (accum)
		return accum;

M
Marcin Slusarz 已提交
2522
	if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
2523
		accum += udf_count_free_table(sb,
M
Marcin Slusarz 已提交
2524
					      map->s_uspace.s_table);
L
Linus Torvalds 已提交
2525 2526 2527
	}
	return accum;
}
2528 2529 2530 2531 2532 2533

MODULE_AUTHOR("Ben Fennema");
MODULE_DESCRIPTION("Universal Disk Format Filesystem");
MODULE_LICENSE("GPL");
module_init(init_udf_fs)
module_exit(exit_udf_fs)