5 * Super block routines for the OSTA-UDF(tm) filesystem.
8 * OSTA-UDF(tm) = Optical Storage Technology Association
9 * Universal Disk Format.
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/
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.
23 * (C) 1998 Dave Boynton
24 * (C) 1998-2004 Ben Fennema
25 * (C) 2000 Stelias Computing Inc
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)
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/buffer_head.h>
52 #include <linux/vfs.h>
53 #include <linux/vmalloc.h>
54 #include <linux/errno.h>
55 #include <linux/mount.h>
56 #include <linux/seq_file.h>
57 #include <linux/bitmap.h>
58 #include <linux/crc-itu-t.h>
59 #include <linux/log2.h>
60 #include <asm/byteorder.h>
65 #include <linux/init.h>
66 #include <asm/uaccess.h>
68 #define VDS_POS_PRIMARY_VOL_DESC 0
69 #define VDS_POS_UNALLOC_SPACE_DESC 1
70 #define VDS_POS_LOGICAL_VOL_DESC 2
71 #define VDS_POS_PARTITION_DESC 3
72 #define VDS_POS_IMP_USE_VOL_DESC 4
73 #define VDS_POS_VOL_DESC_PTR 5
74 #define VDS_POS_TERMINATING_DESC 6
75 #define VDS_POS_LENGTH 7
77 #define UDF_DEFAULT_BLOCKSIZE 2048
79 enum { UDF_MAX_LINKS
= 0xffff };
81 /* These are the "meat" - everything else is stuffing */
82 static int udf_fill_super(struct super_block
*, void *, int);
83 static void udf_put_super(struct super_block
*);
84 static int udf_sync_fs(struct super_block
*, int);
85 static int udf_remount_fs(struct super_block
*, int *, char *);
86 static void udf_load_logicalvolint(struct super_block
*, struct kernel_extent_ad
);
87 static int udf_find_fileset(struct super_block
*, struct kernel_lb_addr
*,
88 struct kernel_lb_addr
*);
89 static void udf_load_fileset(struct super_block
*, struct buffer_head
*,
90 struct kernel_lb_addr
*);
91 static void udf_open_lvid(struct super_block
*);
92 static void udf_close_lvid(struct super_block
*);
93 static unsigned int udf_count_free(struct super_block
*);
94 static int udf_statfs(struct dentry
*, struct kstatfs
*);
95 static int udf_show_options(struct seq_file
*, struct dentry
*);
97 struct logicalVolIntegrityDescImpUse
*udf_sb_lvidiu(struct udf_sb_info
*sbi
)
99 struct logicalVolIntegrityDesc
*lvid
=
100 (struct logicalVolIntegrityDesc
*)sbi
->s_lvid_bh
->b_data
;
101 __u32 number_of_partitions
= le32_to_cpu(lvid
->numOfPartitions
);
102 __u32 offset
= number_of_partitions
* 2 *
103 sizeof(uint32_t)/sizeof(uint8_t);
104 return (struct logicalVolIntegrityDescImpUse
*)&(lvid
->impUse
[offset
]);
107 /* UDF filesystem type */
108 static struct dentry
*udf_mount(struct file_system_type
*fs_type
,
109 int flags
, const char *dev_name
, void *data
)
111 return mount_bdev(fs_type
, flags
, dev_name
, data
, udf_fill_super
);
114 static struct file_system_type udf_fstype
= {
115 .owner
= THIS_MODULE
,
118 .kill_sb
= kill_block_super
,
119 .fs_flags
= FS_REQUIRES_DEV
,
121 MODULE_ALIAS_FS("udf");
123 static struct kmem_cache
*udf_inode_cachep
;
125 static struct inode
*udf_alloc_inode(struct super_block
*sb
)
127 struct udf_inode_info
*ei
;
128 ei
= kmem_cache_alloc(udf_inode_cachep
, GFP_KERNEL
);
133 ei
->i_lenExtents
= 0;
134 ei
->i_next_alloc_block
= 0;
135 ei
->i_next_alloc_goal
= 0;
137 init_rwsem(&ei
->i_data_sem
);
138 ei
->cached_extent
.lstart
= -1;
139 spin_lock_init(&ei
->i_extent_cache_lock
);
141 return &ei
->vfs_inode
;
144 static void udf_i_callback(struct rcu_head
*head
)
146 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
147 kmem_cache_free(udf_inode_cachep
, UDF_I(inode
));
150 static void udf_destroy_inode(struct inode
*inode
)
152 call_rcu(&inode
->i_rcu
, udf_i_callback
);
155 static void init_once(void *foo
)
157 struct udf_inode_info
*ei
= (struct udf_inode_info
*)foo
;
159 ei
->i_ext
.i_data
= NULL
;
160 inode_init_once(&ei
->vfs_inode
);
163 static int init_inodecache(void)
165 udf_inode_cachep
= kmem_cache_create("udf_inode_cache",
166 sizeof(struct udf_inode_info
),
167 0, (SLAB_RECLAIM_ACCOUNT
|
170 if (!udf_inode_cachep
)
175 static void destroy_inodecache(void)
178 * Make sure all delayed rcu free inodes are flushed before we
182 kmem_cache_destroy(udf_inode_cachep
);
185 /* Superblock operations */
186 static const struct super_operations udf_sb_ops
= {
187 .alloc_inode
= udf_alloc_inode
,
188 .destroy_inode
= udf_destroy_inode
,
189 .write_inode
= udf_write_inode
,
190 .evict_inode
= udf_evict_inode
,
191 .put_super
= udf_put_super
,
192 .sync_fs
= udf_sync_fs
,
193 .statfs
= udf_statfs
,
194 .remount_fs
= udf_remount_fs
,
195 .show_options
= udf_show_options
,
200 unsigned int blocksize
;
201 unsigned int session
;
202 unsigned int lastblock
;
205 unsigned short partition
;
206 unsigned int fileset
;
207 unsigned int rootdir
;
214 struct nls_table
*nls_map
;
217 static int __init
init_udf_fs(void)
221 err
= init_inodecache();
224 err
= register_filesystem(&udf_fstype
);
231 destroy_inodecache();
237 static void __exit
exit_udf_fs(void)
239 unregister_filesystem(&udf_fstype
);
240 destroy_inodecache();
243 module_init(init_udf_fs
)
244 module_exit(exit_udf_fs
)
246 static int udf_sb_alloc_partition_maps(struct super_block
*sb
, u32 count
)
248 struct udf_sb_info
*sbi
= UDF_SB(sb
);
250 sbi
->s_partmaps
= kcalloc(count
, sizeof(struct udf_part_map
),
252 if (!sbi
->s_partmaps
) {
253 udf_err(sb
, "Unable to allocate space for %d partition maps\n",
255 sbi
->s_partitions
= 0;
259 sbi
->s_partitions
= count
;
263 static void udf_sb_free_bitmap(struct udf_bitmap
*bitmap
)
266 int nr_groups
= bitmap
->s_nr_groups
;
267 int size
= sizeof(struct udf_bitmap
) + (sizeof(struct buffer_head
*) *
270 for (i
= 0; i
< nr_groups
; i
++)
271 if (bitmap
->s_block_bitmap
[i
])
272 brelse(bitmap
->s_block_bitmap
[i
]);
274 if (size
<= PAGE_SIZE
)
280 static void udf_free_partition(struct udf_part_map
*map
)
283 struct udf_meta_data
*mdata
;
285 if (map
->s_partition_flags
& UDF_PART_FLAG_UNALLOC_TABLE
)
286 iput(map
->s_uspace
.s_table
);
287 if (map
->s_partition_flags
& UDF_PART_FLAG_FREED_TABLE
)
288 iput(map
->s_fspace
.s_table
);
289 if (map
->s_partition_flags
& UDF_PART_FLAG_UNALLOC_BITMAP
)
290 udf_sb_free_bitmap(map
->s_uspace
.s_bitmap
);
291 if (map
->s_partition_flags
& UDF_PART_FLAG_FREED_BITMAP
)
292 udf_sb_free_bitmap(map
->s_fspace
.s_bitmap
);
293 if (map
->s_partition_type
== UDF_SPARABLE_MAP15
)
294 for (i
= 0; i
< 4; i
++)
295 brelse(map
->s_type_specific
.s_sparing
.s_spar_map
[i
]);
296 else if (map
->s_partition_type
== UDF_METADATA_MAP25
) {
297 mdata
= &map
->s_type_specific
.s_metadata
;
298 iput(mdata
->s_metadata_fe
);
299 mdata
->s_metadata_fe
= NULL
;
301 iput(mdata
->s_mirror_fe
);
302 mdata
->s_mirror_fe
= NULL
;
304 iput(mdata
->s_bitmap_fe
);
305 mdata
->s_bitmap_fe
= NULL
;
309 static void udf_sb_free_partitions(struct super_block
*sb
)
311 struct udf_sb_info
*sbi
= UDF_SB(sb
);
313 if (sbi
->s_partmaps
== NULL
)
315 for (i
= 0; i
< sbi
->s_partitions
; i
++)
316 udf_free_partition(&sbi
->s_partmaps
[i
]);
317 kfree(sbi
->s_partmaps
);
318 sbi
->s_partmaps
= NULL
;
321 static int udf_show_options(struct seq_file
*seq
, struct dentry
*root
)
323 struct super_block
*sb
= root
->d_sb
;
324 struct udf_sb_info
*sbi
= UDF_SB(sb
);
326 if (!UDF_QUERY_FLAG(sb
, UDF_FLAG_STRICT
))
327 seq_puts(seq
, ",nostrict");
328 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_BLOCKSIZE_SET
))
329 seq_printf(seq
, ",bs=%lu", sb
->s_blocksize
);
330 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UNHIDE
))
331 seq_puts(seq
, ",unhide");
332 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UNDELETE
))
333 seq_puts(seq
, ",undelete");
334 if (!UDF_QUERY_FLAG(sb
, UDF_FLAG_USE_AD_IN_ICB
))
335 seq_puts(seq
, ",noadinicb");
336 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_USE_SHORT_AD
))
337 seq_puts(seq
, ",shortad");
338 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UID_FORGET
))
339 seq_puts(seq
, ",uid=forget");
340 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UID_IGNORE
))
341 seq_puts(seq
, ",uid=ignore");
342 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_GID_FORGET
))
343 seq_puts(seq
, ",gid=forget");
344 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_GID_IGNORE
))
345 seq_puts(seq
, ",gid=ignore");
346 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UID_SET
))
347 seq_printf(seq
, ",uid=%u", from_kuid(&init_user_ns
, sbi
->s_uid
));
348 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_GID_SET
))
349 seq_printf(seq
, ",gid=%u", from_kgid(&init_user_ns
, sbi
->s_gid
));
350 if (sbi
->s_umask
!= 0)
351 seq_printf(seq
, ",umask=%ho", sbi
->s_umask
);
352 if (sbi
->s_fmode
!= UDF_INVALID_MODE
)
353 seq_printf(seq
, ",mode=%ho", sbi
->s_fmode
);
354 if (sbi
->s_dmode
!= UDF_INVALID_MODE
)
355 seq_printf(seq
, ",dmode=%ho", sbi
->s_dmode
);
356 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_SESSION_SET
))
357 seq_printf(seq
, ",session=%u", sbi
->s_session
);
358 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_LASTBLOCK_SET
))
359 seq_printf(seq
, ",lastblock=%u", sbi
->s_last_block
);
360 if (sbi
->s_anchor
!= 0)
361 seq_printf(seq
, ",anchor=%u", sbi
->s_anchor
);
363 * volume, partition, fileset and rootdir seem to be ignored
366 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UTF8
))
367 seq_puts(seq
, ",utf8");
368 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_NLS_MAP
) && sbi
->s_nls_map
)
369 seq_printf(seq
, ",iocharset=%s", sbi
->s_nls_map
->charset
);
378 * Parse mount options.
381 * The following mount options are supported:
383 * gid= Set the default group.
384 * umask= Set the default umask.
385 * mode= Set the default file permissions.
386 * dmode= Set the default directory permissions.
387 * uid= Set the default user.
388 * bs= Set the block size.
389 * unhide Show otherwise hidden files.
390 * undelete Show deleted files in lists.
391 * adinicb Embed data in the inode (default)
392 * noadinicb Don't embed data in the inode
393 * shortad Use short ad's
394 * longad Use long ad's (default)
395 * nostrict Unset strict conformance
396 * iocharset= Set the NLS character set
398 * The remaining are for debugging and disaster recovery:
400 * novrs Skip volume sequence recognition
402 * The following expect a offset from 0.
404 * session= Set the CDROM session (default= last session)
405 * anchor= Override standard anchor location. (default= 256)
406 * volume= Override the VolumeDesc location. (unused)
407 * partition= Override the PartitionDesc location. (unused)
408 * lastblock= Set the last block of the filesystem/
410 * The following expect a offset from the partition root.
412 * fileset= Override the fileset block location. (unused)
413 * rootdir= Override the root directory location. (unused)
414 * WARNING: overriding the rootdir to a non-directory may
415 * yield highly unpredictable results.
418 * options Pointer to mount options string.
419 * uopts Pointer to mount options variable.
422 * <return> 1 Mount options parsed okay.
423 * <return> 0 Error parsing mount options.
426 * July 1, 1997 - Andrew E. Mileski
427 * Written, tested, and released.
431 Opt_novrs
, Opt_nostrict
, Opt_bs
, Opt_unhide
, Opt_undelete
,
432 Opt_noadinicb
, Opt_adinicb
, Opt_shortad
, Opt_longad
,
433 Opt_gid
, Opt_uid
, Opt_umask
, Opt_session
, Opt_lastblock
,
434 Opt_anchor
, Opt_volume
, Opt_partition
, Opt_fileset
,
435 Opt_rootdir
, Opt_utf8
, Opt_iocharset
,
436 Opt_err
, Opt_uforget
, Opt_uignore
, Opt_gforget
, Opt_gignore
,
440 static const match_table_t tokens
= {
441 {Opt_novrs
, "novrs"},
442 {Opt_nostrict
, "nostrict"},
444 {Opt_unhide
, "unhide"},
445 {Opt_undelete
, "undelete"},
446 {Opt_noadinicb
, "noadinicb"},
447 {Opt_adinicb
, "adinicb"},
448 {Opt_shortad
, "shortad"},
449 {Opt_longad
, "longad"},
450 {Opt_uforget
, "uid=forget"},
451 {Opt_uignore
, "uid=ignore"},
452 {Opt_gforget
, "gid=forget"},
453 {Opt_gignore
, "gid=ignore"},
456 {Opt_umask
, "umask=%o"},
457 {Opt_session
, "session=%u"},
458 {Opt_lastblock
, "lastblock=%u"},
459 {Opt_anchor
, "anchor=%u"},
460 {Opt_volume
, "volume=%u"},
461 {Opt_partition
, "partition=%u"},
462 {Opt_fileset
, "fileset=%u"},
463 {Opt_rootdir
, "rootdir=%u"},
465 {Opt_iocharset
, "iocharset=%s"},
466 {Opt_fmode
, "mode=%o"},
467 {Opt_dmode
, "dmode=%o"},
471 static int udf_parse_options(char *options
, struct udf_options
*uopt
,
478 uopt
->partition
= 0xFFFF;
479 uopt
->session
= 0xFFFFFFFF;
482 uopt
->volume
= 0xFFFFFFFF;
483 uopt
->rootdir
= 0xFFFFFFFF;
484 uopt
->fileset
= 0xFFFFFFFF;
485 uopt
->nls_map
= NULL
;
490 while ((p
= strsep(&options
, ",")) != NULL
) {
491 substring_t args
[MAX_OPT_ARGS
];
496 token
= match_token(p
, tokens
, args
);
502 if (match_int(&args
[0], &option
))
504 uopt
->blocksize
= option
;
505 uopt
->flags
|= (1 << UDF_FLAG_BLOCKSIZE_SET
);
508 uopt
->flags
|= (1 << UDF_FLAG_UNHIDE
);
511 uopt
->flags
|= (1 << UDF_FLAG_UNDELETE
);
514 uopt
->flags
&= ~(1 << UDF_FLAG_USE_AD_IN_ICB
);
517 uopt
->flags
|= (1 << UDF_FLAG_USE_AD_IN_ICB
);
520 uopt
->flags
|= (1 << UDF_FLAG_USE_SHORT_AD
);
523 uopt
->flags
&= ~(1 << UDF_FLAG_USE_SHORT_AD
);
526 if (match_int(args
, &option
))
528 uopt
->gid
= make_kgid(current_user_ns(), option
);
529 if (!gid_valid(uopt
->gid
))
531 uopt
->flags
|= (1 << UDF_FLAG_GID_SET
);
534 if (match_int(args
, &option
))
536 uopt
->uid
= make_kuid(current_user_ns(), option
);
537 if (!uid_valid(uopt
->uid
))
539 uopt
->flags
|= (1 << UDF_FLAG_UID_SET
);
542 if (match_octal(args
, &option
))
544 uopt
->umask
= option
;
547 uopt
->flags
&= ~(1 << UDF_FLAG_STRICT
);
550 if (match_int(args
, &option
))
552 uopt
->session
= option
;
554 uopt
->flags
|= (1 << UDF_FLAG_SESSION_SET
);
557 if (match_int(args
, &option
))
559 uopt
->lastblock
= option
;
561 uopt
->flags
|= (1 << UDF_FLAG_LASTBLOCK_SET
);
564 if (match_int(args
, &option
))
566 uopt
->anchor
= option
;
569 if (match_int(args
, &option
))
571 uopt
->volume
= option
;
574 if (match_int(args
, &option
))
576 uopt
->partition
= option
;
579 if (match_int(args
, &option
))
581 uopt
->fileset
= option
;
584 if (match_int(args
, &option
))
586 uopt
->rootdir
= option
;
589 uopt
->flags
|= (1 << UDF_FLAG_UTF8
);
591 #ifdef CONFIG_UDF_NLS
593 uopt
->nls_map
= load_nls(args
[0].from
);
594 uopt
->flags
|= (1 << UDF_FLAG_NLS_MAP
);
598 uopt
->flags
|= (1 << UDF_FLAG_UID_IGNORE
);
601 uopt
->flags
|= (1 << UDF_FLAG_UID_FORGET
);
604 uopt
->flags
|= (1 << UDF_FLAG_GID_IGNORE
);
607 uopt
->flags
|= (1 << UDF_FLAG_GID_FORGET
);
610 if (match_octal(args
, &option
))
612 uopt
->fmode
= option
& 0777;
615 if (match_octal(args
, &option
))
617 uopt
->dmode
= option
& 0777;
620 pr_err("bad mount option \"%s\" or missing value\n", p
);
627 static int udf_remount_fs(struct super_block
*sb
, int *flags
, char *options
)
629 struct udf_options uopt
;
630 struct udf_sb_info
*sbi
= UDF_SB(sb
);
633 uopt
.flags
= sbi
->s_flags
;
634 uopt
.uid
= sbi
->s_uid
;
635 uopt
.gid
= sbi
->s_gid
;
636 uopt
.umask
= sbi
->s_umask
;
637 uopt
.fmode
= sbi
->s_fmode
;
638 uopt
.dmode
= sbi
->s_dmode
;
640 if (!udf_parse_options(options
, &uopt
, true))
643 write_lock(&sbi
->s_cred_lock
);
644 sbi
->s_flags
= uopt
.flags
;
645 sbi
->s_uid
= uopt
.uid
;
646 sbi
->s_gid
= uopt
.gid
;
647 sbi
->s_umask
= uopt
.umask
;
648 sbi
->s_fmode
= uopt
.fmode
;
649 sbi
->s_dmode
= uopt
.dmode
;
650 write_unlock(&sbi
->s_cred_lock
);
652 if (sbi
->s_lvid_bh
) {
653 int write_rev
= le16_to_cpu(udf_sb_lvidiu(sbi
)->minUDFWriteRev
);
654 if (write_rev
> UDF_MAX_WRITE_VERSION
)
658 if ((*flags
& MS_RDONLY
) == (sb
->s_flags
& MS_RDONLY
))
661 if (*flags
& MS_RDONLY
)
670 /* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
671 /* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
672 static loff_t
udf_check_vsd(struct super_block
*sb
)
674 struct volStructDesc
*vsd
= NULL
;
675 loff_t sector
= 32768;
677 struct buffer_head
*bh
= NULL
;
680 struct udf_sb_info
*sbi
;
683 if (sb
->s_blocksize
< sizeof(struct volStructDesc
))
684 sectorsize
= sizeof(struct volStructDesc
);
686 sectorsize
= sb
->s_blocksize
;
688 sector
+= (sbi
->s_session
<< sb
->s_blocksize_bits
);
690 udf_debug("Starting at sector %u (%ld byte sectors)\n",
691 (unsigned int)(sector
>> sb
->s_blocksize_bits
),
693 /* Process the sequence (if applicable) */
694 for (; !nsr02
&& !nsr03
; sector
+= sectorsize
) {
696 bh
= udf_tread(sb
, sector
>> sb
->s_blocksize_bits
);
700 /* Look for ISO descriptors */
701 vsd
= (struct volStructDesc
*)(bh
->b_data
+
702 (sector
& (sb
->s_blocksize
- 1)));
704 if (vsd
->stdIdent
[0] == 0) {
707 } else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_CD001
,
709 switch (vsd
->structType
) {
711 udf_debug("ISO9660 Boot Record found\n");
714 udf_debug("ISO9660 Primary Volume Descriptor found\n");
717 udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
720 udf_debug("ISO9660 Volume Partition Descriptor found\n");
723 udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
726 udf_debug("ISO9660 VRS (%u) found\n",
730 } else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_BEA01
,
733 else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_TEA01
,
737 } else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_NSR02
,
740 else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_NSR03
,
750 else if (sector
- (sbi
->s_session
<< sb
->s_blocksize_bits
) == 32768)
756 static int udf_find_fileset(struct super_block
*sb
,
757 struct kernel_lb_addr
*fileset
,
758 struct kernel_lb_addr
*root
)
760 struct buffer_head
*bh
= NULL
;
763 struct udf_sb_info
*sbi
;
765 if (fileset
->logicalBlockNum
!= 0xFFFFFFFF ||
766 fileset
->partitionReferenceNum
!= 0xFFFF) {
767 bh
= udf_read_ptagged(sb
, fileset
, 0, &ident
);
771 } else if (ident
!= TAG_IDENT_FSD
) {
780 /* Search backwards through the partitions */
781 struct kernel_lb_addr newfileset
;
783 /* --> cvg: FIXME - is it reasonable? */
786 for (newfileset
.partitionReferenceNum
= sbi
->s_partitions
- 1;
787 (newfileset
.partitionReferenceNum
!= 0xFFFF &&
788 fileset
->logicalBlockNum
== 0xFFFFFFFF &&
789 fileset
->partitionReferenceNum
== 0xFFFF);
790 newfileset
.partitionReferenceNum
--) {
791 lastblock
= sbi
->s_partmaps
792 [newfileset
.partitionReferenceNum
]
794 newfileset
.logicalBlockNum
= 0;
797 bh
= udf_read_ptagged(sb
, &newfileset
, 0,
800 newfileset
.logicalBlockNum
++;
807 struct spaceBitmapDesc
*sp
;
808 sp
= (struct spaceBitmapDesc
*)
810 newfileset
.logicalBlockNum
+= 1 +
811 ((le32_to_cpu(sp
->numOfBytes
) +
812 sizeof(struct spaceBitmapDesc
)
813 - 1) >> sb
->s_blocksize_bits
);
818 *fileset
= newfileset
;
821 newfileset
.logicalBlockNum
++;
826 } while (newfileset
.logicalBlockNum
< lastblock
&&
827 fileset
->logicalBlockNum
== 0xFFFFFFFF &&
828 fileset
->partitionReferenceNum
== 0xFFFF);
832 if ((fileset
->logicalBlockNum
!= 0xFFFFFFFF ||
833 fileset
->partitionReferenceNum
!= 0xFFFF) && bh
) {
834 udf_debug("Fileset at block=%d, partition=%d\n",
835 fileset
->logicalBlockNum
,
836 fileset
->partitionReferenceNum
);
838 sbi
->s_partition
= fileset
->partitionReferenceNum
;
839 udf_load_fileset(sb
, bh
, root
);
846 static int udf_load_pvoldesc(struct super_block
*sb
, sector_t block
)
848 struct primaryVolDesc
*pvoldesc
;
849 struct ustr
*instr
, *outstr
;
850 struct buffer_head
*bh
;
854 instr
= kmalloc(sizeof(struct ustr
), GFP_NOFS
);
858 outstr
= kmalloc(sizeof(struct ustr
), GFP_NOFS
);
862 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
866 BUG_ON(ident
!= TAG_IDENT_PVD
);
868 pvoldesc
= (struct primaryVolDesc
*)bh
->b_data
;
870 if (udf_disk_stamp_to_time(&UDF_SB(sb
)->s_record_time
,
871 pvoldesc
->recordingDateAndTime
)) {
873 struct timestamp
*ts
= &pvoldesc
->recordingDateAndTime
;
874 udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
875 le16_to_cpu(ts
->year
), ts
->month
, ts
->day
, ts
->hour
,
876 ts
->minute
, le16_to_cpu(ts
->typeAndTimezone
));
880 if (!udf_build_ustr(instr
, pvoldesc
->volIdent
, 32))
881 if (udf_CS0toUTF8(outstr
, instr
)) {
882 strncpy(UDF_SB(sb
)->s_volume_ident
, outstr
->u_name
,
883 outstr
->u_len
> 31 ? 31 : outstr
->u_len
);
884 udf_debug("volIdent[] = '%s'\n",
885 UDF_SB(sb
)->s_volume_ident
);
888 if (!udf_build_ustr(instr
, pvoldesc
->volSetIdent
, 128))
889 if (udf_CS0toUTF8(outstr
, instr
))
890 udf_debug("volSetIdent[] = '%s'\n", outstr
->u_name
);
901 struct inode
*udf_find_metadata_inode_efe(struct super_block
*sb
,
902 u32 meta_file_loc
, u32 partition_num
)
904 struct kernel_lb_addr addr
;
905 struct inode
*metadata_fe
;
907 addr
.logicalBlockNum
= meta_file_loc
;
908 addr
.partitionReferenceNum
= partition_num
;
910 metadata_fe
= udf_iget(sb
, &addr
);
912 if (metadata_fe
== NULL
)
913 udf_warn(sb
, "metadata inode efe not found\n");
914 else if (UDF_I(metadata_fe
)->i_alloc_type
!= ICBTAG_FLAG_AD_SHORT
) {
915 udf_warn(sb
, "metadata inode efe does not have short allocation descriptors!\n");
923 static int udf_load_metadata_files(struct super_block
*sb
, int partition
)
925 struct udf_sb_info
*sbi
= UDF_SB(sb
);
926 struct udf_part_map
*map
;
927 struct udf_meta_data
*mdata
;
928 struct kernel_lb_addr addr
;
930 map
= &sbi
->s_partmaps
[partition
];
931 mdata
= &map
->s_type_specific
.s_metadata
;
933 /* metadata address */
934 udf_debug("Metadata file location: block = %d part = %d\n",
935 mdata
->s_meta_file_loc
, map
->s_partition_num
);
937 mdata
->s_metadata_fe
= udf_find_metadata_inode_efe(sb
,
938 mdata
->s_meta_file_loc
, map
->s_partition_num
);
940 if (mdata
->s_metadata_fe
== NULL
) {
941 /* mirror file entry */
942 udf_debug("Mirror metadata file location: block = %d part = %d\n",
943 mdata
->s_mirror_file_loc
, map
->s_partition_num
);
945 mdata
->s_mirror_fe
= udf_find_metadata_inode_efe(sb
,
946 mdata
->s_mirror_file_loc
, map
->s_partition_num
);
948 if (mdata
->s_mirror_fe
== NULL
) {
949 udf_err(sb
, "Both metadata and mirror metadata inode efe can not found\n");
957 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
959 if (mdata
->s_bitmap_file_loc
!= 0xFFFFFFFF) {
960 addr
.logicalBlockNum
= mdata
->s_bitmap_file_loc
;
961 addr
.partitionReferenceNum
= map
->s_partition_num
;
963 udf_debug("Bitmap file location: block = %d part = %d\n",
964 addr
.logicalBlockNum
, addr
.partitionReferenceNum
);
966 mdata
->s_bitmap_fe
= udf_iget(sb
, &addr
);
968 if (mdata
->s_bitmap_fe
== NULL
) {
969 if (sb
->s_flags
& MS_RDONLY
)
970 udf_warn(sb
, "bitmap inode efe not found but it's ok since the disc is mounted read-only\n");
972 udf_err(sb
, "bitmap inode efe not found and attempted read-write mount\n");
978 udf_debug("udf_load_metadata_files Ok\n");
986 static void udf_load_fileset(struct super_block
*sb
, struct buffer_head
*bh
,
987 struct kernel_lb_addr
*root
)
989 struct fileSetDesc
*fset
;
991 fset
= (struct fileSetDesc
*)bh
->b_data
;
993 *root
= lelb_to_cpu(fset
->rootDirectoryICB
.extLocation
);
995 UDF_SB(sb
)->s_serial_number
= le16_to_cpu(fset
->descTag
.tagSerialNum
);
997 udf_debug("Rootdir at block=%d, partition=%d\n",
998 root
->logicalBlockNum
, root
->partitionReferenceNum
);
1001 int udf_compute_nr_groups(struct super_block
*sb
, u32 partition
)
1003 struct udf_part_map
*map
= &UDF_SB(sb
)->s_partmaps
[partition
];
1004 return DIV_ROUND_UP(map
->s_partition_len
+
1005 (sizeof(struct spaceBitmapDesc
) << 3),
1006 sb
->s_blocksize
* 8);
1009 static struct udf_bitmap
*udf_sb_alloc_bitmap(struct super_block
*sb
, u32 index
)
1011 struct udf_bitmap
*bitmap
;
1015 nr_groups
= udf_compute_nr_groups(sb
, index
);
1016 size
= sizeof(struct udf_bitmap
) +
1017 (sizeof(struct buffer_head
*) * nr_groups
);
1019 if (size
<= PAGE_SIZE
)
1020 bitmap
= kzalloc(size
, GFP_KERNEL
);
1022 bitmap
= vzalloc(size
); /* TODO: get rid of vzalloc */
1027 bitmap
->s_nr_groups
= nr_groups
;
1031 static int udf_fill_partdesc_info(struct super_block
*sb
,
1032 struct partitionDesc
*p
, int p_index
)
1034 struct udf_part_map
*map
;
1035 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1036 struct partitionHeaderDesc
*phd
;
1038 map
= &sbi
->s_partmaps
[p_index
];
1040 map
->s_partition_len
= le32_to_cpu(p
->partitionLength
); /* blocks */
1041 map
->s_partition_root
= le32_to_cpu(p
->partitionStartingLocation
);
1043 if (p
->accessType
== cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY
))
1044 map
->s_partition_flags
|= UDF_PART_FLAG_READ_ONLY
;
1045 if (p
->accessType
== cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE
))
1046 map
->s_partition_flags
|= UDF_PART_FLAG_WRITE_ONCE
;
1047 if (p
->accessType
== cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE
))
1048 map
->s_partition_flags
|= UDF_PART_FLAG_REWRITABLE
;
1049 if (p
->accessType
== cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE
))
1050 map
->s_partition_flags
|= UDF_PART_FLAG_OVERWRITABLE
;
1052 udf_debug("Partition (%d type %x) starts at physical %d, block length %d\n",
1053 p_index
, map
->s_partition_type
,
1054 map
->s_partition_root
, map
->s_partition_len
);
1056 if (strcmp(p
->partitionContents
.ident
, PD_PARTITION_CONTENTS_NSR02
) &&
1057 strcmp(p
->partitionContents
.ident
, PD_PARTITION_CONTENTS_NSR03
))
1060 phd
= (struct partitionHeaderDesc
*)p
->partitionContentsUse
;
1061 if (phd
->unallocSpaceTable
.extLength
) {
1062 struct kernel_lb_addr loc
= {
1063 .logicalBlockNum
= le32_to_cpu(
1064 phd
->unallocSpaceTable
.extPosition
),
1065 .partitionReferenceNum
= p_index
,
1068 map
->s_uspace
.s_table
= udf_iget(sb
, &loc
);
1069 if (!map
->s_uspace
.s_table
) {
1070 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1074 map
->s_partition_flags
|= UDF_PART_FLAG_UNALLOC_TABLE
;
1075 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1076 p_index
, map
->s_uspace
.s_table
->i_ino
);
1079 if (phd
->unallocSpaceBitmap
.extLength
) {
1080 struct udf_bitmap
*bitmap
= udf_sb_alloc_bitmap(sb
, p_index
);
1083 map
->s_uspace
.s_bitmap
= bitmap
;
1084 bitmap
->s_extPosition
= le32_to_cpu(
1085 phd
->unallocSpaceBitmap
.extPosition
);
1086 map
->s_partition_flags
|= UDF_PART_FLAG_UNALLOC_BITMAP
;
1087 udf_debug("unallocSpaceBitmap (part %d) @ %d\n",
1088 p_index
, bitmap
->s_extPosition
);
1091 if (phd
->partitionIntegrityTable
.extLength
)
1092 udf_debug("partitionIntegrityTable (part %d)\n", p_index
);
1094 if (phd
->freedSpaceTable
.extLength
) {
1095 struct kernel_lb_addr loc
= {
1096 .logicalBlockNum
= le32_to_cpu(
1097 phd
->freedSpaceTable
.extPosition
),
1098 .partitionReferenceNum
= p_index
,
1101 map
->s_fspace
.s_table
= udf_iget(sb
, &loc
);
1102 if (!map
->s_fspace
.s_table
) {
1103 udf_debug("cannot load freedSpaceTable (part %d)\n",
1108 map
->s_partition_flags
|= UDF_PART_FLAG_FREED_TABLE
;
1109 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1110 p_index
, map
->s_fspace
.s_table
->i_ino
);
1113 if (phd
->freedSpaceBitmap
.extLength
) {
1114 struct udf_bitmap
*bitmap
= udf_sb_alloc_bitmap(sb
, p_index
);
1117 map
->s_fspace
.s_bitmap
= bitmap
;
1118 bitmap
->s_extPosition
= le32_to_cpu(
1119 phd
->freedSpaceBitmap
.extPosition
);
1120 map
->s_partition_flags
|= UDF_PART_FLAG_FREED_BITMAP
;
1121 udf_debug("freedSpaceBitmap (part %d) @ %d\n",
1122 p_index
, bitmap
->s_extPosition
);
1127 static void udf_find_vat_block(struct super_block
*sb
, int p_index
,
1128 int type1_index
, sector_t start_block
)
1130 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1131 struct udf_part_map
*map
= &sbi
->s_partmaps
[p_index
];
1133 struct kernel_lb_addr ino
;
1136 * VAT file entry is in the last recorded block. Some broken disks have
1137 * it a few blocks before so try a bit harder...
1139 ino
.partitionReferenceNum
= type1_index
;
1140 for (vat_block
= start_block
;
1141 vat_block
>= map
->s_partition_root
&&
1142 vat_block
>= start_block
- 3 &&
1143 !sbi
->s_vat_inode
; vat_block
--) {
1144 ino
.logicalBlockNum
= vat_block
- map
->s_partition_root
;
1145 sbi
->s_vat_inode
= udf_iget(sb
, &ino
);
1149 static int udf_load_vat(struct super_block
*sb
, int p_index
, int type1_index
)
1151 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1152 struct udf_part_map
*map
= &sbi
->s_partmaps
[p_index
];
1153 struct buffer_head
*bh
= NULL
;
1154 struct udf_inode_info
*vati
;
1156 struct virtualAllocationTable20
*vat20
;
1157 sector_t blocks
= sb
->s_bdev
->bd_inode
->i_size
>> sb
->s_blocksize_bits
;
1159 udf_find_vat_block(sb
, p_index
, type1_index
, sbi
->s_last_block
);
1160 if (!sbi
->s_vat_inode
&&
1161 sbi
->s_last_block
!= blocks
- 1) {
1162 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1163 (unsigned long)sbi
->s_last_block
,
1164 (unsigned long)blocks
- 1);
1165 udf_find_vat_block(sb
, p_index
, type1_index
, blocks
- 1);
1167 if (!sbi
->s_vat_inode
)
1170 if (map
->s_partition_type
== UDF_VIRTUAL_MAP15
) {
1171 map
->s_type_specific
.s_virtual
.s_start_offset
= 0;
1172 map
->s_type_specific
.s_virtual
.s_num_entries
=
1173 (sbi
->s_vat_inode
->i_size
- 36) >> 2;
1174 } else if (map
->s_partition_type
== UDF_VIRTUAL_MAP20
) {
1175 vati
= UDF_I(sbi
->s_vat_inode
);
1176 if (vati
->i_alloc_type
!= ICBTAG_FLAG_AD_IN_ICB
) {
1177 pos
= udf_block_map(sbi
->s_vat_inode
, 0);
1178 bh
= sb_bread(sb
, pos
);
1181 vat20
= (struct virtualAllocationTable20
*)bh
->b_data
;
1183 vat20
= (struct virtualAllocationTable20
*)
1187 map
->s_type_specific
.s_virtual
.s_start_offset
=
1188 le16_to_cpu(vat20
->lengthHeader
);
1189 map
->s_type_specific
.s_virtual
.s_num_entries
=
1190 (sbi
->s_vat_inode
->i_size
-
1191 map
->s_type_specific
.s_virtual
.
1192 s_start_offset
) >> 2;
1198 static int udf_load_partdesc(struct super_block
*sb
, sector_t block
)
1200 struct buffer_head
*bh
;
1201 struct partitionDesc
*p
;
1202 struct udf_part_map
*map
;
1203 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1205 uint16_t partitionNumber
;
1209 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
1212 if (ident
!= TAG_IDENT_PD
)
1215 p
= (struct partitionDesc
*)bh
->b_data
;
1216 partitionNumber
= le16_to_cpu(p
->partitionNumber
);
1218 /* First scan for TYPE1, SPARABLE and METADATA partitions */
1219 for (i
= 0; i
< sbi
->s_partitions
; i
++) {
1220 map
= &sbi
->s_partmaps
[i
];
1221 udf_debug("Searching map: (%d == %d)\n",
1222 map
->s_partition_num
, partitionNumber
);
1223 if (map
->s_partition_num
== partitionNumber
&&
1224 (map
->s_partition_type
== UDF_TYPE1_MAP15
||
1225 map
->s_partition_type
== UDF_SPARABLE_MAP15
))
1229 if (i
>= sbi
->s_partitions
) {
1230 udf_debug("Partition (%d) not found in partition map\n",
1235 ret
= udf_fill_partdesc_info(sb
, p
, i
);
1238 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1239 * PHYSICAL partitions are already set up
1242 for (i
= 0; i
< sbi
->s_partitions
; i
++) {
1243 map
= &sbi
->s_partmaps
[i
];
1245 if (map
->s_partition_num
== partitionNumber
&&
1246 (map
->s_partition_type
== UDF_VIRTUAL_MAP15
||
1247 map
->s_partition_type
== UDF_VIRTUAL_MAP20
||
1248 map
->s_partition_type
== UDF_METADATA_MAP25
))
1252 if (i
>= sbi
->s_partitions
)
1255 ret
= udf_fill_partdesc_info(sb
, p
, i
);
1259 if (map
->s_partition_type
== UDF_METADATA_MAP25
) {
1260 ret
= udf_load_metadata_files(sb
, i
);
1262 udf_err(sb
, "error loading MetaData partition map %d\n",
1267 ret
= udf_load_vat(sb
, i
, type1_idx
);
1271 * Mark filesystem read-only if we have a partition with
1272 * virtual map since we don't handle writing to it (we
1273 * overwrite blocks instead of relocating them).
1275 sb
->s_flags
|= MS_RDONLY
;
1276 pr_notice("Filesystem marked read-only because writing to pseudooverwrite partition is not implemented\n");
1279 /* In case loading failed, we handle cleanup in udf_fill_super */
1284 static int udf_load_sparable_map(struct super_block
*sb
,
1285 struct udf_part_map
*map
,
1286 struct sparablePartitionMap
*spm
)
1290 struct sparingTable
*st
;
1291 struct udf_sparing_data
*sdata
= &map
->s_type_specific
.s_sparing
;
1293 struct buffer_head
*bh
;
1295 map
->s_partition_type
= UDF_SPARABLE_MAP15
;
1296 sdata
->s_packet_len
= le16_to_cpu(spm
->packetLength
);
1297 if (!is_power_of_2(sdata
->s_packet_len
)) {
1298 udf_err(sb
, "error loading logical volume descriptor: "
1299 "Invalid packet length %u\n",
1300 (unsigned)sdata
->s_packet_len
);
1303 if (spm
->numSparingTables
> 4) {
1304 udf_err(sb
, "error loading logical volume descriptor: "
1305 "Too many sparing tables (%d)\n",
1306 (int)spm
->numSparingTables
);
1310 for (i
= 0; i
< spm
->numSparingTables
; i
++) {
1311 loc
= le32_to_cpu(spm
->locSparingTable
[i
]);
1312 bh
= udf_read_tagged(sb
, loc
, loc
, &ident
);
1316 st
= (struct sparingTable
*)bh
->b_data
;
1318 strncmp(st
->sparingIdent
.ident
, UDF_ID_SPARING
,
1319 strlen(UDF_ID_SPARING
)) ||
1320 sizeof(*st
) + le16_to_cpu(st
->reallocationTableLen
) >
1326 sdata
->s_spar_map
[i
] = bh
;
1328 map
->s_partition_func
= udf_get_pblock_spar15
;
1332 static int udf_load_logicalvol(struct super_block
*sb
, sector_t block
,
1333 struct kernel_lb_addr
*fileset
)
1335 struct logicalVolDesc
*lvd
;
1338 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1339 struct genericPartitionMap
*gpm
;
1341 struct buffer_head
*bh
;
1342 unsigned int table_len
;
1345 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
1348 BUG_ON(ident
!= TAG_IDENT_LVD
);
1349 lvd
= (struct logicalVolDesc
*)bh
->b_data
;
1350 table_len
= le32_to_cpu(lvd
->mapTableLength
);
1351 if (table_len
> sb
->s_blocksize
- sizeof(*lvd
)) {
1352 udf_err(sb
, "error loading logical volume descriptor: "
1353 "Partition table too long (%u > %lu)\n", table_len
,
1354 sb
->s_blocksize
- sizeof(*lvd
));
1359 ret
= udf_sb_alloc_partition_maps(sb
, le32_to_cpu(lvd
->numPartitionMaps
));
1363 for (i
= 0, offset
= 0;
1364 i
< sbi
->s_partitions
&& offset
< table_len
;
1365 i
++, offset
+= gpm
->partitionMapLength
) {
1366 struct udf_part_map
*map
= &sbi
->s_partmaps
[i
];
1367 gpm
= (struct genericPartitionMap
*)
1368 &(lvd
->partitionMaps
[offset
]);
1369 type
= gpm
->partitionMapType
;
1371 struct genericPartitionMap1
*gpm1
=
1372 (struct genericPartitionMap1
*)gpm
;
1373 map
->s_partition_type
= UDF_TYPE1_MAP15
;
1374 map
->s_volumeseqnum
= le16_to_cpu(gpm1
->volSeqNum
);
1375 map
->s_partition_num
= le16_to_cpu(gpm1
->partitionNum
);
1376 map
->s_partition_func
= NULL
;
1377 } else if (type
== 2) {
1378 struct udfPartitionMap2
*upm2
=
1379 (struct udfPartitionMap2
*)gpm
;
1380 if (!strncmp(upm2
->partIdent
.ident
, UDF_ID_VIRTUAL
,
1381 strlen(UDF_ID_VIRTUAL
))) {
1383 le16_to_cpu(((__le16
*)upm2
->partIdent
.
1386 map
->s_partition_type
=
1388 map
->s_partition_func
=
1389 udf_get_pblock_virt15
;
1391 map
->s_partition_type
=
1393 map
->s_partition_func
=
1394 udf_get_pblock_virt20
;
1396 } else if (!strncmp(upm2
->partIdent
.ident
,
1398 strlen(UDF_ID_SPARABLE
))) {
1399 if (udf_load_sparable_map(sb
, map
,
1400 (struct sparablePartitionMap
*)gpm
) < 0) {
1404 } else if (!strncmp(upm2
->partIdent
.ident
,
1406 strlen(UDF_ID_METADATA
))) {
1407 struct udf_meta_data
*mdata
=
1408 &map
->s_type_specific
.s_metadata
;
1409 struct metadataPartitionMap
*mdm
=
1410 (struct metadataPartitionMap
*)
1411 &(lvd
->partitionMaps
[offset
]);
1412 udf_debug("Parsing Logical vol part %d type %d id=%s\n",
1413 i
, type
, UDF_ID_METADATA
);
1415 map
->s_partition_type
= UDF_METADATA_MAP25
;
1416 map
->s_partition_func
= udf_get_pblock_meta25
;
1418 mdata
->s_meta_file_loc
=
1419 le32_to_cpu(mdm
->metadataFileLoc
);
1420 mdata
->s_mirror_file_loc
=
1421 le32_to_cpu(mdm
->metadataMirrorFileLoc
);
1422 mdata
->s_bitmap_file_loc
=
1423 le32_to_cpu(mdm
->metadataBitmapFileLoc
);
1424 mdata
->s_alloc_unit_size
=
1425 le32_to_cpu(mdm
->allocUnitSize
);
1426 mdata
->s_align_unit_size
=
1427 le16_to_cpu(mdm
->alignUnitSize
);
1428 if (mdm
->flags
& 0x01)
1429 mdata
->s_flags
|= MF_DUPLICATE_MD
;
1431 udf_debug("Metadata Ident suffix=0x%x\n",
1432 le16_to_cpu(*(__le16
*)
1433 mdm
->partIdent
.identSuffix
));
1434 udf_debug("Metadata part num=%d\n",
1435 le16_to_cpu(mdm
->partitionNum
));
1436 udf_debug("Metadata part alloc unit size=%d\n",
1437 le32_to_cpu(mdm
->allocUnitSize
));
1438 udf_debug("Metadata file loc=%d\n",
1439 le32_to_cpu(mdm
->metadataFileLoc
));
1440 udf_debug("Mirror file loc=%d\n",
1441 le32_to_cpu(mdm
->metadataMirrorFileLoc
));
1442 udf_debug("Bitmap file loc=%d\n",
1443 le32_to_cpu(mdm
->metadataBitmapFileLoc
));
1444 udf_debug("Flags: %d %d\n",
1445 mdata
->s_flags
, mdm
->flags
);
1447 udf_debug("Unknown ident: %s\n",
1448 upm2
->partIdent
.ident
);
1451 map
->s_volumeseqnum
= le16_to_cpu(upm2
->volSeqNum
);
1452 map
->s_partition_num
= le16_to_cpu(upm2
->partitionNum
);
1454 udf_debug("Partition (%d:%d) type %d on volume %d\n",
1455 i
, map
->s_partition_num
, type
, map
->s_volumeseqnum
);
1459 struct long_ad
*la
= (struct long_ad
*)&(lvd
->logicalVolContentsUse
[0]);
1461 *fileset
= lelb_to_cpu(la
->extLocation
);
1462 udf_debug("FileSet found in LogicalVolDesc at block=%d, partition=%d\n",
1463 fileset
->logicalBlockNum
,
1464 fileset
->partitionReferenceNum
);
1466 if (lvd
->integritySeqExt
.extLength
)
1467 udf_load_logicalvolint(sb
, leea_to_cpu(lvd
->integritySeqExt
));
1475 * udf_load_logicalvolint
1478 static void udf_load_logicalvolint(struct super_block
*sb
, struct kernel_extent_ad loc
)
1480 struct buffer_head
*bh
= NULL
;
1482 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1483 struct logicalVolIntegrityDesc
*lvid
;
1485 while (loc
.extLength
> 0 &&
1486 (bh
= udf_read_tagged(sb
, loc
.extLocation
,
1487 loc
.extLocation
, &ident
)) &&
1488 ident
== TAG_IDENT_LVID
) {
1489 sbi
->s_lvid_bh
= bh
;
1490 lvid
= (struct logicalVolIntegrityDesc
*)bh
->b_data
;
1492 if (lvid
->nextIntegrityExt
.extLength
)
1493 udf_load_logicalvolint(sb
,
1494 leea_to_cpu(lvid
->nextIntegrityExt
));
1496 if (sbi
->s_lvid_bh
!= bh
)
1498 loc
.extLength
-= sb
->s_blocksize
;
1501 if (sbi
->s_lvid_bh
!= bh
)
1506 * udf_process_sequence
1509 * Process a main/reserve volume descriptor sequence.
1512 * sb Pointer to _locked_ superblock.
1513 * block First block of first extent of the sequence.
1514 * lastblock Lastblock of first extent of the sequence.
1517 * July 1, 1997 - Andrew E. Mileski
1518 * Written, tested, and released.
1520 static noinline
int udf_process_sequence(struct super_block
*sb
, long block
,
1521 long lastblock
, struct kernel_lb_addr
*fileset
)
1523 struct buffer_head
*bh
= NULL
;
1524 struct udf_vds_record vds
[VDS_POS_LENGTH
];
1525 struct udf_vds_record
*curr
;
1526 struct generic_desc
*gd
;
1527 struct volDescPtr
*vdp
;
1531 long next_s
= 0, next_e
= 0;
1533 memset(vds
, 0, sizeof(struct udf_vds_record
) * VDS_POS_LENGTH
);
1536 * Read the main descriptor sequence and find which descriptors
1539 for (; (!done
&& block
<= lastblock
); block
++) {
1541 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
1544 "Block %llu of volume descriptor sequence is corrupted or we could not read it\n",
1545 (unsigned long long)block
);
1549 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1550 gd
= (struct generic_desc
*)bh
->b_data
;
1551 vdsn
= le32_to_cpu(gd
->volDescSeqNum
);
1553 case TAG_IDENT_PVD
: /* ISO 13346 3/10.1 */
1554 curr
= &vds
[VDS_POS_PRIMARY_VOL_DESC
];
1555 if (vdsn
>= curr
->volDescSeqNum
) {
1556 curr
->volDescSeqNum
= vdsn
;
1557 curr
->block
= block
;
1560 case TAG_IDENT_VDP
: /* ISO 13346 3/10.3 */
1561 curr
= &vds
[VDS_POS_VOL_DESC_PTR
];
1562 if (vdsn
>= curr
->volDescSeqNum
) {
1563 curr
->volDescSeqNum
= vdsn
;
1564 curr
->block
= block
;
1566 vdp
= (struct volDescPtr
*)bh
->b_data
;
1567 next_s
= le32_to_cpu(
1568 vdp
->nextVolDescSeqExt
.extLocation
);
1569 next_e
= le32_to_cpu(
1570 vdp
->nextVolDescSeqExt
.extLength
);
1571 next_e
= next_e
>> sb
->s_blocksize_bits
;
1575 case TAG_IDENT_IUVD
: /* ISO 13346 3/10.4 */
1576 curr
= &vds
[VDS_POS_IMP_USE_VOL_DESC
];
1577 if (vdsn
>= curr
->volDescSeqNum
) {
1578 curr
->volDescSeqNum
= vdsn
;
1579 curr
->block
= block
;
1582 case TAG_IDENT_PD
: /* ISO 13346 3/10.5 */
1583 curr
= &vds
[VDS_POS_PARTITION_DESC
];
1585 curr
->block
= block
;
1587 case TAG_IDENT_LVD
: /* ISO 13346 3/10.6 */
1588 curr
= &vds
[VDS_POS_LOGICAL_VOL_DESC
];
1589 if (vdsn
>= curr
->volDescSeqNum
) {
1590 curr
->volDescSeqNum
= vdsn
;
1591 curr
->block
= block
;
1594 case TAG_IDENT_USD
: /* ISO 13346 3/10.8 */
1595 curr
= &vds
[VDS_POS_UNALLOC_SPACE_DESC
];
1596 if (vdsn
>= curr
->volDescSeqNum
) {
1597 curr
->volDescSeqNum
= vdsn
;
1598 curr
->block
= block
;
1601 case TAG_IDENT_TD
: /* ISO 13346 3/10.9 */
1602 vds
[VDS_POS_TERMINATING_DESC
].block
= block
;
1606 next_s
= next_e
= 0;
1614 * Now read interesting descriptors again and process them
1615 * in a suitable order
1617 if (!vds
[VDS_POS_PRIMARY_VOL_DESC
].block
) {
1618 udf_err(sb
, "Primary Volume Descriptor not found!\n");
1621 if (udf_load_pvoldesc(sb
, vds
[VDS_POS_PRIMARY_VOL_DESC
].block
))
1624 if (vds
[VDS_POS_LOGICAL_VOL_DESC
].block
&& udf_load_logicalvol(sb
,
1625 vds
[VDS_POS_LOGICAL_VOL_DESC
].block
, fileset
))
1628 if (vds
[VDS_POS_PARTITION_DESC
].block
) {
1630 * We rescan the whole descriptor sequence to find
1631 * partition descriptor blocks and process them.
1633 for (block
= vds
[VDS_POS_PARTITION_DESC
].block
;
1634 block
< vds
[VDS_POS_TERMINATING_DESC
].block
;
1636 if (udf_load_partdesc(sb
, block
))
1643 static int udf_load_sequence(struct super_block
*sb
, struct buffer_head
*bh
,
1644 struct kernel_lb_addr
*fileset
)
1646 struct anchorVolDescPtr
*anchor
;
1647 long main_s
, main_e
, reserve_s
, reserve_e
;
1649 anchor
= (struct anchorVolDescPtr
*)bh
->b_data
;
1651 /* Locate the main sequence */
1652 main_s
= le32_to_cpu(anchor
->mainVolDescSeqExt
.extLocation
);
1653 main_e
= le32_to_cpu(anchor
->mainVolDescSeqExt
.extLength
);
1654 main_e
= main_e
>> sb
->s_blocksize_bits
;
1657 /* Locate the reserve sequence */
1658 reserve_s
= le32_to_cpu(anchor
->reserveVolDescSeqExt
.extLocation
);
1659 reserve_e
= le32_to_cpu(anchor
->reserveVolDescSeqExt
.extLength
);
1660 reserve_e
= reserve_e
>> sb
->s_blocksize_bits
;
1661 reserve_e
+= reserve_s
;
1663 /* Process the main & reserve sequences */
1664 /* responsible for finding the PartitionDesc(s) */
1665 if (!udf_process_sequence(sb
, main_s
, main_e
, fileset
))
1667 udf_sb_free_partitions(sb
);
1668 if (!udf_process_sequence(sb
, reserve_s
, reserve_e
, fileset
))
1670 udf_sb_free_partitions(sb
);
1675 * Check whether there is an anchor block in the given block and
1676 * load Volume Descriptor Sequence if so.
1678 static int udf_check_anchor_block(struct super_block
*sb
, sector_t block
,
1679 struct kernel_lb_addr
*fileset
)
1681 struct buffer_head
*bh
;
1685 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_VARCONV
) &&
1686 udf_fixed_to_variable(block
) >=
1687 sb
->s_bdev
->bd_inode
->i_size
>> sb
->s_blocksize_bits
)
1690 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
1693 if (ident
!= TAG_IDENT_AVDP
) {
1697 ret
= udf_load_sequence(sb
, bh
, fileset
);
1702 /* Search for an anchor volume descriptor pointer */
1703 static sector_t
udf_scan_anchors(struct super_block
*sb
, sector_t lastblock
,
1704 struct kernel_lb_addr
*fileset
)
1708 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1711 /* First try user provided anchor */
1712 if (sbi
->s_anchor
) {
1713 if (udf_check_anchor_block(sb
, sbi
->s_anchor
, fileset
))
1717 * according to spec, anchor is in either:
1721 * however, if the disc isn't closed, it could be 512.
1723 if (udf_check_anchor_block(sb
, sbi
->s_session
+ 256, fileset
))
1726 * The trouble is which block is the last one. Drives often misreport
1727 * this so we try various possibilities.
1729 last
[last_count
++] = lastblock
;
1731 last
[last_count
++] = lastblock
- 1;
1732 last
[last_count
++] = lastblock
+ 1;
1734 last
[last_count
++] = lastblock
- 2;
1735 if (lastblock
>= 150)
1736 last
[last_count
++] = lastblock
- 150;
1737 if (lastblock
>= 152)
1738 last
[last_count
++] = lastblock
- 152;
1740 for (i
= 0; i
< last_count
; i
++) {
1741 if (last
[i
] >= sb
->s_bdev
->bd_inode
->i_size
>>
1742 sb
->s_blocksize_bits
)
1744 if (udf_check_anchor_block(sb
, last
[i
], fileset
))
1748 if (udf_check_anchor_block(sb
, last
[i
] - 256, fileset
))
1752 /* Finally try block 512 in case media is open */
1753 if (udf_check_anchor_block(sb
, sbi
->s_session
+ 512, fileset
))
1759 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1760 * area specified by it. The function expects sbi->s_lastblock to be the last
1761 * block on the media.
1763 * Return 1 if ok, 0 if not found.
1766 static int udf_find_anchor(struct super_block
*sb
,
1767 struct kernel_lb_addr
*fileset
)
1770 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1772 lastblock
= udf_scan_anchors(sb
, sbi
->s_last_block
, fileset
);
1776 /* No anchor found? Try VARCONV conversion of block numbers */
1777 UDF_SET_FLAG(sb
, UDF_FLAG_VARCONV
);
1778 /* Firstly, we try to not convert number of the last block */
1779 lastblock
= udf_scan_anchors(sb
,
1780 udf_variable_to_fixed(sbi
->s_last_block
),
1785 /* Secondly, we try with converted number of the last block */
1786 lastblock
= udf_scan_anchors(sb
, sbi
->s_last_block
, fileset
);
1788 /* VARCONV didn't help. Clear it. */
1789 UDF_CLEAR_FLAG(sb
, UDF_FLAG_VARCONV
);
1793 sbi
->s_last_block
= lastblock
;
1798 * Check Volume Structure Descriptor, find Anchor block and load Volume
1799 * Descriptor Sequence
1801 static int udf_load_vrs(struct super_block
*sb
, struct udf_options
*uopt
,
1802 int silent
, struct kernel_lb_addr
*fileset
)
1804 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1807 if (!sb_set_blocksize(sb
, uopt
->blocksize
)) {
1809 udf_warn(sb
, "Bad block size\n");
1812 sbi
->s_last_block
= uopt
->lastblock
;
1814 /* Check that it is NSR02 compliant */
1815 nsr_off
= udf_check_vsd(sb
);
1818 udf_warn(sb
, "No VRS found\n");
1822 udf_debug("Failed to read byte 32768. Assuming open disc. Skipping validity check\n");
1823 if (!sbi
->s_last_block
)
1824 sbi
->s_last_block
= udf_get_last_block(sb
);
1826 udf_debug("Validity check skipped because of novrs option\n");
1829 /* Look for anchor block and load Volume Descriptor Sequence */
1830 sbi
->s_anchor
= uopt
->anchor
;
1831 if (!udf_find_anchor(sb
, fileset
)) {
1833 udf_warn(sb
, "No anchor found\n");
1839 static void udf_open_lvid(struct super_block
*sb
)
1841 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1842 struct buffer_head
*bh
= sbi
->s_lvid_bh
;
1843 struct logicalVolIntegrityDesc
*lvid
;
1844 struct logicalVolIntegrityDescImpUse
*lvidiu
;
1849 mutex_lock(&sbi
->s_alloc_mutex
);
1850 lvid
= (struct logicalVolIntegrityDesc
*)bh
->b_data
;
1851 lvidiu
= udf_sb_lvidiu(sbi
);
1853 lvidiu
->impIdent
.identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1854 lvidiu
->impIdent
.identSuffix
[1] = UDF_OS_ID_LINUX
;
1855 udf_time_to_disk_stamp(&lvid
->recordingDateAndTime
,
1857 lvid
->integrityType
= cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN
);
1859 lvid
->descTag
.descCRC
= cpu_to_le16(
1860 crc_itu_t(0, (char *)lvid
+ sizeof(struct tag
),
1861 le16_to_cpu(lvid
->descTag
.descCRCLength
)));
1863 lvid
->descTag
.tagChecksum
= udf_tag_checksum(&lvid
->descTag
);
1864 mark_buffer_dirty(bh
);
1865 sbi
->s_lvid_dirty
= 0;
1866 mutex_unlock(&sbi
->s_alloc_mutex
);
1867 /* Make opening of filesystem visible on the media immediately */
1868 sync_dirty_buffer(bh
);
1871 static void udf_close_lvid(struct super_block
*sb
)
1873 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1874 struct buffer_head
*bh
= sbi
->s_lvid_bh
;
1875 struct logicalVolIntegrityDesc
*lvid
;
1876 struct logicalVolIntegrityDescImpUse
*lvidiu
;
1881 mutex_lock(&sbi
->s_alloc_mutex
);
1882 lvid
= (struct logicalVolIntegrityDesc
*)bh
->b_data
;
1883 lvidiu
= udf_sb_lvidiu(sbi
);
1884 lvidiu
->impIdent
.identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1885 lvidiu
->impIdent
.identSuffix
[1] = UDF_OS_ID_LINUX
;
1886 udf_time_to_disk_stamp(&lvid
->recordingDateAndTime
, CURRENT_TIME
);
1887 if (UDF_MAX_WRITE_VERSION
> le16_to_cpu(lvidiu
->maxUDFWriteRev
))
1888 lvidiu
->maxUDFWriteRev
= cpu_to_le16(UDF_MAX_WRITE_VERSION
);
1889 if (sbi
->s_udfrev
> le16_to_cpu(lvidiu
->minUDFReadRev
))
1890 lvidiu
->minUDFReadRev
= cpu_to_le16(sbi
->s_udfrev
);
1891 if (sbi
->s_udfrev
> le16_to_cpu(lvidiu
->minUDFWriteRev
))
1892 lvidiu
->minUDFWriteRev
= cpu_to_le16(sbi
->s_udfrev
);
1893 lvid
->integrityType
= cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE
);
1895 lvid
->descTag
.descCRC
= cpu_to_le16(
1896 crc_itu_t(0, (char *)lvid
+ sizeof(struct tag
),
1897 le16_to_cpu(lvid
->descTag
.descCRCLength
)));
1899 lvid
->descTag
.tagChecksum
= udf_tag_checksum(&lvid
->descTag
);
1901 * We set buffer uptodate unconditionally here to avoid spurious
1902 * warnings from mark_buffer_dirty() when previous EIO has marked
1903 * the buffer as !uptodate
1905 set_buffer_uptodate(bh
);
1906 mark_buffer_dirty(bh
);
1907 sbi
->s_lvid_dirty
= 0;
1908 mutex_unlock(&sbi
->s_alloc_mutex
);
1909 /* Make closing of filesystem visible on the media immediately */
1910 sync_dirty_buffer(bh
);
1913 u64
lvid_get_unique_id(struct super_block
*sb
)
1915 struct buffer_head
*bh
;
1916 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1917 struct logicalVolIntegrityDesc
*lvid
;
1918 struct logicalVolHeaderDesc
*lvhd
;
1922 bh
= sbi
->s_lvid_bh
;
1926 lvid
= (struct logicalVolIntegrityDesc
*)bh
->b_data
;
1927 lvhd
= (struct logicalVolHeaderDesc
*)lvid
->logicalVolContentsUse
;
1929 mutex_lock(&sbi
->s_alloc_mutex
);
1930 ret
= uniqueID
= le64_to_cpu(lvhd
->uniqueID
);
1931 if (!(++uniqueID
& 0xFFFFFFFF))
1933 lvhd
->uniqueID
= cpu_to_le64(uniqueID
);
1934 mutex_unlock(&sbi
->s_alloc_mutex
);
1935 mark_buffer_dirty(bh
);
1940 static int udf_fill_super(struct super_block
*sb
, void *options
, int silent
)
1943 struct inode
*inode
= NULL
;
1944 struct udf_options uopt
;
1945 struct kernel_lb_addr rootdir
, fileset
;
1946 struct udf_sb_info
*sbi
;
1948 uopt
.flags
= (1 << UDF_FLAG_USE_AD_IN_ICB
) | (1 << UDF_FLAG_STRICT
);
1949 uopt
.uid
= INVALID_UID
;
1950 uopt
.gid
= INVALID_GID
;
1952 uopt
.fmode
= UDF_INVALID_MODE
;
1953 uopt
.dmode
= UDF_INVALID_MODE
;
1955 sbi
= kzalloc(sizeof(struct udf_sb_info
), GFP_KERNEL
);
1959 sb
->s_fs_info
= sbi
;
1961 mutex_init(&sbi
->s_alloc_mutex
);
1963 if (!udf_parse_options((char *)options
, &uopt
, false))
1966 if (uopt
.flags
& (1 << UDF_FLAG_UTF8
) &&
1967 uopt
.flags
& (1 << UDF_FLAG_NLS_MAP
)) {
1968 udf_err(sb
, "utf8 cannot be combined with iocharset\n");
1971 #ifdef CONFIG_UDF_NLS
1972 if ((uopt
.flags
& (1 << UDF_FLAG_NLS_MAP
)) && !uopt
.nls_map
) {
1973 uopt
.nls_map
= load_nls_default();
1975 uopt
.flags
&= ~(1 << UDF_FLAG_NLS_MAP
);
1977 udf_debug("Using default NLS map\n");
1980 if (!(uopt
.flags
& (1 << UDF_FLAG_NLS_MAP
)))
1981 uopt
.flags
|= (1 << UDF_FLAG_UTF8
);
1983 fileset
.logicalBlockNum
= 0xFFFFFFFF;
1984 fileset
.partitionReferenceNum
= 0xFFFF;
1986 sbi
->s_flags
= uopt
.flags
;
1987 sbi
->s_uid
= uopt
.uid
;
1988 sbi
->s_gid
= uopt
.gid
;
1989 sbi
->s_umask
= uopt
.umask
;
1990 sbi
->s_fmode
= uopt
.fmode
;
1991 sbi
->s_dmode
= uopt
.dmode
;
1992 sbi
->s_nls_map
= uopt
.nls_map
;
1993 rwlock_init(&sbi
->s_cred_lock
);
1995 if (uopt
.session
== 0xFFFFFFFF)
1996 sbi
->s_session
= udf_get_last_session(sb
);
1998 sbi
->s_session
= uopt
.session
;
2000 udf_debug("Multi-session=%d\n", sbi
->s_session
);
2002 /* Fill in the rest of the superblock */
2003 sb
->s_op
= &udf_sb_ops
;
2004 sb
->s_export_op
= &udf_export_ops
;
2006 sb
->s_magic
= UDF_SUPER_MAGIC
;
2007 sb
->s_time_gran
= 1000;
2009 if (uopt
.flags
& (1 << UDF_FLAG_BLOCKSIZE_SET
)) {
2010 ret
= udf_load_vrs(sb
, &uopt
, silent
, &fileset
);
2012 uopt
.blocksize
= bdev_logical_block_size(sb
->s_bdev
);
2013 ret
= udf_load_vrs(sb
, &uopt
, silent
, &fileset
);
2014 if (!ret
&& uopt
.blocksize
!= UDF_DEFAULT_BLOCKSIZE
) {
2016 pr_notice("Rescanning with blocksize %d\n",
2017 UDF_DEFAULT_BLOCKSIZE
);
2018 brelse(sbi
->s_lvid_bh
);
2019 sbi
->s_lvid_bh
= NULL
;
2020 uopt
.blocksize
= UDF_DEFAULT_BLOCKSIZE
;
2021 ret
= udf_load_vrs(sb
, &uopt
, silent
, &fileset
);
2025 udf_warn(sb
, "No partition found (1)\n");
2029 udf_debug("Lastblock=%d\n", sbi
->s_last_block
);
2031 if (sbi
->s_lvid_bh
) {
2032 struct logicalVolIntegrityDescImpUse
*lvidiu
=
2034 uint16_t minUDFReadRev
= le16_to_cpu(lvidiu
->minUDFReadRev
);
2035 uint16_t minUDFWriteRev
= le16_to_cpu(lvidiu
->minUDFWriteRev
);
2036 /* uint16_t maxUDFWriteRev =
2037 le16_to_cpu(lvidiu->maxUDFWriteRev); */
2039 if (minUDFReadRev
> UDF_MAX_READ_VERSION
) {
2040 udf_err(sb
, "minUDFReadRev=%x (max is %x)\n",
2041 le16_to_cpu(lvidiu
->minUDFReadRev
),
2042 UDF_MAX_READ_VERSION
);
2044 } else if (minUDFWriteRev
> UDF_MAX_WRITE_VERSION
)
2045 sb
->s_flags
|= MS_RDONLY
;
2047 sbi
->s_udfrev
= minUDFWriteRev
;
2049 if (minUDFReadRev
>= UDF_VERS_USE_EXTENDED_FE
)
2050 UDF_SET_FLAG(sb
, UDF_FLAG_USE_EXTENDED_FE
);
2051 if (minUDFReadRev
>= UDF_VERS_USE_STREAMS
)
2052 UDF_SET_FLAG(sb
, UDF_FLAG_USE_STREAMS
);
2055 if (!sbi
->s_partitions
) {
2056 udf_warn(sb
, "No partition found (2)\n");
2060 if (sbi
->s_partmaps
[sbi
->s_partition
].s_partition_flags
&
2061 UDF_PART_FLAG_READ_ONLY
) {
2062 pr_notice("Partition marked readonly; forcing readonly mount\n");
2063 sb
->s_flags
|= MS_RDONLY
;
2066 if (udf_find_fileset(sb
, &fileset
, &rootdir
)) {
2067 udf_warn(sb
, "No fileset found\n");
2072 struct timestamp ts
;
2073 udf_time_to_disk_stamp(&ts
, sbi
->s_record_time
);
2074 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2075 sbi
->s_volume_ident
,
2076 le16_to_cpu(ts
.year
), ts
.month
, ts
.day
,
2077 ts
.hour
, ts
.minute
, le16_to_cpu(ts
.typeAndTimezone
));
2079 if (!(sb
->s_flags
& MS_RDONLY
))
2082 /* Assign the root inode */
2083 /* assign inodes by physical block number */
2084 /* perhaps it's not extensible enough, but for now ... */
2085 inode
= udf_iget(sb
, &rootdir
);
2087 udf_err(sb
, "Error in udf_iget, block=%d, partition=%d\n",
2088 rootdir
.logicalBlockNum
, rootdir
.partitionReferenceNum
);
2092 /* Allocate a dentry for the root inode */
2093 sb
->s_root
= d_make_root(inode
);
2095 udf_err(sb
, "Couldn't allocate root dentry\n");
2098 sb
->s_maxbytes
= MAX_LFS_FILESIZE
;
2099 sb
->s_max_links
= UDF_MAX_LINKS
;
2103 if (sbi
->s_vat_inode
)
2104 iput(sbi
->s_vat_inode
);
2105 #ifdef CONFIG_UDF_NLS
2106 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_NLS_MAP
))
2107 unload_nls(sbi
->s_nls_map
);
2109 if (!(sb
->s_flags
& MS_RDONLY
))
2111 brelse(sbi
->s_lvid_bh
);
2112 udf_sb_free_partitions(sb
);
2114 sb
->s_fs_info
= NULL
;
2119 void _udf_err(struct super_block
*sb
, const char *function
,
2120 const char *fmt
, ...)
2122 struct va_format vaf
;
2125 va_start(args
, fmt
);
2130 pr_err("error (device %s): %s: %pV", sb
->s_id
, function
, &vaf
);
2135 void _udf_warn(struct super_block
*sb
, const char *function
,
2136 const char *fmt
, ...)
2138 struct va_format vaf
;
2141 va_start(args
, fmt
);
2146 pr_warn("warning (device %s): %s: %pV", sb
->s_id
, function
, &vaf
);
2151 static void udf_put_super(struct super_block
*sb
)
2153 struct udf_sb_info
*sbi
;
2157 if (sbi
->s_vat_inode
)
2158 iput(sbi
->s_vat_inode
);
2159 #ifdef CONFIG_UDF_NLS
2160 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_NLS_MAP
))
2161 unload_nls(sbi
->s_nls_map
);
2163 if (!(sb
->s_flags
& MS_RDONLY
))
2165 brelse(sbi
->s_lvid_bh
);
2166 udf_sb_free_partitions(sb
);
2167 kfree(sb
->s_fs_info
);
2168 sb
->s_fs_info
= NULL
;
2171 static int udf_sync_fs(struct super_block
*sb
, int wait
)
2173 struct udf_sb_info
*sbi
= UDF_SB(sb
);
2175 mutex_lock(&sbi
->s_alloc_mutex
);
2176 if (sbi
->s_lvid_dirty
) {
2178 * Blockdevice will be synced later so we don't have to submit
2181 mark_buffer_dirty(sbi
->s_lvid_bh
);
2182 sbi
->s_lvid_dirty
= 0;
2184 mutex_unlock(&sbi
->s_alloc_mutex
);
2189 static int udf_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
2191 struct super_block
*sb
= dentry
->d_sb
;
2192 struct udf_sb_info
*sbi
= UDF_SB(sb
);
2193 struct logicalVolIntegrityDescImpUse
*lvidiu
;
2194 u64 id
= huge_encode_dev(sb
->s_bdev
->bd_dev
);
2196 if (sbi
->s_lvid_bh
!= NULL
)
2197 lvidiu
= udf_sb_lvidiu(sbi
);
2201 buf
->f_type
= UDF_SUPER_MAGIC
;
2202 buf
->f_bsize
= sb
->s_blocksize
;
2203 buf
->f_blocks
= sbi
->s_partmaps
[sbi
->s_partition
].s_partition_len
;
2204 buf
->f_bfree
= udf_count_free(sb
);
2205 buf
->f_bavail
= buf
->f_bfree
;
2206 buf
->f_files
= (lvidiu
!= NULL
? (le32_to_cpu(lvidiu
->numFiles
) +
2207 le32_to_cpu(lvidiu
->numDirs
)) : 0)
2209 buf
->f_ffree
= buf
->f_bfree
;
2210 buf
->f_namelen
= UDF_NAME_LEN
- 2;
2211 buf
->f_fsid
.val
[0] = (u32
)id
;
2212 buf
->f_fsid
.val
[1] = (u32
)(id
>> 32);
2217 static unsigned int udf_count_free_bitmap(struct super_block
*sb
,
2218 struct udf_bitmap
*bitmap
)
2220 struct buffer_head
*bh
= NULL
;
2221 unsigned int accum
= 0;
2223 int block
= 0, newblock
;
2224 struct kernel_lb_addr loc
;
2228 struct spaceBitmapDesc
*bm
;
2230 loc
.logicalBlockNum
= bitmap
->s_extPosition
;
2231 loc
.partitionReferenceNum
= UDF_SB(sb
)->s_partition
;
2232 bh
= udf_read_ptagged(sb
, &loc
, 0, &ident
);
2235 udf_err(sb
, "udf_count_free failed\n");
2237 } else if (ident
!= TAG_IDENT_SBD
) {
2239 udf_err(sb
, "udf_count_free failed\n");
2243 bm
= (struct spaceBitmapDesc
*)bh
->b_data
;
2244 bytes
= le32_to_cpu(bm
->numOfBytes
);
2245 index
= sizeof(struct spaceBitmapDesc
); /* offset in first block only */
2246 ptr
= (uint8_t *)bh
->b_data
;
2249 u32 cur_bytes
= min_t(u32
, bytes
, sb
->s_blocksize
- index
);
2250 accum
+= bitmap_weight((const unsigned long *)(ptr
+ index
),
2255 newblock
= udf_get_lb_pblock(sb
, &loc
, ++block
);
2256 bh
= udf_tread(sb
, newblock
);
2258 udf_debug("read failed\n");
2262 ptr
= (uint8_t *)bh
->b_data
;
2270 static unsigned int udf_count_free_table(struct super_block
*sb
,
2271 struct inode
*table
)
2273 unsigned int accum
= 0;
2275 struct kernel_lb_addr eloc
;
2277 struct extent_position epos
;
2279 mutex_lock(&UDF_SB(sb
)->s_alloc_mutex
);
2280 epos
.block
= UDF_I(table
)->i_location
;
2281 epos
.offset
= sizeof(struct unallocSpaceEntry
);
2284 while ((etype
= udf_next_aext(table
, &epos
, &eloc
, &elen
, 1)) != -1)
2285 accum
+= (elen
>> table
->i_sb
->s_blocksize_bits
);
2288 mutex_unlock(&UDF_SB(sb
)->s_alloc_mutex
);
2293 static unsigned int udf_count_free(struct super_block
*sb
)
2295 unsigned int accum
= 0;
2296 struct udf_sb_info
*sbi
;
2297 struct udf_part_map
*map
;
2300 if (sbi
->s_lvid_bh
) {
2301 struct logicalVolIntegrityDesc
*lvid
=
2302 (struct logicalVolIntegrityDesc
*)
2303 sbi
->s_lvid_bh
->b_data
;
2304 if (le32_to_cpu(lvid
->numOfPartitions
) > sbi
->s_partition
) {
2305 accum
= le32_to_cpu(
2306 lvid
->freeSpaceTable
[sbi
->s_partition
]);
2307 if (accum
== 0xFFFFFFFF)
2315 map
= &sbi
->s_partmaps
[sbi
->s_partition
];
2316 if (map
->s_partition_flags
& UDF_PART_FLAG_UNALLOC_BITMAP
) {
2317 accum
+= udf_count_free_bitmap(sb
,
2318 map
->s_uspace
.s_bitmap
);
2320 if (map
->s_partition_flags
& UDF_PART_FLAG_FREED_BITMAP
) {
2321 accum
+= udf_count_free_bitmap(sb
,
2322 map
->s_fspace
.s_bitmap
);
2327 if (map
->s_partition_flags
& UDF_PART_FLAG_UNALLOC_TABLE
) {
2328 accum
+= udf_count_free_table(sb
,
2329 map
->s_uspace
.s_table
);
2331 if (map
->s_partition_flags
& UDF_PART_FLAG_FREED_TABLE
) {
2332 accum
+= udf_count_free_table(sb
,
2333 map
->s_fspace
.s_table
);