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