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 /* These are the "meat" - everything else is stuffing */
80 static int udf_fill_super(struct super_block
*, void *, int);
81 static void udf_put_super(struct super_block
*);
82 static int udf_sync_fs(struct super_block
*, int);
83 static int udf_remount_fs(struct super_block
*, int *, char *);
84 static void udf_load_logicalvolint(struct super_block
*, struct kernel_extent_ad
);
85 static int udf_find_fileset(struct super_block
*, struct kernel_lb_addr
*,
86 struct kernel_lb_addr
*);
87 static void udf_load_fileset(struct super_block
*, struct buffer_head
*,
88 struct kernel_lb_addr
*);
89 static void udf_open_lvid(struct super_block
*);
90 static void udf_close_lvid(struct super_block
*);
91 static unsigned int udf_count_free(struct super_block
*);
92 static int udf_statfs(struct dentry
*, struct kstatfs
*);
93 static int udf_show_options(struct seq_file
*, struct vfsmount
*);
95 struct logicalVolIntegrityDescImpUse
*udf_sb_lvidiu(struct udf_sb_info
*sbi
)
97 struct logicalVolIntegrityDesc
*lvid
=
98 (struct logicalVolIntegrityDesc
*)sbi
->s_lvid_bh
->b_data
;
99 __u32 number_of_partitions
= le32_to_cpu(lvid
->numOfPartitions
);
100 __u32 offset
= number_of_partitions
* 2 *
101 sizeof(uint32_t)/sizeof(uint8_t);
102 return (struct logicalVolIntegrityDescImpUse
*)&(lvid
->impUse
[offset
]);
105 /* UDF filesystem type */
106 static struct dentry
*udf_mount(struct file_system_type
*fs_type
,
107 int flags
, const char *dev_name
, void *data
)
109 return mount_bdev(fs_type
, flags
, dev_name
, data
, udf_fill_super
);
112 static struct file_system_type udf_fstype
= {
113 .owner
= THIS_MODULE
,
116 .kill_sb
= kill_block_super
,
117 .fs_flags
= FS_REQUIRES_DEV
,
120 static struct kmem_cache
*udf_inode_cachep
;
122 static struct inode
*udf_alloc_inode(struct super_block
*sb
)
124 struct udf_inode_info
*ei
;
125 ei
= kmem_cache_alloc(udf_inode_cachep
, GFP_KERNEL
);
130 ei
->i_lenExtents
= 0;
131 ei
->i_next_alloc_block
= 0;
132 ei
->i_next_alloc_goal
= 0;
134 init_rwsem(&ei
->i_data_sem
);
136 return &ei
->vfs_inode
;
139 static void udf_i_callback(struct rcu_head
*head
)
141 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
142 INIT_LIST_HEAD(&inode
->i_dentry
);
143 kmem_cache_free(udf_inode_cachep
, UDF_I(inode
));
146 static void udf_destroy_inode(struct inode
*inode
)
148 call_rcu(&inode
->i_rcu
, udf_i_callback
);
151 static void init_once(void *foo
)
153 struct udf_inode_info
*ei
= (struct udf_inode_info
*)foo
;
155 ei
->i_ext
.i_data
= NULL
;
156 inode_init_once(&ei
->vfs_inode
);
159 static int init_inodecache(void)
161 udf_inode_cachep
= kmem_cache_create("udf_inode_cache",
162 sizeof(struct udf_inode_info
),
163 0, (SLAB_RECLAIM_ACCOUNT
|
166 if (!udf_inode_cachep
)
171 static void destroy_inodecache(void)
173 kmem_cache_destroy(udf_inode_cachep
);
176 /* Superblock operations */
177 static const struct super_operations udf_sb_ops
= {
178 .alloc_inode
= udf_alloc_inode
,
179 .destroy_inode
= udf_destroy_inode
,
180 .write_inode
= udf_write_inode
,
181 .evict_inode
= udf_evict_inode
,
182 .put_super
= udf_put_super
,
183 .sync_fs
= udf_sync_fs
,
184 .statfs
= udf_statfs
,
185 .remount_fs
= udf_remount_fs
,
186 .show_options
= udf_show_options
,
191 unsigned int blocksize
;
192 unsigned int session
;
193 unsigned int lastblock
;
196 unsigned short partition
;
197 unsigned int fileset
;
198 unsigned int rootdir
;
205 struct nls_table
*nls_map
;
208 static int __init
init_udf_fs(void)
212 err
= init_inodecache();
215 err
= register_filesystem(&udf_fstype
);
222 destroy_inodecache();
228 static void __exit
exit_udf_fs(void)
230 unregister_filesystem(&udf_fstype
);
231 destroy_inodecache();
234 module_init(init_udf_fs
)
235 module_exit(exit_udf_fs
)
237 static int udf_sb_alloc_partition_maps(struct super_block
*sb
, u32 count
)
239 struct udf_sb_info
*sbi
= UDF_SB(sb
);
241 sbi
->s_partmaps
= kcalloc(count
, sizeof(struct udf_part_map
),
243 if (!sbi
->s_partmaps
) {
244 udf_err(sb
, "Unable to allocate space for %d partition maps\n",
246 sbi
->s_partitions
= 0;
250 sbi
->s_partitions
= count
;
254 static int udf_show_options(struct seq_file
*seq
, struct vfsmount
*mnt
)
256 struct super_block
*sb
= mnt
->mnt_sb
;
257 struct udf_sb_info
*sbi
= UDF_SB(sb
);
259 if (!UDF_QUERY_FLAG(sb
, UDF_FLAG_STRICT
))
260 seq_puts(seq
, ",nostrict");
261 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_BLOCKSIZE_SET
))
262 seq_printf(seq
, ",bs=%lu", sb
->s_blocksize
);
263 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UNHIDE
))
264 seq_puts(seq
, ",unhide");
265 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UNDELETE
))
266 seq_puts(seq
, ",undelete");
267 if (!UDF_QUERY_FLAG(sb
, UDF_FLAG_USE_AD_IN_ICB
))
268 seq_puts(seq
, ",noadinicb");
269 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_USE_SHORT_AD
))
270 seq_puts(seq
, ",shortad");
271 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UID_FORGET
))
272 seq_puts(seq
, ",uid=forget");
273 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UID_IGNORE
))
274 seq_puts(seq
, ",uid=ignore");
275 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_GID_FORGET
))
276 seq_puts(seq
, ",gid=forget");
277 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_GID_IGNORE
))
278 seq_puts(seq
, ",gid=ignore");
279 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UID_SET
))
280 seq_printf(seq
, ",uid=%u", sbi
->s_uid
);
281 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_GID_SET
))
282 seq_printf(seq
, ",gid=%u", sbi
->s_gid
);
283 if (sbi
->s_umask
!= 0)
284 seq_printf(seq
, ",umask=%o", sbi
->s_umask
);
285 if (sbi
->s_fmode
!= UDF_INVALID_MODE
)
286 seq_printf(seq
, ",mode=%o", sbi
->s_fmode
);
287 if (sbi
->s_dmode
!= UDF_INVALID_MODE
)
288 seq_printf(seq
, ",dmode=%o", sbi
->s_dmode
);
289 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_SESSION_SET
))
290 seq_printf(seq
, ",session=%u", sbi
->s_session
);
291 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_LASTBLOCK_SET
))
292 seq_printf(seq
, ",lastblock=%u", sbi
->s_last_block
);
293 if (sbi
->s_anchor
!= 0)
294 seq_printf(seq
, ",anchor=%u", sbi
->s_anchor
);
296 * volume, partition, fileset and rootdir seem to be ignored
299 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_UTF8
))
300 seq_puts(seq
, ",utf8");
301 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_NLS_MAP
) && sbi
->s_nls_map
)
302 seq_printf(seq
, ",iocharset=%s", sbi
->s_nls_map
->charset
);
311 * Parse mount options.
314 * The following mount options are supported:
316 * gid= Set the default group.
317 * umask= Set the default umask.
318 * mode= Set the default file permissions.
319 * dmode= Set the default directory permissions.
320 * uid= Set the default user.
321 * bs= Set the block size.
322 * unhide Show otherwise hidden files.
323 * undelete Show deleted files in lists.
324 * adinicb Embed data in the inode (default)
325 * noadinicb Don't embed data in the inode
326 * shortad Use short ad's
327 * longad Use long ad's (default)
328 * nostrict Unset strict conformance
329 * iocharset= Set the NLS character set
331 * The remaining are for debugging and disaster recovery:
333 * novrs Skip volume sequence recognition
335 * The following expect a offset from 0.
337 * session= Set the CDROM session (default= last session)
338 * anchor= Override standard anchor location. (default= 256)
339 * volume= Override the VolumeDesc location. (unused)
340 * partition= Override the PartitionDesc location. (unused)
341 * lastblock= Set the last block of the filesystem/
343 * The following expect a offset from the partition root.
345 * fileset= Override the fileset block location. (unused)
346 * rootdir= Override the root directory location. (unused)
347 * WARNING: overriding the rootdir to a non-directory may
348 * yield highly unpredictable results.
351 * options Pointer to mount options string.
352 * uopts Pointer to mount options variable.
355 * <return> 1 Mount options parsed okay.
356 * <return> 0 Error parsing mount options.
359 * July 1, 1997 - Andrew E. Mileski
360 * Written, tested, and released.
364 Opt_novrs
, Opt_nostrict
, Opt_bs
, Opt_unhide
, Opt_undelete
,
365 Opt_noadinicb
, Opt_adinicb
, Opt_shortad
, Opt_longad
,
366 Opt_gid
, Opt_uid
, Opt_umask
, Opt_session
, Opt_lastblock
,
367 Opt_anchor
, Opt_volume
, Opt_partition
, Opt_fileset
,
368 Opt_rootdir
, Opt_utf8
, Opt_iocharset
,
369 Opt_err
, Opt_uforget
, Opt_uignore
, Opt_gforget
, Opt_gignore
,
373 static const match_table_t tokens
= {
374 {Opt_novrs
, "novrs"},
375 {Opt_nostrict
, "nostrict"},
377 {Opt_unhide
, "unhide"},
378 {Opt_undelete
, "undelete"},
379 {Opt_noadinicb
, "noadinicb"},
380 {Opt_adinicb
, "adinicb"},
381 {Opt_shortad
, "shortad"},
382 {Opt_longad
, "longad"},
383 {Opt_uforget
, "uid=forget"},
384 {Opt_uignore
, "uid=ignore"},
385 {Opt_gforget
, "gid=forget"},
386 {Opt_gignore
, "gid=ignore"},
389 {Opt_umask
, "umask=%o"},
390 {Opt_session
, "session=%u"},
391 {Opt_lastblock
, "lastblock=%u"},
392 {Opt_anchor
, "anchor=%u"},
393 {Opt_volume
, "volume=%u"},
394 {Opt_partition
, "partition=%u"},
395 {Opt_fileset
, "fileset=%u"},
396 {Opt_rootdir
, "rootdir=%u"},
398 {Opt_iocharset
, "iocharset=%s"},
399 {Opt_fmode
, "mode=%o"},
400 {Opt_dmode
, "dmode=%o"},
404 static int udf_parse_options(char *options
, struct udf_options
*uopt
,
411 uopt
->partition
= 0xFFFF;
412 uopt
->session
= 0xFFFFFFFF;
415 uopt
->volume
= 0xFFFFFFFF;
416 uopt
->rootdir
= 0xFFFFFFFF;
417 uopt
->fileset
= 0xFFFFFFFF;
418 uopt
->nls_map
= NULL
;
423 while ((p
= strsep(&options
, ",")) != NULL
) {
424 substring_t args
[MAX_OPT_ARGS
];
429 token
= match_token(p
, tokens
, args
);
435 if (match_int(&args
[0], &option
))
437 uopt
->blocksize
= option
;
438 uopt
->flags
|= (1 << UDF_FLAG_BLOCKSIZE_SET
);
441 uopt
->flags
|= (1 << UDF_FLAG_UNHIDE
);
444 uopt
->flags
|= (1 << UDF_FLAG_UNDELETE
);
447 uopt
->flags
&= ~(1 << UDF_FLAG_USE_AD_IN_ICB
);
450 uopt
->flags
|= (1 << UDF_FLAG_USE_AD_IN_ICB
);
453 uopt
->flags
|= (1 << UDF_FLAG_USE_SHORT_AD
);
456 uopt
->flags
&= ~(1 << UDF_FLAG_USE_SHORT_AD
);
459 if (match_int(args
, &option
))
462 uopt
->flags
|= (1 << UDF_FLAG_GID_SET
);
465 if (match_int(args
, &option
))
468 uopt
->flags
|= (1 << UDF_FLAG_UID_SET
);
471 if (match_octal(args
, &option
))
473 uopt
->umask
= option
;
476 uopt
->flags
&= ~(1 << UDF_FLAG_STRICT
);
479 if (match_int(args
, &option
))
481 uopt
->session
= option
;
483 uopt
->flags
|= (1 << UDF_FLAG_SESSION_SET
);
486 if (match_int(args
, &option
))
488 uopt
->lastblock
= option
;
490 uopt
->flags
|= (1 << UDF_FLAG_LASTBLOCK_SET
);
493 if (match_int(args
, &option
))
495 uopt
->anchor
= option
;
498 if (match_int(args
, &option
))
500 uopt
->volume
= option
;
503 if (match_int(args
, &option
))
505 uopt
->partition
= option
;
508 if (match_int(args
, &option
))
510 uopt
->fileset
= option
;
513 if (match_int(args
, &option
))
515 uopt
->rootdir
= option
;
518 uopt
->flags
|= (1 << UDF_FLAG_UTF8
);
520 #ifdef CONFIG_UDF_NLS
522 uopt
->nls_map
= load_nls(args
[0].from
);
523 uopt
->flags
|= (1 << UDF_FLAG_NLS_MAP
);
527 uopt
->flags
|= (1 << UDF_FLAG_UID_IGNORE
);
530 uopt
->flags
|= (1 << UDF_FLAG_UID_FORGET
);
533 uopt
->flags
|= (1 << UDF_FLAG_GID_IGNORE
);
536 uopt
->flags
|= (1 << UDF_FLAG_GID_FORGET
);
539 if (match_octal(args
, &option
))
541 uopt
->fmode
= option
& 0777;
544 if (match_octal(args
, &option
))
546 uopt
->dmode
= option
& 0777;
549 pr_err("bad mount option \"%s\" or missing value\n", p
);
556 static int udf_remount_fs(struct super_block
*sb
, int *flags
, char *options
)
558 struct udf_options uopt
;
559 struct udf_sb_info
*sbi
= UDF_SB(sb
);
562 uopt
.flags
= sbi
->s_flags
;
563 uopt
.uid
= sbi
->s_uid
;
564 uopt
.gid
= sbi
->s_gid
;
565 uopt
.umask
= sbi
->s_umask
;
566 uopt
.fmode
= sbi
->s_fmode
;
567 uopt
.dmode
= sbi
->s_dmode
;
569 if (!udf_parse_options(options
, &uopt
, true))
572 write_lock(&sbi
->s_cred_lock
);
573 sbi
->s_flags
= uopt
.flags
;
574 sbi
->s_uid
= uopt
.uid
;
575 sbi
->s_gid
= uopt
.gid
;
576 sbi
->s_umask
= uopt
.umask
;
577 sbi
->s_fmode
= uopt
.fmode
;
578 sbi
->s_dmode
= uopt
.dmode
;
579 write_unlock(&sbi
->s_cred_lock
);
581 if (sbi
->s_lvid_bh
) {
582 int write_rev
= le16_to_cpu(udf_sb_lvidiu(sbi
)->minUDFWriteRev
);
583 if (write_rev
> UDF_MAX_WRITE_VERSION
)
587 if ((*flags
& MS_RDONLY
) == (sb
->s_flags
& MS_RDONLY
))
590 if (*flags
& MS_RDONLY
)
599 /* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
600 /* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
601 static loff_t
udf_check_vsd(struct super_block
*sb
)
603 struct volStructDesc
*vsd
= NULL
;
604 loff_t sector
= 32768;
606 struct buffer_head
*bh
= NULL
;
609 struct udf_sb_info
*sbi
;
612 if (sb
->s_blocksize
< sizeof(struct volStructDesc
))
613 sectorsize
= sizeof(struct volStructDesc
);
615 sectorsize
= sb
->s_blocksize
;
617 sector
+= (sbi
->s_session
<< sb
->s_blocksize_bits
);
619 udf_debug("Starting at sector %u (%ld byte sectors)\n",
620 (unsigned int)(sector
>> sb
->s_blocksize_bits
),
622 /* Process the sequence (if applicable) */
623 for (; !nsr02
&& !nsr03
; sector
+= sectorsize
) {
625 bh
= udf_tread(sb
, sector
>> sb
->s_blocksize_bits
);
629 /* Look for ISO descriptors */
630 vsd
= (struct volStructDesc
*)(bh
->b_data
+
631 (sector
& (sb
->s_blocksize
- 1)));
633 if (vsd
->stdIdent
[0] == 0) {
636 } else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_CD001
,
638 switch (vsd
->structType
) {
640 udf_debug("ISO9660 Boot Record found\n");
643 udf_debug("ISO9660 Primary Volume Descriptor found\n");
646 udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
649 udf_debug("ISO9660 Volume Partition Descriptor found\n");
652 udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
655 udf_debug("ISO9660 VRS (%u) found\n",
659 } else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_BEA01
,
662 else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_TEA01
,
666 } else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_NSR02
,
669 else if (!strncmp(vsd
->stdIdent
, VSD_STD_ID_NSR03
,
679 else if (sector
- (sbi
->s_session
<< sb
->s_blocksize_bits
) == 32768)
685 static int udf_find_fileset(struct super_block
*sb
,
686 struct kernel_lb_addr
*fileset
,
687 struct kernel_lb_addr
*root
)
689 struct buffer_head
*bh
= NULL
;
692 struct udf_sb_info
*sbi
;
694 if (fileset
->logicalBlockNum
!= 0xFFFFFFFF ||
695 fileset
->partitionReferenceNum
!= 0xFFFF) {
696 bh
= udf_read_ptagged(sb
, fileset
, 0, &ident
);
700 } else if (ident
!= TAG_IDENT_FSD
) {
709 /* Search backwards through the partitions */
710 struct kernel_lb_addr newfileset
;
712 /* --> cvg: FIXME - is it reasonable? */
715 for (newfileset
.partitionReferenceNum
= sbi
->s_partitions
- 1;
716 (newfileset
.partitionReferenceNum
!= 0xFFFF &&
717 fileset
->logicalBlockNum
== 0xFFFFFFFF &&
718 fileset
->partitionReferenceNum
== 0xFFFF);
719 newfileset
.partitionReferenceNum
--) {
720 lastblock
= sbi
->s_partmaps
721 [newfileset
.partitionReferenceNum
]
723 newfileset
.logicalBlockNum
= 0;
726 bh
= udf_read_ptagged(sb
, &newfileset
, 0,
729 newfileset
.logicalBlockNum
++;
736 struct spaceBitmapDesc
*sp
;
737 sp
= (struct spaceBitmapDesc
*)
739 newfileset
.logicalBlockNum
+= 1 +
740 ((le32_to_cpu(sp
->numOfBytes
) +
741 sizeof(struct spaceBitmapDesc
)
742 - 1) >> sb
->s_blocksize_bits
);
747 *fileset
= newfileset
;
750 newfileset
.logicalBlockNum
++;
755 } while (newfileset
.logicalBlockNum
< lastblock
&&
756 fileset
->logicalBlockNum
== 0xFFFFFFFF &&
757 fileset
->partitionReferenceNum
== 0xFFFF);
761 if ((fileset
->logicalBlockNum
!= 0xFFFFFFFF ||
762 fileset
->partitionReferenceNum
!= 0xFFFF) && bh
) {
763 udf_debug("Fileset at block=%d, partition=%d\n",
764 fileset
->logicalBlockNum
,
765 fileset
->partitionReferenceNum
);
767 sbi
->s_partition
= fileset
->partitionReferenceNum
;
768 udf_load_fileset(sb
, bh
, root
);
775 static int udf_load_pvoldesc(struct super_block
*sb
, sector_t block
)
777 struct primaryVolDesc
*pvoldesc
;
778 struct ustr
*instr
, *outstr
;
779 struct buffer_head
*bh
;
783 instr
= kmalloc(sizeof(struct ustr
), GFP_NOFS
);
787 outstr
= kmalloc(sizeof(struct ustr
), GFP_NOFS
);
791 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
795 BUG_ON(ident
!= TAG_IDENT_PVD
);
797 pvoldesc
= (struct primaryVolDesc
*)bh
->b_data
;
799 if (udf_disk_stamp_to_time(&UDF_SB(sb
)->s_record_time
,
800 pvoldesc
->recordingDateAndTime
)) {
802 struct timestamp
*ts
= &pvoldesc
->recordingDateAndTime
;
803 udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
804 le16_to_cpu(ts
->year
), ts
->month
, ts
->day
, ts
->hour
,
805 ts
->minute
, le16_to_cpu(ts
->typeAndTimezone
));
809 if (!udf_build_ustr(instr
, pvoldesc
->volIdent
, 32))
810 if (udf_CS0toUTF8(outstr
, instr
)) {
811 strncpy(UDF_SB(sb
)->s_volume_ident
, outstr
->u_name
,
812 outstr
->u_len
> 31 ? 31 : outstr
->u_len
);
813 udf_debug("volIdent[] = '%s'\n",
814 UDF_SB(sb
)->s_volume_ident
);
817 if (!udf_build_ustr(instr
, pvoldesc
->volSetIdent
, 128))
818 if (udf_CS0toUTF8(outstr
, instr
))
819 udf_debug("volSetIdent[] = '%s'\n", outstr
->u_name
);
830 struct inode
*udf_find_metadata_inode_efe(struct super_block
*sb
,
831 u32 meta_file_loc
, u32 partition_num
)
833 struct kernel_lb_addr addr
;
834 struct inode
*metadata_fe
;
836 addr
.logicalBlockNum
= meta_file_loc
;
837 addr
.partitionReferenceNum
= partition_num
;
839 metadata_fe
= udf_iget(sb
, &addr
);
841 if (metadata_fe
== NULL
)
842 udf_warn(sb
, "metadata inode efe not found\n");
843 else if (UDF_I(metadata_fe
)->i_alloc_type
!= ICBTAG_FLAG_AD_SHORT
) {
844 udf_warn(sb
, "metadata inode efe does not have short allocation descriptors!\n");
852 static int udf_load_metadata_files(struct super_block
*sb
, int partition
)
854 struct udf_sb_info
*sbi
= UDF_SB(sb
);
855 struct udf_part_map
*map
;
856 struct udf_meta_data
*mdata
;
857 struct kernel_lb_addr addr
;
859 map
= &sbi
->s_partmaps
[partition
];
860 mdata
= &map
->s_type_specific
.s_metadata
;
862 /* metadata address */
863 udf_debug("Metadata file location: block = %d part = %d\n",
864 mdata
->s_meta_file_loc
, map
->s_partition_num
);
866 mdata
->s_metadata_fe
= udf_find_metadata_inode_efe(sb
,
867 mdata
->s_meta_file_loc
, map
->s_partition_num
);
869 if (mdata
->s_metadata_fe
== NULL
) {
870 /* mirror file entry */
871 udf_debug("Mirror metadata file location: block = %d part = %d\n",
872 mdata
->s_mirror_file_loc
, map
->s_partition_num
);
874 mdata
->s_mirror_fe
= udf_find_metadata_inode_efe(sb
,
875 mdata
->s_mirror_file_loc
, map
->s_partition_num
);
877 if (mdata
->s_mirror_fe
== NULL
) {
878 udf_err(sb
, "Both metadata and mirror metadata inode efe can not found\n");
886 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
888 if (mdata
->s_bitmap_file_loc
!= 0xFFFFFFFF) {
889 addr
.logicalBlockNum
= mdata
->s_bitmap_file_loc
;
890 addr
.partitionReferenceNum
= map
->s_partition_num
;
892 udf_debug("Bitmap file location: block = %d part = %d\n",
893 addr
.logicalBlockNum
, addr
.partitionReferenceNum
);
895 mdata
->s_bitmap_fe
= udf_iget(sb
, &addr
);
897 if (mdata
->s_bitmap_fe
== NULL
) {
898 if (sb
->s_flags
& MS_RDONLY
)
899 udf_warn(sb
, "bitmap inode efe not found but it's ok since the disc is mounted read-only\n");
901 udf_err(sb
, "bitmap inode efe not found and attempted read-write mount\n");
907 udf_debug("udf_load_metadata_files Ok\n");
915 static void udf_load_fileset(struct super_block
*sb
, struct buffer_head
*bh
,
916 struct kernel_lb_addr
*root
)
918 struct fileSetDesc
*fset
;
920 fset
= (struct fileSetDesc
*)bh
->b_data
;
922 *root
= lelb_to_cpu(fset
->rootDirectoryICB
.extLocation
);
924 UDF_SB(sb
)->s_serial_number
= le16_to_cpu(fset
->descTag
.tagSerialNum
);
926 udf_debug("Rootdir at block=%d, partition=%d\n",
927 root
->logicalBlockNum
, root
->partitionReferenceNum
);
930 int udf_compute_nr_groups(struct super_block
*sb
, u32 partition
)
932 struct udf_part_map
*map
= &UDF_SB(sb
)->s_partmaps
[partition
];
933 return DIV_ROUND_UP(map
->s_partition_len
+
934 (sizeof(struct spaceBitmapDesc
) << 3),
935 sb
->s_blocksize
* 8);
938 static struct udf_bitmap
*udf_sb_alloc_bitmap(struct super_block
*sb
, u32 index
)
940 struct udf_bitmap
*bitmap
;
944 nr_groups
= udf_compute_nr_groups(sb
, index
);
945 size
= sizeof(struct udf_bitmap
) +
946 (sizeof(struct buffer_head
*) * nr_groups
);
948 if (size
<= PAGE_SIZE
)
949 bitmap
= kzalloc(size
, GFP_KERNEL
);
951 bitmap
= vzalloc(size
); /* TODO: get rid of vzalloc */
953 if (bitmap
== NULL
) {
954 udf_err(sb
, "Unable to allocate space for bitmap and %d buffer_head pointers\n",
959 bitmap
->s_block_bitmap
= (struct buffer_head
**)(bitmap
+ 1);
960 bitmap
->s_nr_groups
= nr_groups
;
964 static int udf_fill_partdesc_info(struct super_block
*sb
,
965 struct partitionDesc
*p
, int p_index
)
967 struct udf_part_map
*map
;
968 struct udf_sb_info
*sbi
= UDF_SB(sb
);
969 struct partitionHeaderDesc
*phd
;
971 map
= &sbi
->s_partmaps
[p_index
];
973 map
->s_partition_len
= le32_to_cpu(p
->partitionLength
); /* blocks */
974 map
->s_partition_root
= le32_to_cpu(p
->partitionStartingLocation
);
976 if (p
->accessType
== cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY
))
977 map
->s_partition_flags
|= UDF_PART_FLAG_READ_ONLY
;
978 if (p
->accessType
== cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE
))
979 map
->s_partition_flags
|= UDF_PART_FLAG_WRITE_ONCE
;
980 if (p
->accessType
== cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE
))
981 map
->s_partition_flags
|= UDF_PART_FLAG_REWRITABLE
;
982 if (p
->accessType
== cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE
))
983 map
->s_partition_flags
|= UDF_PART_FLAG_OVERWRITABLE
;
985 udf_debug("Partition (%d type %x) starts at physical %d, block length %d\n",
986 p_index
, map
->s_partition_type
,
987 map
->s_partition_root
, map
->s_partition_len
);
989 if (strcmp(p
->partitionContents
.ident
, PD_PARTITION_CONTENTS_NSR02
) &&
990 strcmp(p
->partitionContents
.ident
, PD_PARTITION_CONTENTS_NSR03
))
993 phd
= (struct partitionHeaderDesc
*)p
->partitionContentsUse
;
994 if (phd
->unallocSpaceTable
.extLength
) {
995 struct kernel_lb_addr loc
= {
996 .logicalBlockNum
= le32_to_cpu(
997 phd
->unallocSpaceTable
.extPosition
),
998 .partitionReferenceNum
= p_index
,
1001 map
->s_uspace
.s_table
= udf_iget(sb
, &loc
);
1002 if (!map
->s_uspace
.s_table
) {
1003 udf_debug("cannot load unallocSpaceTable (part %d)\n",
1007 map
->s_partition_flags
|= UDF_PART_FLAG_UNALLOC_TABLE
;
1008 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
1009 p_index
, map
->s_uspace
.s_table
->i_ino
);
1012 if (phd
->unallocSpaceBitmap
.extLength
) {
1013 struct udf_bitmap
*bitmap
= udf_sb_alloc_bitmap(sb
, p_index
);
1016 map
->s_uspace
.s_bitmap
= bitmap
;
1017 bitmap
->s_extLength
= le32_to_cpu(
1018 phd
->unallocSpaceBitmap
.extLength
);
1019 bitmap
->s_extPosition
= le32_to_cpu(
1020 phd
->unallocSpaceBitmap
.extPosition
);
1021 map
->s_partition_flags
|= UDF_PART_FLAG_UNALLOC_BITMAP
;
1022 udf_debug("unallocSpaceBitmap (part %d) @ %d\n",
1023 p_index
, bitmap
->s_extPosition
);
1026 if (phd
->partitionIntegrityTable
.extLength
)
1027 udf_debug("partitionIntegrityTable (part %d)\n", p_index
);
1029 if (phd
->freedSpaceTable
.extLength
) {
1030 struct kernel_lb_addr loc
= {
1031 .logicalBlockNum
= le32_to_cpu(
1032 phd
->freedSpaceTable
.extPosition
),
1033 .partitionReferenceNum
= p_index
,
1036 map
->s_fspace
.s_table
= udf_iget(sb
, &loc
);
1037 if (!map
->s_fspace
.s_table
) {
1038 udf_debug("cannot load freedSpaceTable (part %d)\n",
1043 map
->s_partition_flags
|= UDF_PART_FLAG_FREED_TABLE
;
1044 udf_debug("freedSpaceTable (part %d) @ %ld\n",
1045 p_index
, map
->s_fspace
.s_table
->i_ino
);
1048 if (phd
->freedSpaceBitmap
.extLength
) {
1049 struct udf_bitmap
*bitmap
= udf_sb_alloc_bitmap(sb
, p_index
);
1052 map
->s_fspace
.s_bitmap
= bitmap
;
1053 bitmap
->s_extLength
= le32_to_cpu(
1054 phd
->freedSpaceBitmap
.extLength
);
1055 bitmap
->s_extPosition
= le32_to_cpu(
1056 phd
->freedSpaceBitmap
.extPosition
);
1057 map
->s_partition_flags
|= UDF_PART_FLAG_FREED_BITMAP
;
1058 udf_debug("freedSpaceBitmap (part %d) @ %d\n",
1059 p_index
, bitmap
->s_extPosition
);
1064 static void udf_find_vat_block(struct super_block
*sb
, int p_index
,
1065 int type1_index
, sector_t start_block
)
1067 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1068 struct udf_part_map
*map
= &sbi
->s_partmaps
[p_index
];
1070 struct kernel_lb_addr ino
;
1073 * VAT file entry is in the last recorded block. Some broken disks have
1074 * it a few blocks before so try a bit harder...
1076 ino
.partitionReferenceNum
= type1_index
;
1077 for (vat_block
= start_block
;
1078 vat_block
>= map
->s_partition_root
&&
1079 vat_block
>= start_block
- 3 &&
1080 !sbi
->s_vat_inode
; vat_block
--) {
1081 ino
.logicalBlockNum
= vat_block
- map
->s_partition_root
;
1082 sbi
->s_vat_inode
= udf_iget(sb
, &ino
);
1086 static int udf_load_vat(struct super_block
*sb
, int p_index
, int type1_index
)
1088 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1089 struct udf_part_map
*map
= &sbi
->s_partmaps
[p_index
];
1090 struct buffer_head
*bh
= NULL
;
1091 struct udf_inode_info
*vati
;
1093 struct virtualAllocationTable20
*vat20
;
1094 sector_t blocks
= sb
->s_bdev
->bd_inode
->i_size
>> sb
->s_blocksize_bits
;
1096 udf_find_vat_block(sb
, p_index
, type1_index
, sbi
->s_last_block
);
1097 if (!sbi
->s_vat_inode
&&
1098 sbi
->s_last_block
!= blocks
- 1) {
1099 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1100 (unsigned long)sbi
->s_last_block
,
1101 (unsigned long)blocks
- 1);
1102 udf_find_vat_block(sb
, p_index
, type1_index
, blocks
- 1);
1104 if (!sbi
->s_vat_inode
)
1107 if (map
->s_partition_type
== UDF_VIRTUAL_MAP15
) {
1108 map
->s_type_specific
.s_virtual
.s_start_offset
= 0;
1109 map
->s_type_specific
.s_virtual
.s_num_entries
=
1110 (sbi
->s_vat_inode
->i_size
- 36) >> 2;
1111 } else if (map
->s_partition_type
== UDF_VIRTUAL_MAP20
) {
1112 vati
= UDF_I(sbi
->s_vat_inode
);
1113 if (vati
->i_alloc_type
!= ICBTAG_FLAG_AD_IN_ICB
) {
1114 pos
= udf_block_map(sbi
->s_vat_inode
, 0);
1115 bh
= sb_bread(sb
, pos
);
1118 vat20
= (struct virtualAllocationTable20
*)bh
->b_data
;
1120 vat20
= (struct virtualAllocationTable20
*)
1124 map
->s_type_specific
.s_virtual
.s_start_offset
=
1125 le16_to_cpu(vat20
->lengthHeader
);
1126 map
->s_type_specific
.s_virtual
.s_num_entries
=
1127 (sbi
->s_vat_inode
->i_size
-
1128 map
->s_type_specific
.s_virtual
.
1129 s_start_offset
) >> 2;
1135 static int udf_load_partdesc(struct super_block
*sb
, sector_t block
)
1137 struct buffer_head
*bh
;
1138 struct partitionDesc
*p
;
1139 struct udf_part_map
*map
;
1140 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1142 uint16_t partitionNumber
;
1146 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
1149 if (ident
!= TAG_IDENT_PD
)
1152 p
= (struct partitionDesc
*)bh
->b_data
;
1153 partitionNumber
= le16_to_cpu(p
->partitionNumber
);
1155 /* First scan for TYPE1, SPARABLE and METADATA partitions */
1156 for (i
= 0; i
< sbi
->s_partitions
; i
++) {
1157 map
= &sbi
->s_partmaps
[i
];
1158 udf_debug("Searching map: (%d == %d)\n",
1159 map
->s_partition_num
, partitionNumber
);
1160 if (map
->s_partition_num
== partitionNumber
&&
1161 (map
->s_partition_type
== UDF_TYPE1_MAP15
||
1162 map
->s_partition_type
== UDF_SPARABLE_MAP15
))
1166 if (i
>= sbi
->s_partitions
) {
1167 udf_debug("Partition (%d) not found in partition map\n",
1172 ret
= udf_fill_partdesc_info(sb
, p
, i
);
1175 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1176 * PHYSICAL partitions are already set up
1179 for (i
= 0; i
< sbi
->s_partitions
; i
++) {
1180 map
= &sbi
->s_partmaps
[i
];
1182 if (map
->s_partition_num
== partitionNumber
&&
1183 (map
->s_partition_type
== UDF_VIRTUAL_MAP15
||
1184 map
->s_partition_type
== UDF_VIRTUAL_MAP20
||
1185 map
->s_partition_type
== UDF_METADATA_MAP25
))
1189 if (i
>= sbi
->s_partitions
)
1192 ret
= udf_fill_partdesc_info(sb
, p
, i
);
1196 if (map
->s_partition_type
== UDF_METADATA_MAP25
) {
1197 ret
= udf_load_metadata_files(sb
, i
);
1199 udf_err(sb
, "error loading MetaData partition map %d\n",
1204 ret
= udf_load_vat(sb
, i
, type1_idx
);
1208 * Mark filesystem read-only if we have a partition with
1209 * virtual map since we don't handle writing to it (we
1210 * overwrite blocks instead of relocating them).
1212 sb
->s_flags
|= MS_RDONLY
;
1213 pr_notice("Filesystem marked read-only because writing to pseudooverwrite partition is not implemented\n");
1216 /* In case loading failed, we handle cleanup in udf_fill_super */
1221 static int udf_load_sparable_map(struct super_block
*sb
,
1222 struct udf_part_map
*map
,
1223 struct sparablePartitionMap
*spm
)
1227 struct sparingTable
*st
;
1228 struct udf_sparing_data
*sdata
= &map
->s_type_specific
.s_sparing
;
1230 struct buffer_head
*bh
;
1232 map
->s_partition_type
= UDF_SPARABLE_MAP15
;
1233 sdata
->s_packet_len
= le16_to_cpu(spm
->packetLength
);
1234 if (!is_power_of_2(sdata
->s_packet_len
)) {
1235 udf_err(sb
, "error loading logical volume descriptor: "
1236 "Invalid packet length %u\n",
1237 (unsigned)sdata
->s_packet_len
);
1240 if (spm
->numSparingTables
> 4) {
1241 udf_err(sb
, "error loading logical volume descriptor: "
1242 "Too many sparing tables (%d)\n",
1243 (int)spm
->numSparingTables
);
1247 for (i
= 0; i
< spm
->numSparingTables
; i
++) {
1248 loc
= le32_to_cpu(spm
->locSparingTable
[i
]);
1249 bh
= udf_read_tagged(sb
, loc
, loc
, &ident
);
1253 st
= (struct sparingTable
*)bh
->b_data
;
1255 strncmp(st
->sparingIdent
.ident
, UDF_ID_SPARING
,
1256 strlen(UDF_ID_SPARING
)) ||
1257 sizeof(*st
) + le16_to_cpu(st
->reallocationTableLen
) >
1263 sdata
->s_spar_map
[i
] = bh
;
1265 map
->s_partition_func
= udf_get_pblock_spar15
;
1269 static int udf_load_logicalvol(struct super_block
*sb
, sector_t block
,
1270 struct kernel_lb_addr
*fileset
)
1272 struct logicalVolDesc
*lvd
;
1275 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1276 struct genericPartitionMap
*gpm
;
1278 struct buffer_head
*bh
;
1279 unsigned int table_len
;
1282 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
1285 BUG_ON(ident
!= TAG_IDENT_LVD
);
1286 lvd
= (struct logicalVolDesc
*)bh
->b_data
;
1287 table_len
= le32_to_cpu(lvd
->mapTableLength
);
1288 if (table_len
> sb
->s_blocksize
- sizeof(*lvd
)) {
1289 udf_err(sb
, "error loading logical volume descriptor: "
1290 "Partition table too long (%u > %lu)\n", table_len
,
1291 sb
->s_blocksize
- sizeof(*lvd
));
1296 ret
= udf_sb_alloc_partition_maps(sb
, le32_to_cpu(lvd
->numPartitionMaps
));
1300 for (i
= 0, offset
= 0;
1301 i
< sbi
->s_partitions
&& offset
< table_len
;
1302 i
++, offset
+= gpm
->partitionMapLength
) {
1303 struct udf_part_map
*map
= &sbi
->s_partmaps
[i
];
1304 gpm
= (struct genericPartitionMap
*)
1305 &(lvd
->partitionMaps
[offset
]);
1306 type
= gpm
->partitionMapType
;
1308 struct genericPartitionMap1
*gpm1
=
1309 (struct genericPartitionMap1
*)gpm
;
1310 map
->s_partition_type
= UDF_TYPE1_MAP15
;
1311 map
->s_volumeseqnum
= le16_to_cpu(gpm1
->volSeqNum
);
1312 map
->s_partition_num
= le16_to_cpu(gpm1
->partitionNum
);
1313 map
->s_partition_func
= NULL
;
1314 } else if (type
== 2) {
1315 struct udfPartitionMap2
*upm2
=
1316 (struct udfPartitionMap2
*)gpm
;
1317 if (!strncmp(upm2
->partIdent
.ident
, UDF_ID_VIRTUAL
,
1318 strlen(UDF_ID_VIRTUAL
))) {
1320 le16_to_cpu(((__le16
*)upm2
->partIdent
.
1323 map
->s_partition_type
=
1325 map
->s_partition_func
=
1326 udf_get_pblock_virt15
;
1328 map
->s_partition_type
=
1330 map
->s_partition_func
=
1331 udf_get_pblock_virt20
;
1333 } else if (!strncmp(upm2
->partIdent
.ident
,
1335 strlen(UDF_ID_SPARABLE
))) {
1336 if (udf_load_sparable_map(sb
, map
,
1337 (struct sparablePartitionMap
*)gpm
) < 0) {
1341 } else if (!strncmp(upm2
->partIdent
.ident
,
1343 strlen(UDF_ID_METADATA
))) {
1344 struct udf_meta_data
*mdata
=
1345 &map
->s_type_specific
.s_metadata
;
1346 struct metadataPartitionMap
*mdm
=
1347 (struct metadataPartitionMap
*)
1348 &(lvd
->partitionMaps
[offset
]);
1349 udf_debug("Parsing Logical vol part %d type %d id=%s\n",
1350 i
, type
, UDF_ID_METADATA
);
1352 map
->s_partition_type
= UDF_METADATA_MAP25
;
1353 map
->s_partition_func
= udf_get_pblock_meta25
;
1355 mdata
->s_meta_file_loc
=
1356 le32_to_cpu(mdm
->metadataFileLoc
);
1357 mdata
->s_mirror_file_loc
=
1358 le32_to_cpu(mdm
->metadataMirrorFileLoc
);
1359 mdata
->s_bitmap_file_loc
=
1360 le32_to_cpu(mdm
->metadataBitmapFileLoc
);
1361 mdata
->s_alloc_unit_size
=
1362 le32_to_cpu(mdm
->allocUnitSize
);
1363 mdata
->s_align_unit_size
=
1364 le16_to_cpu(mdm
->alignUnitSize
);
1365 if (mdm
->flags
& 0x01)
1366 mdata
->s_flags
|= MF_DUPLICATE_MD
;
1368 udf_debug("Metadata Ident suffix=0x%x\n",
1369 le16_to_cpu(*(__le16
*)
1370 mdm
->partIdent
.identSuffix
));
1371 udf_debug("Metadata part num=%d\n",
1372 le16_to_cpu(mdm
->partitionNum
));
1373 udf_debug("Metadata part alloc unit size=%d\n",
1374 le32_to_cpu(mdm
->allocUnitSize
));
1375 udf_debug("Metadata file loc=%d\n",
1376 le32_to_cpu(mdm
->metadataFileLoc
));
1377 udf_debug("Mirror file loc=%d\n",
1378 le32_to_cpu(mdm
->metadataMirrorFileLoc
));
1379 udf_debug("Bitmap file loc=%d\n",
1380 le32_to_cpu(mdm
->metadataBitmapFileLoc
));
1381 udf_debug("Flags: %d %d\n",
1382 mdata
->s_flags
, mdm
->flags
);
1384 udf_debug("Unknown ident: %s\n",
1385 upm2
->partIdent
.ident
);
1388 map
->s_volumeseqnum
= le16_to_cpu(upm2
->volSeqNum
);
1389 map
->s_partition_num
= le16_to_cpu(upm2
->partitionNum
);
1391 udf_debug("Partition (%d:%d) type %d on volume %d\n",
1392 i
, map
->s_partition_num
, type
, map
->s_volumeseqnum
);
1396 struct long_ad
*la
= (struct long_ad
*)&(lvd
->logicalVolContentsUse
[0]);
1398 *fileset
= lelb_to_cpu(la
->extLocation
);
1399 udf_debug("FileSet found in LogicalVolDesc at block=%d, partition=%d\n",
1400 fileset
->logicalBlockNum
,
1401 fileset
->partitionReferenceNum
);
1403 if (lvd
->integritySeqExt
.extLength
)
1404 udf_load_logicalvolint(sb
, leea_to_cpu(lvd
->integritySeqExt
));
1412 * udf_load_logicalvolint
1415 static void udf_load_logicalvolint(struct super_block
*sb
, struct kernel_extent_ad loc
)
1417 struct buffer_head
*bh
= NULL
;
1419 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1420 struct logicalVolIntegrityDesc
*lvid
;
1422 while (loc
.extLength
> 0 &&
1423 (bh
= udf_read_tagged(sb
, loc
.extLocation
,
1424 loc
.extLocation
, &ident
)) &&
1425 ident
== TAG_IDENT_LVID
) {
1426 sbi
->s_lvid_bh
= bh
;
1427 lvid
= (struct logicalVolIntegrityDesc
*)bh
->b_data
;
1429 if (lvid
->nextIntegrityExt
.extLength
)
1430 udf_load_logicalvolint(sb
,
1431 leea_to_cpu(lvid
->nextIntegrityExt
));
1433 if (sbi
->s_lvid_bh
!= bh
)
1435 loc
.extLength
-= sb
->s_blocksize
;
1438 if (sbi
->s_lvid_bh
!= bh
)
1443 * udf_process_sequence
1446 * Process a main/reserve volume descriptor sequence.
1449 * sb Pointer to _locked_ superblock.
1450 * block First block of first extent of the sequence.
1451 * lastblock Lastblock of first extent of the sequence.
1454 * July 1, 1997 - Andrew E. Mileski
1455 * Written, tested, and released.
1457 static noinline
int udf_process_sequence(struct super_block
*sb
, long block
,
1458 long lastblock
, struct kernel_lb_addr
*fileset
)
1460 struct buffer_head
*bh
= NULL
;
1461 struct udf_vds_record vds
[VDS_POS_LENGTH
];
1462 struct udf_vds_record
*curr
;
1463 struct generic_desc
*gd
;
1464 struct volDescPtr
*vdp
;
1468 long next_s
= 0, next_e
= 0;
1470 memset(vds
, 0, sizeof(struct udf_vds_record
) * VDS_POS_LENGTH
);
1473 * Read the main descriptor sequence and find which descriptors
1476 for (; (!done
&& block
<= lastblock
); block
++) {
1478 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
1481 "Block %llu of volume descriptor sequence is corrupted or we could not read it\n",
1482 (unsigned long long)block
);
1486 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1487 gd
= (struct generic_desc
*)bh
->b_data
;
1488 vdsn
= le32_to_cpu(gd
->volDescSeqNum
);
1490 case TAG_IDENT_PVD
: /* ISO 13346 3/10.1 */
1491 curr
= &vds
[VDS_POS_PRIMARY_VOL_DESC
];
1492 if (vdsn
>= curr
->volDescSeqNum
) {
1493 curr
->volDescSeqNum
= vdsn
;
1494 curr
->block
= block
;
1497 case TAG_IDENT_VDP
: /* ISO 13346 3/10.3 */
1498 curr
= &vds
[VDS_POS_VOL_DESC_PTR
];
1499 if (vdsn
>= curr
->volDescSeqNum
) {
1500 curr
->volDescSeqNum
= vdsn
;
1501 curr
->block
= block
;
1503 vdp
= (struct volDescPtr
*)bh
->b_data
;
1504 next_s
= le32_to_cpu(
1505 vdp
->nextVolDescSeqExt
.extLocation
);
1506 next_e
= le32_to_cpu(
1507 vdp
->nextVolDescSeqExt
.extLength
);
1508 next_e
= next_e
>> sb
->s_blocksize_bits
;
1512 case TAG_IDENT_IUVD
: /* ISO 13346 3/10.4 */
1513 curr
= &vds
[VDS_POS_IMP_USE_VOL_DESC
];
1514 if (vdsn
>= curr
->volDescSeqNum
) {
1515 curr
->volDescSeqNum
= vdsn
;
1516 curr
->block
= block
;
1519 case TAG_IDENT_PD
: /* ISO 13346 3/10.5 */
1520 curr
= &vds
[VDS_POS_PARTITION_DESC
];
1522 curr
->block
= block
;
1524 case TAG_IDENT_LVD
: /* ISO 13346 3/10.6 */
1525 curr
= &vds
[VDS_POS_LOGICAL_VOL_DESC
];
1526 if (vdsn
>= curr
->volDescSeqNum
) {
1527 curr
->volDescSeqNum
= vdsn
;
1528 curr
->block
= block
;
1531 case TAG_IDENT_USD
: /* ISO 13346 3/10.8 */
1532 curr
= &vds
[VDS_POS_UNALLOC_SPACE_DESC
];
1533 if (vdsn
>= curr
->volDescSeqNum
) {
1534 curr
->volDescSeqNum
= vdsn
;
1535 curr
->block
= block
;
1538 case TAG_IDENT_TD
: /* ISO 13346 3/10.9 */
1539 vds
[VDS_POS_TERMINATING_DESC
].block
= block
;
1543 next_s
= next_e
= 0;
1551 * Now read interesting descriptors again and process them
1552 * in a suitable order
1554 if (!vds
[VDS_POS_PRIMARY_VOL_DESC
].block
) {
1555 udf_err(sb
, "Primary Volume Descriptor not found!\n");
1558 if (udf_load_pvoldesc(sb
, vds
[VDS_POS_PRIMARY_VOL_DESC
].block
))
1561 if (vds
[VDS_POS_LOGICAL_VOL_DESC
].block
&& udf_load_logicalvol(sb
,
1562 vds
[VDS_POS_LOGICAL_VOL_DESC
].block
, fileset
))
1565 if (vds
[VDS_POS_PARTITION_DESC
].block
) {
1567 * We rescan the whole descriptor sequence to find
1568 * partition descriptor blocks and process them.
1570 for (block
= vds
[VDS_POS_PARTITION_DESC
].block
;
1571 block
< vds
[VDS_POS_TERMINATING_DESC
].block
;
1573 if (udf_load_partdesc(sb
, block
))
1580 static int udf_load_sequence(struct super_block
*sb
, struct buffer_head
*bh
,
1581 struct kernel_lb_addr
*fileset
)
1583 struct anchorVolDescPtr
*anchor
;
1584 long main_s
, main_e
, reserve_s
, reserve_e
;
1586 anchor
= (struct anchorVolDescPtr
*)bh
->b_data
;
1588 /* Locate the main sequence */
1589 main_s
= le32_to_cpu(anchor
->mainVolDescSeqExt
.extLocation
);
1590 main_e
= le32_to_cpu(anchor
->mainVolDescSeqExt
.extLength
);
1591 main_e
= main_e
>> sb
->s_blocksize_bits
;
1594 /* Locate the reserve sequence */
1595 reserve_s
= le32_to_cpu(anchor
->reserveVolDescSeqExt
.extLocation
);
1596 reserve_e
= le32_to_cpu(anchor
->reserveVolDescSeqExt
.extLength
);
1597 reserve_e
= reserve_e
>> sb
->s_blocksize_bits
;
1598 reserve_e
+= reserve_s
;
1600 /* Process the main & reserve sequences */
1601 /* responsible for finding the PartitionDesc(s) */
1602 if (!udf_process_sequence(sb
, main_s
, main_e
, fileset
))
1604 return !udf_process_sequence(sb
, reserve_s
, reserve_e
, fileset
);
1608 * Check whether there is an anchor block in the given block and
1609 * load Volume Descriptor Sequence if so.
1611 static int udf_check_anchor_block(struct super_block
*sb
, sector_t block
,
1612 struct kernel_lb_addr
*fileset
)
1614 struct buffer_head
*bh
;
1618 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_VARCONV
) &&
1619 udf_fixed_to_variable(block
) >=
1620 sb
->s_bdev
->bd_inode
->i_size
>> sb
->s_blocksize_bits
)
1623 bh
= udf_read_tagged(sb
, block
, block
, &ident
);
1626 if (ident
!= TAG_IDENT_AVDP
) {
1630 ret
= udf_load_sequence(sb
, bh
, fileset
);
1635 /* Search for an anchor volume descriptor pointer */
1636 static sector_t
udf_scan_anchors(struct super_block
*sb
, sector_t lastblock
,
1637 struct kernel_lb_addr
*fileset
)
1641 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1644 /* First try user provided anchor */
1645 if (sbi
->s_anchor
) {
1646 if (udf_check_anchor_block(sb
, sbi
->s_anchor
, fileset
))
1650 * according to spec, anchor is in either:
1654 * however, if the disc isn't closed, it could be 512.
1656 if (udf_check_anchor_block(sb
, sbi
->s_session
+ 256, fileset
))
1659 * The trouble is which block is the last one. Drives often misreport
1660 * this so we try various possibilities.
1662 last
[last_count
++] = lastblock
;
1664 last
[last_count
++] = lastblock
- 1;
1665 last
[last_count
++] = lastblock
+ 1;
1667 last
[last_count
++] = lastblock
- 2;
1668 if (lastblock
>= 150)
1669 last
[last_count
++] = lastblock
- 150;
1670 if (lastblock
>= 152)
1671 last
[last_count
++] = lastblock
- 152;
1673 for (i
= 0; i
< last_count
; i
++) {
1674 if (last
[i
] >= sb
->s_bdev
->bd_inode
->i_size
>>
1675 sb
->s_blocksize_bits
)
1677 if (udf_check_anchor_block(sb
, last
[i
], fileset
))
1681 if (udf_check_anchor_block(sb
, last
[i
] - 256, fileset
))
1685 /* Finally try block 512 in case media is open */
1686 if (udf_check_anchor_block(sb
, sbi
->s_session
+ 512, fileset
))
1692 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1693 * area specified by it. The function expects sbi->s_lastblock to be the last
1694 * block on the media.
1696 * Return 1 if ok, 0 if not found.
1699 static int udf_find_anchor(struct super_block
*sb
,
1700 struct kernel_lb_addr
*fileset
)
1703 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1705 lastblock
= udf_scan_anchors(sb
, sbi
->s_last_block
, fileset
);
1709 /* No anchor found? Try VARCONV conversion of block numbers */
1710 UDF_SET_FLAG(sb
, UDF_FLAG_VARCONV
);
1711 /* Firstly, we try to not convert number of the last block */
1712 lastblock
= udf_scan_anchors(sb
,
1713 udf_variable_to_fixed(sbi
->s_last_block
),
1718 /* Secondly, we try with converted number of the last block */
1719 lastblock
= udf_scan_anchors(sb
, sbi
->s_last_block
, fileset
);
1721 /* VARCONV didn't help. Clear it. */
1722 UDF_CLEAR_FLAG(sb
, UDF_FLAG_VARCONV
);
1726 sbi
->s_last_block
= lastblock
;
1731 * Check Volume Structure Descriptor, find Anchor block and load Volume
1732 * Descriptor Sequence
1734 static int udf_load_vrs(struct super_block
*sb
, struct udf_options
*uopt
,
1735 int silent
, struct kernel_lb_addr
*fileset
)
1737 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1740 if (!sb_set_blocksize(sb
, uopt
->blocksize
)) {
1742 udf_warn(sb
, "Bad block size\n");
1745 sbi
->s_last_block
= uopt
->lastblock
;
1747 /* Check that it is NSR02 compliant */
1748 nsr_off
= udf_check_vsd(sb
);
1751 udf_warn(sb
, "No VRS found\n");
1755 udf_debug("Failed to read byte 32768. Assuming open disc. Skipping validity check\n");
1756 if (!sbi
->s_last_block
)
1757 sbi
->s_last_block
= udf_get_last_block(sb
);
1759 udf_debug("Validity check skipped because of novrs option\n");
1762 /* Look for anchor block and load Volume Descriptor Sequence */
1763 sbi
->s_anchor
= uopt
->anchor
;
1764 if (!udf_find_anchor(sb
, fileset
)) {
1766 udf_warn(sb
, "No anchor found\n");
1772 static void udf_open_lvid(struct super_block
*sb
)
1774 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1775 struct buffer_head
*bh
= sbi
->s_lvid_bh
;
1776 struct logicalVolIntegrityDesc
*lvid
;
1777 struct logicalVolIntegrityDescImpUse
*lvidiu
;
1782 mutex_lock(&sbi
->s_alloc_mutex
);
1783 lvid
= (struct logicalVolIntegrityDesc
*)bh
->b_data
;
1784 lvidiu
= udf_sb_lvidiu(sbi
);
1786 lvidiu
->impIdent
.identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1787 lvidiu
->impIdent
.identSuffix
[1] = UDF_OS_ID_LINUX
;
1788 udf_time_to_disk_stamp(&lvid
->recordingDateAndTime
,
1790 lvid
->integrityType
= cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN
);
1792 lvid
->descTag
.descCRC
= cpu_to_le16(
1793 crc_itu_t(0, (char *)lvid
+ sizeof(struct tag
),
1794 le16_to_cpu(lvid
->descTag
.descCRCLength
)));
1796 lvid
->descTag
.tagChecksum
= udf_tag_checksum(&lvid
->descTag
);
1797 mark_buffer_dirty(bh
);
1798 sbi
->s_lvid_dirty
= 0;
1799 mutex_unlock(&sbi
->s_alloc_mutex
);
1802 static void udf_close_lvid(struct super_block
*sb
)
1804 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1805 struct buffer_head
*bh
= sbi
->s_lvid_bh
;
1806 struct logicalVolIntegrityDesc
*lvid
;
1807 struct logicalVolIntegrityDescImpUse
*lvidiu
;
1812 mutex_lock(&sbi
->s_alloc_mutex
);
1813 lvid
= (struct logicalVolIntegrityDesc
*)bh
->b_data
;
1814 lvidiu
= udf_sb_lvidiu(sbi
);
1815 lvidiu
->impIdent
.identSuffix
[0] = UDF_OS_CLASS_UNIX
;
1816 lvidiu
->impIdent
.identSuffix
[1] = UDF_OS_ID_LINUX
;
1817 udf_time_to_disk_stamp(&lvid
->recordingDateAndTime
, CURRENT_TIME
);
1818 if (UDF_MAX_WRITE_VERSION
> le16_to_cpu(lvidiu
->maxUDFWriteRev
))
1819 lvidiu
->maxUDFWriteRev
= cpu_to_le16(UDF_MAX_WRITE_VERSION
);
1820 if (sbi
->s_udfrev
> le16_to_cpu(lvidiu
->minUDFReadRev
))
1821 lvidiu
->minUDFReadRev
= cpu_to_le16(sbi
->s_udfrev
);
1822 if (sbi
->s_udfrev
> le16_to_cpu(lvidiu
->minUDFWriteRev
))
1823 lvidiu
->minUDFWriteRev
= cpu_to_le16(sbi
->s_udfrev
);
1824 lvid
->integrityType
= cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE
);
1826 lvid
->descTag
.descCRC
= cpu_to_le16(
1827 crc_itu_t(0, (char *)lvid
+ sizeof(struct tag
),
1828 le16_to_cpu(lvid
->descTag
.descCRCLength
)));
1830 lvid
->descTag
.tagChecksum
= udf_tag_checksum(&lvid
->descTag
);
1832 * We set buffer uptodate unconditionally here to avoid spurious
1833 * warnings from mark_buffer_dirty() when previous EIO has marked
1834 * the buffer as !uptodate
1836 set_buffer_uptodate(bh
);
1837 mark_buffer_dirty(bh
);
1838 sbi
->s_lvid_dirty
= 0;
1839 mutex_unlock(&sbi
->s_alloc_mutex
);
1842 u64
lvid_get_unique_id(struct super_block
*sb
)
1844 struct buffer_head
*bh
;
1845 struct udf_sb_info
*sbi
= UDF_SB(sb
);
1846 struct logicalVolIntegrityDesc
*lvid
;
1847 struct logicalVolHeaderDesc
*lvhd
;
1851 bh
= sbi
->s_lvid_bh
;
1855 lvid
= (struct logicalVolIntegrityDesc
*)bh
->b_data
;
1856 lvhd
= (struct logicalVolHeaderDesc
*)lvid
->logicalVolContentsUse
;
1858 mutex_lock(&sbi
->s_alloc_mutex
);
1859 ret
= uniqueID
= le64_to_cpu(lvhd
->uniqueID
);
1860 if (!(++uniqueID
& 0xFFFFFFFF))
1862 lvhd
->uniqueID
= cpu_to_le64(uniqueID
);
1863 mutex_unlock(&sbi
->s_alloc_mutex
);
1864 mark_buffer_dirty(bh
);
1869 static void udf_sb_free_bitmap(struct udf_bitmap
*bitmap
)
1872 int nr_groups
= bitmap
->s_nr_groups
;
1873 int size
= sizeof(struct udf_bitmap
) + (sizeof(struct buffer_head
*) *
1876 for (i
= 0; i
< nr_groups
; i
++)
1877 if (bitmap
->s_block_bitmap
[i
])
1878 brelse(bitmap
->s_block_bitmap
[i
]);
1880 if (size
<= PAGE_SIZE
)
1886 static void udf_free_partition(struct udf_part_map
*map
)
1889 struct udf_meta_data
*mdata
;
1891 if (map
->s_partition_flags
& UDF_PART_FLAG_UNALLOC_TABLE
)
1892 iput(map
->s_uspace
.s_table
);
1893 if (map
->s_partition_flags
& UDF_PART_FLAG_FREED_TABLE
)
1894 iput(map
->s_fspace
.s_table
);
1895 if (map
->s_partition_flags
& UDF_PART_FLAG_UNALLOC_BITMAP
)
1896 udf_sb_free_bitmap(map
->s_uspace
.s_bitmap
);
1897 if (map
->s_partition_flags
& UDF_PART_FLAG_FREED_BITMAP
)
1898 udf_sb_free_bitmap(map
->s_fspace
.s_bitmap
);
1899 if (map
->s_partition_type
== UDF_SPARABLE_MAP15
)
1900 for (i
= 0; i
< 4; i
++)
1901 brelse(map
->s_type_specific
.s_sparing
.s_spar_map
[i
]);
1902 else if (map
->s_partition_type
== UDF_METADATA_MAP25
) {
1903 mdata
= &map
->s_type_specific
.s_metadata
;
1904 iput(mdata
->s_metadata_fe
);
1905 mdata
->s_metadata_fe
= NULL
;
1907 iput(mdata
->s_mirror_fe
);
1908 mdata
->s_mirror_fe
= NULL
;
1910 iput(mdata
->s_bitmap_fe
);
1911 mdata
->s_bitmap_fe
= NULL
;
1915 static int udf_fill_super(struct super_block
*sb
, void *options
, int silent
)
1919 struct inode
*inode
= NULL
;
1920 struct udf_options uopt
;
1921 struct kernel_lb_addr rootdir
, fileset
;
1922 struct udf_sb_info
*sbi
;
1924 uopt
.flags
= (1 << UDF_FLAG_USE_AD_IN_ICB
) | (1 << UDF_FLAG_STRICT
);
1928 uopt
.fmode
= UDF_INVALID_MODE
;
1929 uopt
.dmode
= UDF_INVALID_MODE
;
1931 sbi
= kzalloc(sizeof(struct udf_sb_info
), GFP_KERNEL
);
1935 sb
->s_fs_info
= sbi
;
1937 mutex_init(&sbi
->s_alloc_mutex
);
1939 if (!udf_parse_options((char *)options
, &uopt
, false))
1942 if (uopt
.flags
& (1 << UDF_FLAG_UTF8
) &&
1943 uopt
.flags
& (1 << UDF_FLAG_NLS_MAP
)) {
1944 udf_err(sb
, "utf8 cannot be combined with iocharset\n");
1947 #ifdef CONFIG_UDF_NLS
1948 if ((uopt
.flags
& (1 << UDF_FLAG_NLS_MAP
)) && !uopt
.nls_map
) {
1949 uopt
.nls_map
= load_nls_default();
1951 uopt
.flags
&= ~(1 << UDF_FLAG_NLS_MAP
);
1953 udf_debug("Using default NLS map\n");
1956 if (!(uopt
.flags
& (1 << UDF_FLAG_NLS_MAP
)))
1957 uopt
.flags
|= (1 << UDF_FLAG_UTF8
);
1959 fileset
.logicalBlockNum
= 0xFFFFFFFF;
1960 fileset
.partitionReferenceNum
= 0xFFFF;
1962 sbi
->s_flags
= uopt
.flags
;
1963 sbi
->s_uid
= uopt
.uid
;
1964 sbi
->s_gid
= uopt
.gid
;
1965 sbi
->s_umask
= uopt
.umask
;
1966 sbi
->s_fmode
= uopt
.fmode
;
1967 sbi
->s_dmode
= uopt
.dmode
;
1968 sbi
->s_nls_map
= uopt
.nls_map
;
1969 rwlock_init(&sbi
->s_cred_lock
);
1971 if (uopt
.session
== 0xFFFFFFFF)
1972 sbi
->s_session
= udf_get_last_session(sb
);
1974 sbi
->s_session
= uopt
.session
;
1976 udf_debug("Multi-session=%d\n", sbi
->s_session
);
1978 /* Fill in the rest of the superblock */
1979 sb
->s_op
= &udf_sb_ops
;
1980 sb
->s_export_op
= &udf_export_ops
;
1983 sb
->s_magic
= UDF_SUPER_MAGIC
;
1984 sb
->s_time_gran
= 1000;
1986 if (uopt
.flags
& (1 << UDF_FLAG_BLOCKSIZE_SET
)) {
1987 ret
= udf_load_vrs(sb
, &uopt
, silent
, &fileset
);
1989 uopt
.blocksize
= bdev_logical_block_size(sb
->s_bdev
);
1990 ret
= udf_load_vrs(sb
, &uopt
, silent
, &fileset
);
1991 if (!ret
&& uopt
.blocksize
!= UDF_DEFAULT_BLOCKSIZE
) {
1993 pr_notice("Rescanning with blocksize %d\n",
1994 UDF_DEFAULT_BLOCKSIZE
);
1995 uopt
.blocksize
= UDF_DEFAULT_BLOCKSIZE
;
1996 ret
= udf_load_vrs(sb
, &uopt
, silent
, &fileset
);
2000 udf_warn(sb
, "No partition found (1)\n");
2004 udf_debug("Lastblock=%d\n", sbi
->s_last_block
);
2006 if (sbi
->s_lvid_bh
) {
2007 struct logicalVolIntegrityDescImpUse
*lvidiu
=
2009 uint16_t minUDFReadRev
= le16_to_cpu(lvidiu
->minUDFReadRev
);
2010 uint16_t minUDFWriteRev
= le16_to_cpu(lvidiu
->minUDFWriteRev
);
2011 /* uint16_t maxUDFWriteRev =
2012 le16_to_cpu(lvidiu->maxUDFWriteRev); */
2014 if (minUDFReadRev
> UDF_MAX_READ_VERSION
) {
2015 udf_err(sb
, "minUDFReadRev=%x (max is %x)\n",
2016 le16_to_cpu(lvidiu
->minUDFReadRev
),
2017 UDF_MAX_READ_VERSION
);
2019 } else if (minUDFWriteRev
> UDF_MAX_WRITE_VERSION
)
2020 sb
->s_flags
|= MS_RDONLY
;
2022 sbi
->s_udfrev
= minUDFWriteRev
;
2024 if (minUDFReadRev
>= UDF_VERS_USE_EXTENDED_FE
)
2025 UDF_SET_FLAG(sb
, UDF_FLAG_USE_EXTENDED_FE
);
2026 if (minUDFReadRev
>= UDF_VERS_USE_STREAMS
)
2027 UDF_SET_FLAG(sb
, UDF_FLAG_USE_STREAMS
);
2030 if (!sbi
->s_partitions
) {
2031 udf_warn(sb
, "No partition found (2)\n");
2035 if (sbi
->s_partmaps
[sbi
->s_partition
].s_partition_flags
&
2036 UDF_PART_FLAG_READ_ONLY
) {
2037 pr_notice("Partition marked readonly; forcing readonly mount\n");
2038 sb
->s_flags
|= MS_RDONLY
;
2041 if (udf_find_fileset(sb
, &fileset
, &rootdir
)) {
2042 udf_warn(sb
, "No fileset found\n");
2047 struct timestamp ts
;
2048 udf_time_to_disk_stamp(&ts
, sbi
->s_record_time
);
2049 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2050 sbi
->s_volume_ident
,
2051 le16_to_cpu(ts
.year
), ts
.month
, ts
.day
,
2052 ts
.hour
, ts
.minute
, le16_to_cpu(ts
.typeAndTimezone
));
2054 if (!(sb
->s_flags
& MS_RDONLY
))
2057 /* Assign the root inode */
2058 /* assign inodes by physical block number */
2059 /* perhaps it's not extensible enough, but for now ... */
2060 inode
= udf_iget(sb
, &rootdir
);
2062 udf_err(sb
, "Error in udf_iget, block=%d, partition=%d\n",
2063 rootdir
.logicalBlockNum
, rootdir
.partitionReferenceNum
);
2067 /* Allocate a dentry for the root inode */
2068 sb
->s_root
= d_alloc_root(inode
);
2070 udf_err(sb
, "Couldn't allocate root dentry\n");
2074 sb
->s_maxbytes
= MAX_LFS_FILESIZE
;
2078 if (sbi
->s_vat_inode
)
2079 iput(sbi
->s_vat_inode
);
2080 if (sbi
->s_partitions
)
2081 for (i
= 0; i
< sbi
->s_partitions
; i
++)
2082 udf_free_partition(&sbi
->s_partmaps
[i
]);
2083 #ifdef CONFIG_UDF_NLS
2084 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_NLS_MAP
))
2085 unload_nls(sbi
->s_nls_map
);
2087 if (!(sb
->s_flags
& MS_RDONLY
))
2089 brelse(sbi
->s_lvid_bh
);
2091 kfree(sbi
->s_partmaps
);
2093 sb
->s_fs_info
= NULL
;
2098 void _udf_err(struct super_block
*sb
, const char *function
,
2099 const char *fmt
, ...)
2101 struct va_format vaf
;
2105 if (!(sb
->s_flags
& MS_RDONLY
))
2108 va_start(args
, fmt
);
2113 pr_err("error (device %s): %s: %pV", sb
->s_id
, function
, &vaf
);
2118 void _udf_warn(struct super_block
*sb
, const char *function
,
2119 const char *fmt
, ...)
2121 struct va_format vaf
;
2124 va_start(args
, fmt
);
2129 pr_warn("warning (device %s): %s: %pV", sb
->s_id
, function
, &vaf
);
2134 static void udf_put_super(struct super_block
*sb
)
2137 struct udf_sb_info
*sbi
;
2141 if (sbi
->s_vat_inode
)
2142 iput(sbi
->s_vat_inode
);
2143 if (sbi
->s_partitions
)
2144 for (i
= 0; i
< sbi
->s_partitions
; i
++)
2145 udf_free_partition(&sbi
->s_partmaps
[i
]);
2146 #ifdef CONFIG_UDF_NLS
2147 if (UDF_QUERY_FLAG(sb
, UDF_FLAG_NLS_MAP
))
2148 unload_nls(sbi
->s_nls_map
);
2150 if (!(sb
->s_flags
& MS_RDONLY
))
2152 brelse(sbi
->s_lvid_bh
);
2153 kfree(sbi
->s_partmaps
);
2154 kfree(sb
->s_fs_info
);
2155 sb
->s_fs_info
= NULL
;
2158 static int udf_sync_fs(struct super_block
*sb
, int wait
)
2160 struct udf_sb_info
*sbi
= UDF_SB(sb
);
2162 mutex_lock(&sbi
->s_alloc_mutex
);
2163 if (sbi
->s_lvid_dirty
) {
2165 * Blockdevice will be synced later so we don't have to submit
2168 mark_buffer_dirty(sbi
->s_lvid_bh
);
2170 sbi
->s_lvid_dirty
= 0;
2172 mutex_unlock(&sbi
->s_alloc_mutex
);
2177 static int udf_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
2179 struct super_block
*sb
= dentry
->d_sb
;
2180 struct udf_sb_info
*sbi
= UDF_SB(sb
);
2181 struct logicalVolIntegrityDescImpUse
*lvidiu
;
2182 u64 id
= huge_encode_dev(sb
->s_bdev
->bd_dev
);
2184 if (sbi
->s_lvid_bh
!= NULL
)
2185 lvidiu
= udf_sb_lvidiu(sbi
);
2189 buf
->f_type
= UDF_SUPER_MAGIC
;
2190 buf
->f_bsize
= sb
->s_blocksize
;
2191 buf
->f_blocks
= sbi
->s_partmaps
[sbi
->s_partition
].s_partition_len
;
2192 buf
->f_bfree
= udf_count_free(sb
);
2193 buf
->f_bavail
= buf
->f_bfree
;
2194 buf
->f_files
= (lvidiu
!= NULL
? (le32_to_cpu(lvidiu
->numFiles
) +
2195 le32_to_cpu(lvidiu
->numDirs
)) : 0)
2197 buf
->f_ffree
= buf
->f_bfree
;
2198 buf
->f_namelen
= UDF_NAME_LEN
- 2;
2199 buf
->f_fsid
.val
[0] = (u32
)id
;
2200 buf
->f_fsid
.val
[1] = (u32
)(id
>> 32);
2205 static unsigned int udf_count_free_bitmap(struct super_block
*sb
,
2206 struct udf_bitmap
*bitmap
)
2208 struct buffer_head
*bh
= NULL
;
2209 unsigned int accum
= 0;
2211 int block
= 0, newblock
;
2212 struct kernel_lb_addr loc
;
2216 struct spaceBitmapDesc
*bm
;
2218 loc
.logicalBlockNum
= bitmap
->s_extPosition
;
2219 loc
.partitionReferenceNum
= UDF_SB(sb
)->s_partition
;
2220 bh
= udf_read_ptagged(sb
, &loc
, 0, &ident
);
2223 udf_err(sb
, "udf_count_free failed\n");
2225 } else if (ident
!= TAG_IDENT_SBD
) {
2227 udf_err(sb
, "udf_count_free failed\n");
2231 bm
= (struct spaceBitmapDesc
*)bh
->b_data
;
2232 bytes
= le32_to_cpu(bm
->numOfBytes
);
2233 index
= sizeof(struct spaceBitmapDesc
); /* offset in first block only */
2234 ptr
= (uint8_t *)bh
->b_data
;
2237 u32 cur_bytes
= min_t(u32
, bytes
, sb
->s_blocksize
- index
);
2238 accum
+= bitmap_weight((const unsigned long *)(ptr
+ index
),
2243 newblock
= udf_get_lb_pblock(sb
, &loc
, ++block
);
2244 bh
= udf_tread(sb
, newblock
);
2246 udf_debug("read failed\n");
2250 ptr
= (uint8_t *)bh
->b_data
;
2258 static unsigned int udf_count_free_table(struct super_block
*sb
,
2259 struct inode
*table
)
2261 unsigned int accum
= 0;
2263 struct kernel_lb_addr eloc
;
2265 struct extent_position epos
;
2267 mutex_lock(&UDF_SB(sb
)->s_alloc_mutex
);
2268 epos
.block
= UDF_I(table
)->i_location
;
2269 epos
.offset
= sizeof(struct unallocSpaceEntry
);
2272 while ((etype
= udf_next_aext(table
, &epos
, &eloc
, &elen
, 1)) != -1)
2273 accum
+= (elen
>> table
->i_sb
->s_blocksize_bits
);
2276 mutex_unlock(&UDF_SB(sb
)->s_alloc_mutex
);
2281 static unsigned int udf_count_free(struct super_block
*sb
)
2283 unsigned int accum
= 0;
2284 struct udf_sb_info
*sbi
;
2285 struct udf_part_map
*map
;
2288 if (sbi
->s_lvid_bh
) {
2289 struct logicalVolIntegrityDesc
*lvid
=
2290 (struct logicalVolIntegrityDesc
*)
2291 sbi
->s_lvid_bh
->b_data
;
2292 if (le32_to_cpu(lvid
->numOfPartitions
) > sbi
->s_partition
) {
2293 accum
= le32_to_cpu(
2294 lvid
->freeSpaceTable
[sbi
->s_partition
]);
2295 if (accum
== 0xFFFFFFFF)
2303 map
= &sbi
->s_partmaps
[sbi
->s_partition
];
2304 if (map
->s_partition_flags
& UDF_PART_FLAG_UNALLOC_BITMAP
) {
2305 accum
+= udf_count_free_bitmap(sb
,
2306 map
->s_uspace
.s_bitmap
);
2308 if (map
->s_partition_flags
& UDF_PART_FLAG_FREED_BITMAP
) {
2309 accum
+= udf_count_free_bitmap(sb
,
2310 map
->s_fspace
.s_bitmap
);
2315 if (map
->s_partition_flags
& UDF_PART_FLAG_UNALLOC_TABLE
) {
2316 accum
+= udf_count_free_table(sb
,
2317 map
->s_uspace
.s_table
);
2319 if (map
->s_partition_flags
& UDF_PART_FLAG_FREED_TABLE
) {
2320 accum
+= udf_count_free_table(sb
,
2321 map
->s_fspace
.s_table
);