blob: 2f83c1204e20c4d1f9451fdac39a4731b8d03ed5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * super.c
3 *
4 * PURPOSE
5 * Super block routines for the OSTA-UDF(tm) filesystem.
6 *
7 * DESCRIPTION
8 * OSTA-UDF(tm) = Optical Storage Technology Association
9 * Universal Disk Format.
10 *
11 * This code is based on version 2.00 of the UDF specification,
12 * and revision 3 of the ECMA 167 standard [equivalent to ISO 13346].
13 * http://www.osta.org/
Alexander A. Klimov248727a2020-07-13 22:07:38 +020014 * https://www.ecma.ch/
15 * https://www.iso.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * COPYRIGHT
18 * This file is distributed under the terms of the GNU General Public
19 * License (GPL). Copies of the GPL can be obtained from:
20 * ftp://prep.ai.mit.edu/pub/gnu/GPL
21 * Each contributing author retains all rights to their own work.
22 *
23 * (C) 1998 Dave Boynton
24 * (C) 1998-2004 Ben Fennema
25 * (C) 2000 Stelias Computing Inc
26 *
27 * HISTORY
28 *
29 * 09/24/98 dgb changed to allow compiling outside of kernel, and
30 * added some debugging.
31 * 10/01/98 dgb updated to allow (some) possibility of compiling w/2.0.34
32 * 10/16/98 attempting some multi-session support
33 * 10/17/98 added freespace count for "df"
34 * 11/11/98 gr added novrs option
35 * 11/26/98 dgb added fileset,anchor mount options
Marcin Slusarz3a71fc52008-02-08 04:20:28 -080036 * 12/06/98 blf really hosed things royally. vat/sparing support. sequenced
37 * vol descs. rewrote option handling based on isofs
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * 12/20/98 find the free space bitmap (if it exists)
39 */
40
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070041#include "udfdecl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/vfs.h>
52#include <linux/vmalloc.h>
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -080053#include <linux/errno.h>
Miklos Szeredi6da80892008-02-08 04:21:50 -080054#include <linux/mount.h>
55#include <linux/seq_file.h>
Marcin Slusarz01b954a2008-02-02 22:37:07 +010056#include <linux/bitmap.h>
Bob Copelandf845fce2008-04-17 09:47:48 +020057#include <linux/crc-itu-t.h>
Jan Kara1df2ae32012-06-27 21:23:07 +020058#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <asm/byteorder.h>
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include "udf_sb.h"
62#include "udf_i.h"
63
64#include <linux/init.h>
Fabian Fredericke9736062014-06-18 19:38:24 +020065#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Jan Kara4b8d4252018-02-09 12:52:28 +010067enum {
68 VDS_POS_PRIMARY_VOL_DESC,
69 VDS_POS_UNALLOC_SPACE_DESC,
70 VDS_POS_LOGICAL_VOL_DESC,
Jan Kara4b8d4252018-02-09 12:52:28 +010071 VDS_POS_IMP_USE_VOL_DESC,
Jan Kara4b8d4252018-02-09 12:52:28 +010072 VDS_POS_LENGTH
73};
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Peter A. Felvegi44499602013-10-18 20:07:44 +020075#define VSD_FIRST_SECTOR_OFFSET 32768
76#define VSD_MAX_SECTOR_OFFSET 0x800000
77
Alden Tondettara47241c2016-04-25 19:27:56 -070078/*
79 * Maximum number of Terminating Descriptor / Logical Volume Integrity
80 * Descriptor redirections. The chosen numbers are arbitrary - just that we
81 * hopefully don't limit any real use of rewritten inode on write-once media
82 * but avoid looping for too long on corrupted media.
83 */
84#define UDF_MAX_TD_NESTING 64
85#define UDF_MAX_LVID_NESTING 1000
86
Al Viro8de52772012-02-06 12:45:27 -050087enum { UDF_MAX_LINKS = 0xffff };
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* These are the "meat" - everything else is stuffing */
90static int udf_fill_super(struct super_block *, void *, int);
91static void udf_put_super(struct super_block *);
Jan Kara146bca72009-03-16 18:27:37 +010092static int udf_sync_fs(struct super_block *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static int udf_remount_fs(struct super_block *, int *, char *);
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020094static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static void udf_open_lvid(struct super_block *);
96static void udf_close_lvid(struct super_block *);
97static unsigned int udf_count_free(struct super_block *);
David Howells726c3342006-06-23 02:02:58 -070098static int udf_statfs(struct dentry *, struct kstatfs *);
Al Viro34c80b12011-12-08 21:32:45 -050099static int udf_show_options(struct seq_file *, struct dentry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Jan Kara69d75672013-09-12 22:00:15 +0200101struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct super_block *sb)
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800102{
Jan Kara69d75672013-09-12 22:00:15 +0200103 struct logicalVolIntegrityDesc *lvid;
104 unsigned int partnum;
105 unsigned int offset;
106
107 if (!UDF_SB(sb)->s_lvid_bh)
108 return NULL;
109 lvid = (struct logicalVolIntegrityDesc *)UDF_SB(sb)->s_lvid_bh->b_data;
110 partnum = le32_to_cpu(lvid->numOfPartitions);
111 if ((sb->s_blocksize - sizeof(struct logicalVolIntegrityDescImpUse) -
112 offsetof(struct logicalVolIntegrityDesc, impUse)) /
113 (2 * sizeof(uint32_t)) < partnum) {
114 udf_err(sb, "Logical volume integrity descriptor corrupted "
115 "(numOfPartitions = %u)!\n", partnum);
116 return NULL;
117 }
118 /* The offset is to skip freeSpaceTable and sizeTable arrays */
119 offset = partnum * 2 * sizeof(uint32_t);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800120 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/* UDF filesystem type */
Al Viro152a0832010-07-25 00:46:55 +0400124static struct dentry *udf_mount(struct file_system_type *fs_type,
125 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Al Viro152a0832010-07-25 00:46:55 +0400127 return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130static struct file_system_type udf_fstype = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700131 .owner = THIS_MODULE,
132 .name = "udf",
Al Viro152a0832010-07-25 00:46:55 +0400133 .mount = udf_mount,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700134 .kill_sb = kill_block_super,
135 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
Eric W. Biederman3e64fe52013-03-11 07:05:42 -0700137MODULE_ALIAS_FS("udf");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700139static struct kmem_cache *udf_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141static struct inode *udf_alloc_inode(struct super_block *sb)
142{
143 struct udf_inode_info *ei;
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800144 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (!ei)
146 return NULL;
Dan Bastone95f87972006-08-13 23:24:18 -0700147
148 ei->i_unique = 0;
149 ei->i_lenExtents = 0;
Steven J. Magnaniab9a3a72019-08-14 07:50:02 -0500150 ei->i_lenStreams = 0;
Dan Bastone95f87972006-08-13 23:24:18 -0700151 ei->i_next_alloc_block = 0;
152 ei->i_next_alloc_goal = 0;
153 ei->i_strat4096 = 0;
Steven J. Magnaniab9a3a72019-08-14 07:50:02 -0500154 ei->i_streamdir = 0;
Alessio Igor Bogani4d0fb622010-11-16 18:40:47 +0100155 init_rwsem(&ei->i_data_sem);
Namjae Jeon99600052013-01-19 11:17:14 +0900156 ei->cached_extent.lstart = -1;
157 spin_lock_init(&ei->i_extent_cache_lock);
Dan Bastone95f87972006-08-13 23:24:18 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return &ei->vfs_inode;
160}
161
Al Viroa78bb382019-04-15 22:25:06 -0400162static void udf_free_in_core_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100163{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100164 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
165}
166
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700167static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700169 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Jan Kara382a2282020-09-25 12:29:54 +0200171 ei->i_data = NULL;
Christoph Lametera35afb82007-05-16 22:10:57 -0700172 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Fabian Frederick53ea18d2014-02-01 15:45:18 +0800175static int __init init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
178 sizeof(struct udf_inode_info),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700179 0, (SLAB_RECLAIM_ACCOUNT |
Vladimir Davydov5d097052016-01-14 15:18:21 -0800180 SLAB_MEM_SPREAD |
181 SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900182 init_once);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700183 if (!udf_inode_cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return -ENOMEM;
185 return 0;
186}
187
188static void destroy_inodecache(void)
189{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000190 /*
191 * Make sure all delayed rcu free inodes are flushed before we
192 * destroy cache.
193 */
194 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700195 kmem_cache_destroy(udf_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198/* Superblock operations */
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800199static const struct super_operations udf_sb_ops = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700200 .alloc_inode = udf_alloc_inode,
Al Viroa78bb382019-04-15 22:25:06 -0400201 .free_inode = udf_free_in_core_inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700202 .write_inode = udf_write_inode,
Al Viro3aac2b62010-06-07 00:43:39 -0400203 .evict_inode = udf_evict_inode,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700204 .put_super = udf_put_super,
Jan Kara146bca72009-03-16 18:27:37 +0100205 .sync_fs = udf_sync_fs,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700206 .statfs = udf_statfs,
207 .remount_fs = udf_remount_fs,
Miklos Szeredi6da80892008-02-08 04:21:50 -0800208 .show_options = udf_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700211struct udf_options {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 unsigned char novrs;
213 unsigned int blocksize;
214 unsigned int session;
215 unsigned int lastblock;
216 unsigned int anchor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 unsigned int flags;
Al Virofaa17292011-07-26 03:18:29 -0400218 umode_t umask;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800219 kgid_t gid;
220 kuid_t uid;
Al Virofaa17292011-07-26 03:18:29 -0400221 umode_t fmode;
222 umode_t dmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 struct nls_table *nls_map;
224};
225
226static int __init init_udf_fs(void)
227{
228 int err;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 err = init_inodecache();
231 if (err)
232 goto out1;
233 err = register_filesystem(&udf_fstype);
234 if (err)
235 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700238
239out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 destroy_inodecache();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700241
242out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return err;
244}
245
246static void __exit exit_udf_fs(void)
247{
248 unregister_filesystem(&udf_fstype);
249 destroy_inodecache();
250}
251
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800252static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
253{
254 struct udf_sb_info *sbi = UDF_SB(sb);
255
Markus Elfring033c9da2017-08-15 16:45:44 +0200256 sbi->s_partmaps = kcalloc(count, sizeof(*sbi->s_partmaps), GFP_KERNEL);
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800257 if (!sbi->s_partmaps) {
Marcin Slusarzdc5d39b2008-02-08 04:20:32 -0800258 sbi->s_partitions = 0;
259 return -ENOMEM;
260 }
261
262 sbi->s_partitions = count;
263 return 0;
264}
265
Jan Karabff943a2012-06-27 22:27:05 +0200266static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
267{
268 int i;
269 int nr_groups = bitmap->s_nr_groups;
Jan Karabff943a2012-06-27 22:27:05 +0200270
271 for (i = 0; i < nr_groups; i++)
Markus Elfring4eb09e12019-09-03 21:12:09 +0200272 brelse(bitmap->s_block_bitmap[i]);
Jan Karabff943a2012-06-27 22:27:05 +0200273
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -0800274 kvfree(bitmap);
Jan Karabff943a2012-06-27 22:27:05 +0200275}
276
277static void udf_free_partition(struct udf_part_map *map)
278{
279 int i;
280 struct udf_meta_data *mdata;
281
282 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
283 iput(map->s_uspace.s_table);
Jan Karabff943a2012-06-27 22:27:05 +0200284 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
285 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
Jan Karabff943a2012-06-27 22:27:05 +0200286 if (map->s_partition_type == UDF_SPARABLE_MAP15)
287 for (i = 0; i < 4; i++)
288 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
289 else if (map->s_partition_type == UDF_METADATA_MAP25) {
290 mdata = &map->s_type_specific.s_metadata;
291 iput(mdata->s_metadata_fe);
292 mdata->s_metadata_fe = NULL;
293
294 iput(mdata->s_mirror_fe);
295 mdata->s_mirror_fe = NULL;
296
297 iput(mdata->s_bitmap_fe);
298 mdata->s_bitmap_fe = NULL;
299 }
300}
301
302static void udf_sb_free_partitions(struct super_block *sb)
303{
304 struct udf_sb_info *sbi = UDF_SB(sb);
305 int i;
Markus Elfringba2eb862017-08-15 17:03:06 +0200306
307 if (!sbi->s_partmaps)
Namjae Jeon1b1baff2013-01-14 22:53:47 +0100308 return;
Jan Karabff943a2012-06-27 22:27:05 +0200309 for (i = 0; i < sbi->s_partitions; i++)
310 udf_free_partition(&sbi->s_partmaps[i]);
311 kfree(sbi->s_partmaps);
312 sbi->s_partmaps = NULL;
313}
314
Al Viro34c80b12011-12-08 21:32:45 -0500315static int udf_show_options(struct seq_file *seq, struct dentry *root)
Miklos Szeredi6da80892008-02-08 04:21:50 -0800316{
Al Viro34c80b12011-12-08 21:32:45 -0500317 struct super_block *sb = root->d_sb;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800318 struct udf_sb_info *sbi = UDF_SB(sb);
319
320 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
321 seq_puts(seq, ",nostrict");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100322 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
Miklos Szeredi6da80892008-02-08 04:21:50 -0800323 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
324 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
325 seq_puts(seq, ",unhide");
326 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
327 seq_puts(seq, ",undelete");
328 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
329 seq_puts(seq, ",noadinicb");
330 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
331 seq_puts(seq, ",shortad");
332 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
333 seq_puts(seq, ",uid=forget");
Miklos Szeredi6da80892008-02-08 04:21:50 -0800334 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
335 seq_puts(seq, ",gid=forget");
Miklos Szeredi6da80892008-02-08 04:21:50 -0800336 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800337 seq_printf(seq, ",uid=%u", from_kuid(&init_user_ns, sbi->s_uid));
Miklos Szeredi6da80892008-02-08 04:21:50 -0800338 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800339 seq_printf(seq, ",gid=%u", from_kgid(&init_user_ns, sbi->s_gid));
Miklos Szeredi6da80892008-02-08 04:21:50 -0800340 if (sbi->s_umask != 0)
Al Virofaa17292011-07-26 03:18:29 -0400341 seq_printf(seq, ",umask=%ho", sbi->s_umask);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100342 if (sbi->s_fmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400343 seq_printf(seq, ",mode=%ho", sbi->s_fmode);
Marcin Slusarz87bc7302008-12-02 13:40:11 +0100344 if (sbi->s_dmode != UDF_INVALID_MODE)
Al Virofaa17292011-07-26 03:18:29 -0400345 seq_printf(seq, ",dmode=%ho", sbi->s_dmode);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800346 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
Steve Magnanifcbf7632017-10-12 08:48:41 -0500347 seq_printf(seq, ",session=%d", sbi->s_session);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800348 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
349 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
Jan Kara403460052009-03-19 16:21:38 +0100350 if (sbi->s_anchor != 0)
351 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
Miklos Szeredi6da80892008-02-08 04:21:50 -0800352 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
353 seq_puts(seq, ",utf8");
354 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
355 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
356
357 return 0;
358}
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360/*
361 * udf_parse_options
362 *
363 * PURPOSE
364 * Parse mount options.
365 *
366 * DESCRIPTION
367 * The following mount options are supported:
368 *
369 * gid= Set the default group.
370 * umask= Set the default umask.
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100371 * mode= Set the default file permissions.
372 * dmode= Set the default directory permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 * uid= Set the default user.
374 * bs= Set the block size.
375 * unhide Show otherwise hidden files.
376 * undelete Show deleted files in lists.
377 * adinicb Embed data in the inode (default)
378 * noadinicb Don't embed data in the inode
379 * shortad Use short ad's
380 * longad Use long ad's (default)
381 * nostrict Unset strict conformance
382 * iocharset= Set the NLS character set
383 *
384 * The remaining are for debugging and disaster recovery:
385 *
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700386 * novrs Skip volume sequence recognition
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 *
388 * The following expect a offset from 0.
389 *
390 * session= Set the CDROM session (default= last session)
391 * anchor= Override standard anchor location. (default= 256)
392 * volume= Override the VolumeDesc location. (unused)
393 * partition= Override the PartitionDesc location. (unused)
394 * lastblock= Set the last block of the filesystem/
395 *
396 * The following expect a offset from the partition root.
397 *
398 * fileset= Override the fileset block location. (unused)
399 * rootdir= Override the root directory location. (unused)
400 * WARNING: overriding the rootdir to a non-directory may
401 * yield highly unpredictable results.
402 *
403 * PRE-CONDITIONS
404 * options Pointer to mount options string.
405 * uopts Pointer to mount options variable.
406 *
407 * POST-CONDITIONS
408 * <return> 1 Mount options parsed okay.
409 * <return> 0 Error parsing mount options.
410 *
411 * HISTORY
412 * July 1, 1997 - Andrew E. Mileski
413 * Written, tested, and released.
414 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416enum {
417 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
418 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
419 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
420 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
421 Opt_rootdir, Opt_utf8, Opt_iocharset,
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100422 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
423 Opt_fmode, Opt_dmode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424};
425
Steven Whitehousea447c092008-10-13 10:46:57 +0100426static const match_table_t tokens = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700427 {Opt_novrs, "novrs"},
428 {Opt_nostrict, "nostrict"},
429 {Opt_bs, "bs=%u"},
430 {Opt_unhide, "unhide"},
431 {Opt_undelete, "undelete"},
432 {Opt_noadinicb, "noadinicb"},
433 {Opt_adinicb, "adinicb"},
434 {Opt_shortad, "shortad"},
435 {Opt_longad, "longad"},
436 {Opt_uforget, "uid=forget"},
437 {Opt_uignore, "uid=ignore"},
438 {Opt_gforget, "gid=forget"},
439 {Opt_gignore, "gid=ignore"},
440 {Opt_gid, "gid=%u"},
441 {Opt_uid, "uid=%u"},
442 {Opt_umask, "umask=%o"},
443 {Opt_session, "session=%u"},
444 {Opt_lastblock, "lastblock=%u"},
445 {Opt_anchor, "anchor=%u"},
446 {Opt_volume, "volume=%u"},
447 {Opt_partition, "partition=%u"},
448 {Opt_fileset, "fileset=%u"},
449 {Opt_rootdir, "rootdir=%u"},
450 {Opt_utf8, "utf8"},
451 {Opt_iocharset, "iocharset=%s"},
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100452 {Opt_fmode, "mode=%o"},
453 {Opt_dmode, "dmode=%o"},
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700454 {Opt_err, NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455};
456
Miklos Szeredi6da80892008-02-08 04:21:50 -0800457static int udf_parse_options(char *options, struct udf_options *uopt,
458 bool remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 char *p;
461 int option;
BingJing Chang3a9a3aa2021-01-29 12:55:02 +0800462 unsigned int uv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 uopt->session = 0xFFFFFFFF;
466 uopt->lastblock = 0;
467 uopt->anchor = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 if (!options)
470 return 1;
471
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700472 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 substring_t args[MAX_OPT_ARGS];
474 int token;
Fabian Frederick8c6915a2014-01-29 17:13:16 +0800475 unsigned n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (!*p)
477 continue;
478
479 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700480 switch (token) {
481 case Opt_novrs:
482 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100483 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700484 case Opt_bs:
485 if (match_int(&args[0], &option))
486 return 0;
Fabian Frederick8c6915a2014-01-29 17:13:16 +0800487 n = option;
488 if (n != 512 && n != 1024 && n != 2048 && n != 4096)
489 return 0;
490 uopt->blocksize = n;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100491 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700492 break;
493 case Opt_unhide:
494 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
495 break;
496 case Opt_undelete:
497 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
498 break;
499 case Opt_noadinicb:
500 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
501 break;
502 case Opt_adinicb:
503 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
504 break;
505 case Opt_shortad:
506 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
507 break;
508 case Opt_longad:
509 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
510 break;
511 case Opt_gid:
BingJing Chang3a9a3aa2021-01-29 12:55:02 +0800512 if (match_uint(args, &uv))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700513 return 0;
BingJing Chang3a9a3aa2021-01-29 12:55:02 +0800514 uopt->gid = make_kgid(current_user_ns(), uv);
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800515 if (!gid_valid(uopt->gid))
516 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700517 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700518 break;
519 case Opt_uid:
BingJing Chang3a9a3aa2021-01-29 12:55:02 +0800520 if (match_uint(args, &uv))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700521 return 0;
BingJing Chang3a9a3aa2021-01-29 12:55:02 +0800522 uopt->uid = make_kuid(current_user_ns(), uv);
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800523 if (!uid_valid(uopt->uid))
524 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700525 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700526 break;
527 case Opt_umask:
528 if (match_octal(args, &option))
529 return 0;
530 uopt->umask = option;
531 break;
532 case Opt_nostrict:
533 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
534 break;
535 case Opt_session:
536 if (match_int(args, &option))
537 return 0;
538 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800539 if (!remount)
540 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700541 break;
542 case Opt_lastblock:
543 if (match_int(args, &option))
544 return 0;
545 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800546 if (!remount)
547 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700548 break;
549 case Opt_anchor:
550 if (match_int(args, &option))
551 return 0;
552 uopt->anchor = option;
553 break;
554 case Opt_volume:
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700555 case Opt_partition:
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700556 case Opt_fileset:
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700557 case Opt_rootdir:
Jan Karaf0c4a812018-02-22 14:33:04 +0100558 /* Ignored (never implemented properly) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700559 break;
560 case Opt_utf8:
561 uopt->flags |= (1 << UDF_FLAG_UTF8);
562 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700563 case Opt_iocharset:
Chengguang Xu785dffe2018-02-25 21:25:07 +0800564 if (!remount) {
565 if (uopt->nls_map)
566 unload_nls(uopt->nls_map);
Jan Karaa768a9a2019-03-19 09:48:59 +0100567 /*
568 * load_nls() failure is handled later in
569 * udf_fill_super() after all options are
570 * parsed.
571 */
Chengguang Xu785dffe2018-02-25 21:25:07 +0800572 uopt->nls_map = load_nls(args[0].from);
573 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
574 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700575 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700576 case Opt_uforget:
577 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
578 break;
Jan Kara70260e42018-02-21 17:27:44 +0100579 case Opt_uignore:
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700580 case Opt_gignore:
Jan Kara70260e42018-02-21 17:27:44 +0100581 /* These options are superseeded by uid=<number> */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700582 break;
583 case Opt_gforget:
584 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
585 break;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100586 case Opt_fmode:
587 if (match_octal(args, &option))
588 return 0;
589 uopt->fmode = option & 0777;
590 break;
591 case Opt_dmode:
592 if (match_octal(args, &option))
593 return 0;
594 uopt->dmode = option & 0777;
595 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700596 default:
Joe Perches78ace702011-10-10 01:08:05 -0700597 pr_err("bad mount option \"%s\" or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return 0;
599 }
600 }
601 return 1;
602}
603
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700604static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
606 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800607 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400608 int error = 0;
Jan Karaa9ad01b2018-09-06 15:56:10 +0200609
610 if (!(*flags & SB_RDONLY) && UDF_QUERY_FLAG(sb, UDF_FLAG_RW_INCOMPAT))
611 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Theodore Ts'o02b99842014-03-13 10:14:33 -0400613 sync_filesystem(sb);
Jan Karae729eac2013-07-25 16:15:16 +0200614
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800615 uopt.flags = sbi->s_flags;
616 uopt.uid = sbi->s_uid;
617 uopt.gid = sbi->s_gid;
618 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100619 uopt.fmode = sbi->s_fmode;
620 uopt.dmode = sbi->s_dmode;
Chengguang Xu785dffe2018-02-25 21:25:07 +0800621 uopt.nls_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Miklos Szeredi6da80892008-02-08 04:21:50 -0800623 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return -EINVAL;
625
Jan Karac03cad22010-10-20 22:17:28 +0200626 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800627 sbi->s_flags = uopt.flags;
628 sbi->s_uid = uopt.uid;
629 sbi->s_gid = uopt.gid;
630 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100631 sbi->s_fmode = uopt.fmode;
632 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200633 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800635 if ((bool)(*flags & SB_RDONLY) == sb_rdonly(sb))
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400636 goto out_unlock;
637
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800638 if (*flags & SB_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200640 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 udf_open_lvid(sb);
642
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400643out_unlock:
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400644 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500647/*
648 * Check VSD descriptor. Returns -1 in case we are at the end of volume
649 * recognition area, 0 if the descriptor is valid but non-interesting, 1 if
650 * we found one of NSR descriptors we are looking for.
651 */
652static int identify_vsd(const struct volStructDesc *vsd)
653{
654 int ret = 0;
655
656 if (!memcmp(vsd->stdIdent, VSD_STD_ID_CD001, VSD_STD_ID_LEN)) {
657 switch (vsd->structType) {
658 case 0:
659 udf_debug("ISO9660 Boot Record found\n");
660 break;
661 case 1:
662 udf_debug("ISO9660 Primary Volume Descriptor found\n");
663 break;
664 case 2:
665 udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
666 break;
667 case 3:
668 udf_debug("ISO9660 Volume Partition Descriptor found\n");
669 break;
670 case 255:
671 udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
672 break;
673 default:
674 udf_debug("ISO9660 VRS (%u) found\n", vsd->structType);
675 break;
676 }
677 } else if (!memcmp(vsd->stdIdent, VSD_STD_ID_BEA01, VSD_STD_ID_LEN))
678 ; /* ret = 0 */
679 else if (!memcmp(vsd->stdIdent, VSD_STD_ID_NSR02, VSD_STD_ID_LEN))
680 ret = 1;
681 else if (!memcmp(vsd->stdIdent, VSD_STD_ID_NSR03, VSD_STD_ID_LEN))
682 ret = 1;
683 else if (!memcmp(vsd->stdIdent, VSD_STD_ID_BOOT2, VSD_STD_ID_LEN))
684 ; /* ret = 0 */
685 else if (!memcmp(vsd->stdIdent, VSD_STD_ID_CDW02, VSD_STD_ID_LEN))
686 ; /* ret = 0 */
687 else {
688 /* TEA01 or invalid id : end of volume recognition area */
689 ret = -1;
690 }
691
692 return ret;
693}
694
695/*
696 * Check Volume Structure Descriptors (ECMA 167 2/9.1)
697 * We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1)
698 * @return 1 if NSR02 or NSR03 found,
699 * -1 if first sector read error, 0 otherwise
700 */
701static int udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 struct volStructDesc *vsd = NULL;
Peter A. Felvegi44499602013-10-18 20:07:44 +0200704 loff_t sector = VSD_FIRST_SECTOR_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 int sectorsize;
706 struct buffer_head *bh = NULL;
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500707 int nsr = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800708 struct udf_sb_info *sbi;
lianzhi chang5cdc4a62021-01-14 15:57:41 +0800709 loff_t session_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800711 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (sb->s_blocksize < sizeof(struct volStructDesc))
713 sectorsize = sizeof(struct volStructDesc);
714 else
715 sectorsize = sb->s_blocksize;
716
lianzhi chang5cdc4a62021-01-14 15:57:41 +0800717 session_offset = (loff_t)sbi->s_session << sb->s_blocksize_bits;
718 sector += session_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Steve Magnanifcbf7632017-10-12 08:48:41 -0500720 udf_debug("Starting at sector %u (%lu byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200721 (unsigned int)(sector >> sb->s_blocksize_bits),
722 sb->s_blocksize);
Peter A. Felvegi44499602013-10-18 20:07:44 +0200723 /* Process the sequence (if applicable). The hard limit on the sector
724 * offset is arbitrary, hopefully large enough so that all valid UDF
725 * filesystems will be recognised. There is no mention of an upper
726 * bound to the size of the volume recognition area in the standard.
727 * The limit will prevent the code to read all the sectors of a
728 * specially crafted image (like a bluray disc full of CD001 sectors),
729 * potentially causing minutes or even hours of uninterruptible I/O
730 * activity. This actually happened with uninitialised SSD partitions
731 * (all 0xFF) before the check for the limit and all valid IDs were
732 * added */
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500733 for (; !nsr && sector < VSD_MAX_SECTOR_OFFSET; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 /* Read a block */
735 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
736 if (!bh)
737 break;
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800740 (sector & (sb->s_blocksize - 1)));
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500741 nsr = identify_vsd(vsd);
Steven J. Magnani6fbacb82019-07-11 08:38:52 -0500742 /* Found NSR or end? */
743 if (nsr) {
744 brelse(bh);
745 break;
746 }
747 /*
748 * Special handling for improperly formatted VRS (e.g., Win10)
749 * where components are separated by 2048 bytes even though
750 * sectors are 4K
751 */
752 if (sb->s_blocksize == 4096) {
753 nsr = identify_vsd(vsd + 1);
754 /* Ignore unknown IDs... */
755 if (nsr < 0)
756 nsr = 0;
757 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700758 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500761 if (nsr > 0)
762 return 1;
lianzhi chang5cdc4a62021-01-14 15:57:41 +0800763 else if (!bh && sector - session_offset == VSD_FIRST_SECTOR_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return -1;
765 else
766 return 0;
767}
768
Jan Kara8b47ea62019-08-29 14:19:30 +0200769static int udf_verify_domain_identifier(struct super_block *sb,
770 struct regid *ident, char *dname)
771{
Pali Rohár871b9b12020-01-07 22:29:03 +0100772 struct domainIdentSuffix *suffix;
Jan Kara8b47ea62019-08-29 14:19:30 +0200773
774 if (memcmp(ident->ident, UDF_ID_COMPLIANT, strlen(UDF_ID_COMPLIANT))) {
775 udf_warn(sb, "Not OSTA UDF compliant %s descriptor.\n", dname);
776 goto force_ro;
777 }
Pali Rohár49be68c2020-01-12 23:13:53 +0100778 if (ident->flags & ENTITYID_FLAGS_DIRTY) {
Jan Kara8b47ea62019-08-29 14:19:30 +0200779 udf_warn(sb, "Possibly not OSTA UDF compliant %s descriptor.\n",
780 dname);
781 goto force_ro;
782 }
Pali Rohár871b9b12020-01-07 22:29:03 +0100783 suffix = (struct domainIdentSuffix *)ident->identSuffix;
784 if ((suffix->domainFlags & DOMAIN_FLAGS_HARD_WRITE_PROTECT) ||
785 (suffix->domainFlags & DOMAIN_FLAGS_SOFT_WRITE_PROTECT)) {
Jan Kara8b47ea62019-08-29 14:19:30 +0200786 if (!sb_rdonly(sb)) {
787 udf_warn(sb, "Descriptor for %s marked write protected."
788 " Forcing read only mount.\n", dname);
789 }
790 goto force_ro;
791 }
792 return 0;
793
794force_ro:
795 if (!sb_rdonly(sb))
796 return -EACCES;
797 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
798 return 0;
799}
800
801static int udf_load_fileset(struct super_block *sb, struct fileSetDesc *fset,
802 struct kernel_lb_addr *root)
803{
804 int ret;
805
806 ret = udf_verify_domain_identifier(sb, &fset->domainIdent, "file set");
807 if (ret < 0)
808 return ret;
809
810 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
811 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
812
813 udf_debug("Rootdir at block=%u, partition=%u\n",
814 root->logicalBlockNum, root->partitionReferenceNum);
815 return 0;
816}
817
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800818static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200819 struct kernel_lb_addr *fileset,
820 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 uint16_t ident;
Jan Kara2dee5aa2019-08-29 14:11:54 +0200824 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Jan Kara2dee5aa2019-08-29 14:11:54 +0200826 if (fileset->logicalBlockNum == 0xFFFFFFFF &&
827 fileset->partitionReferenceNum == 0xFFFF)
828 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Jan Kara2dee5aa2019-08-29 14:11:54 +0200830 bh = udf_read_ptagged(sb, fileset, 0, &ident);
831 if (!bh)
832 return -EIO;
833 if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700834 brelse(bh);
Jan Kara2dee5aa2019-08-29 14:11:54 +0200835 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
Jan Kara2dee5aa2019-08-29 14:11:54 +0200837
838 udf_debug("Fileset at block=%u, partition=%u\n",
839 fileset->logicalBlockNum, fileset->partitionReferenceNum);
840
841 UDF_SB(sb)->s_partition = fileset->partitionReferenceNum;
842 ret = udf_load_fileset(sb, (struct fileSetDesc *)bh->b_data, root);
843 brelse(bh);
844 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
Jan Karad759bfa42013-07-25 19:10:59 +0200847/*
848 * Load primary Volume Descriptor Sequence
849 *
850 * Return <0 on error, 0 on success. -EAGAIN is special meaning next sequence
851 * should be tried.
852 */
Jan Karac0eb31e2008-04-01 16:50:35 +0200853static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 struct primaryVolDesc *pvoldesc;
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600856 uint8_t *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200857 struct buffer_head *bh;
858 uint16_t ident;
Jing Xiangfengaa9f6662020-09-22 16:13:22 +0800859 int ret;
Deepa Dinamani0220edd2018-05-10 08:26:17 -0700860 struct timestamp *ts;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100861
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600862 outstr = kmalloc(128, GFP_NOFS);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100863 if (!outstr)
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600864 return -ENOMEM;
Jan Karac0eb31e2008-04-01 16:50:35 +0200865
866 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karad759bfa42013-07-25 19:10:59 +0200867 if (!bh) {
868 ret = -EAGAIN;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100869 goto out2;
Jan Karad759bfa42013-07-25 19:10:59 +0200870 }
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100871
Jan Karad759bfa42013-07-25 19:10:59 +0200872 if (ident != TAG_IDENT_PVD) {
873 ret = -EIO;
874 goto out_bh;
875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 pvoldesc = (struct primaryVolDesc *)bh->b_data;
878
Deepa Dinamani0220edd2018-05-10 08:26:17 -0700879 udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
880 pvoldesc->recordingDateAndTime);
Deepa Dinamani0220edd2018-05-10 08:26:17 -0700881 ts = &pvoldesc->recordingDateAndTime;
882 udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
883 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
884 ts->minute, le16_to_cpu(ts->typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Jan Karae966fc8d2018-04-16 15:44:19 +0200886 ret = udf_dstrCS0toChar(sb, outstr, 31, pvoldesc->volIdent, 32);
Jan Karab54e41f2018-11-16 13:43:17 +0100887 if (ret < 0) {
888 strcpy(UDF_SB(sb)->s_volume_ident, "InvalidName");
889 pr_warn("incorrect volume identification, setting to "
890 "'InvalidName'\n");
891 } else {
892 strncpy(UDF_SB(sb)->s_volume_ident, outstr, ret);
893 }
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600894 udf_debug("volIdent[] = '%s'\n", UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Jan Karae966fc8d2018-04-16 15:44:19 +0200896 ret = udf_dstrCS0toChar(sb, outstr, 127, pvoldesc->volSetIdent, 128);
Jan Karab54e41f2018-11-16 13:43:17 +0100897 if (ret < 0) {
898 ret = 0;
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600899 goto out_bh;
Jan Karab54e41f2018-11-16 13:43:17 +0100900 }
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600901 outstr[ret] = 0;
902 udf_debug("volSetIdent[] = '%s'\n", outstr);
Jan Karac0eb31e2008-04-01 16:50:35 +0200903
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100904 ret = 0;
Jan Karad759bfa42013-07-25 19:10:59 +0200905out_bh:
906 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100907out2:
908 kfree(outstr);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100909 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Namjae Jeon3080a742011-10-23 19:28:32 +0900912struct inode *udf_find_metadata_inode_efe(struct super_block *sb,
Alden Tondettar78888242016-05-18 14:09:19 -0700913 u32 meta_file_loc, u32 partition_ref)
Namjae Jeon3080a742011-10-23 19:28:32 +0900914{
915 struct kernel_lb_addr addr;
916 struct inode *metadata_fe;
917
918 addr.logicalBlockNum = meta_file_loc;
Alden Tondettar78888242016-05-18 14:09:19 -0700919 addr.partitionReferenceNum = partition_ref;
Namjae Jeon3080a742011-10-23 19:28:32 +0900920
Jan Kara6174c2e2014-10-09 12:52:16 +0200921 metadata_fe = udf_iget_special(sb, &addr);
Namjae Jeon3080a742011-10-23 19:28:32 +0900922
Jan Kara6d3d5e82014-09-04 16:15:51 +0200923 if (IS_ERR(metadata_fe)) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900924 udf_warn(sb, "metadata inode efe not found\n");
Jan Kara6d3d5e82014-09-04 16:15:51 +0200925 return metadata_fe;
926 }
927 if (UDF_I(metadata_fe)->i_alloc_type != ICBTAG_FLAG_AD_SHORT) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900928 udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
929 iput(metadata_fe);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200930 return ERR_PTR(-EIO);
Namjae Jeon3080a742011-10-23 19:28:32 +0900931 }
932
933 return metadata_fe;
934}
935
Alden Tondettar78888242016-05-18 14:09:19 -0700936static int udf_load_metadata_files(struct super_block *sb, int partition,
937 int type1_index)
Jan Karabfb257a2008-04-08 20:37:21 +0200938{
939 struct udf_sb_info *sbi = UDF_SB(sb);
940 struct udf_part_map *map;
941 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200942 struct kernel_lb_addr addr;
Jan Kara6d3d5e82014-09-04 16:15:51 +0200943 struct inode *fe;
Jan Karabfb257a2008-04-08 20:37:21 +0200944
945 map = &sbi->s_partmaps[partition];
946 mdata = &map->s_type_specific.s_metadata;
Alden Tondettar78888242016-05-18 14:09:19 -0700947 mdata->s_phys_partition_ref = type1_index;
Jan Karabfb257a2008-04-08 20:37:21 +0200948
949 /* metadata address */
Steve Magnanifcbf7632017-10-12 08:48:41 -0500950 udf_debug("Metadata file location: block = %u part = %u\n",
Alden Tondettar78888242016-05-18 14:09:19 -0700951 mdata->s_meta_file_loc, mdata->s_phys_partition_ref);
Jan Karabfb257a2008-04-08 20:37:21 +0200952
Jan Kara6d3d5e82014-09-04 16:15:51 +0200953 fe = udf_find_metadata_inode_efe(sb, mdata->s_meta_file_loc,
Alden Tondettar78888242016-05-18 14:09:19 -0700954 mdata->s_phys_partition_ref);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200955 if (IS_ERR(fe)) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900956 /* mirror file entry */
Steve Magnanifcbf7632017-10-12 08:48:41 -0500957 udf_debug("Mirror metadata file location: block = %u part = %u\n",
Alden Tondettar78888242016-05-18 14:09:19 -0700958 mdata->s_mirror_file_loc, mdata->s_phys_partition_ref);
Jan Karabfb257a2008-04-08 20:37:21 +0200959
Jan Kara6d3d5e82014-09-04 16:15:51 +0200960 fe = udf_find_metadata_inode_efe(sb, mdata->s_mirror_file_loc,
Alden Tondettar78888242016-05-18 14:09:19 -0700961 mdata->s_phys_partition_ref);
Jan Karabfb257a2008-04-08 20:37:21 +0200962
Jan Kara6d3d5e82014-09-04 16:15:51 +0200963 if (IS_ERR(fe)) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900964 udf_err(sb, "Both metadata and mirror metadata inode efe can not found\n");
Jan Kara6d3d5e82014-09-04 16:15:51 +0200965 return PTR_ERR(fe);
Namjae Jeon3080a742011-10-23 19:28:32 +0900966 }
Jan Kara6d3d5e82014-09-04 16:15:51 +0200967 mdata->s_mirror_fe = fe;
968 } else
969 mdata->s_metadata_fe = fe;
970
Jan Karabfb257a2008-04-08 20:37:21 +0200971
972 /*
973 * bitmap file entry
974 * Note:
975 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
976 */
977 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
978 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
Alden Tondettar78888242016-05-18 14:09:19 -0700979 addr.partitionReferenceNum = mdata->s_phys_partition_ref;
Jan Karabfb257a2008-04-08 20:37:21 +0200980
Steve Magnanifcbf7632017-10-12 08:48:41 -0500981 udf_debug("Bitmap file location: block = %u part = %u\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700982 addr.logicalBlockNum, addr.partitionReferenceNum);
Jan Karabfb257a2008-04-08 20:37:21 +0200983
Jan Kara6174c2e2014-10-09 12:52:16 +0200984 fe = udf_iget_special(sb, &addr);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200985 if (IS_ERR(fe)) {
David Howellsbc98a422017-07-17 08:45:34 +0100986 if (sb_rdonly(sb))
Joe Perchesa40ecd72011-10-10 01:08:04 -0700987 udf_warn(sb, "bitmap inode efe not found but it's ok since the disc is mounted read-only\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200988 else {
Joe Perches8076c362011-10-10 01:08:03 -0700989 udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
Jan Kara6d3d5e82014-09-04 16:15:51 +0200990 return PTR_ERR(fe);
Jan Karabfb257a2008-04-08 20:37:21 +0200991 }
Jan Kara6d3d5e82014-09-04 16:15:51 +0200992 } else
993 mdata->s_bitmap_fe = fe;
Jan Karabfb257a2008-04-08 20:37:21 +0200994 }
995
996 udf_debug("udf_load_metadata_files Ok\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200997 return 0;
Jan Karabfb257a2008-04-08 20:37:21 +0200998}
999
Marcin Slusarz883cb9d12008-02-08 04:20:34 -08001000int udf_compute_nr_groups(struct super_block *sb, u32 partition)
1001{
1002 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +01001003 return DIV_ROUND_UP(map->s_partition_len +
1004 (sizeof(struct spaceBitmapDesc) << 3),
1005 sb->s_blocksize * 8);
Marcin Slusarz883cb9d12008-02-08 04:20:34 -08001006}
1007
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001008static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
1009{
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001010 struct udf_bitmap *bitmap;
Denis Efremov256ccb92020-08-28 01:16:52 +03001011 int nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001012
Denis Efremov256ccb92020-08-28 01:16:52 +03001013 bitmap = kvzalloc(struct_size(bitmap, s_block_bitmap, nr_groups),
1014 GFP_KERNEL);
Markus Elfringba2eb862017-08-15 17:03:06 +02001015 if (!bitmap)
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001016 return NULL;
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001017
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001018 bitmap->s_nr_groups = nr_groups;
1019 return bitmap;
1020}
1021
Jan Karab085fbe2018-09-06 15:46:17 +02001022static int check_partition_desc(struct super_block *sb,
1023 struct partitionDesc *p,
1024 struct udf_part_map *map)
1025{
1026 bool umap, utable, fmap, ftable;
1027 struct partitionHeaderDesc *phd;
1028
1029 switch (le32_to_cpu(p->accessType)) {
1030 case PD_ACCESS_TYPE_READ_ONLY:
1031 case PD_ACCESS_TYPE_WRITE_ONCE:
Jan Karab085fbe2018-09-06 15:46:17 +02001032 case PD_ACCESS_TYPE_NONE:
1033 goto force_ro;
1034 }
1035
1036 /* No Partition Header Descriptor? */
1037 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1038 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1039 goto force_ro;
1040
1041 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1042 utable = phd->unallocSpaceTable.extLength;
1043 umap = phd->unallocSpaceBitmap.extLength;
1044 ftable = phd->freedSpaceTable.extLength;
1045 fmap = phd->freedSpaceBitmap.extLength;
1046
1047 /* No allocation info? */
1048 if (!utable && !umap && !ftable && !fmap)
1049 goto force_ro;
1050
1051 /* We don't support blocks that require erasing before overwrite */
1052 if (ftable || fmap)
1053 goto force_ro;
1054 /* UDF 2.60: 2.3.3 - no mixing of tables & bitmaps, no VAT. */
1055 if (utable && umap)
1056 goto force_ro;
1057
1058 if (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Pali Rohár57debb82020-01-12 15:49:59 +01001059 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1060 map->s_partition_type == UDF_METADATA_MAP25)
Jan Karab085fbe2018-09-06 15:46:17 +02001061 goto force_ro;
1062
1063 return 0;
1064force_ro:
1065 if (!sb_rdonly(sb))
1066 return -EACCES;
1067 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
1068 return 0;
1069}
1070
Jan Kara3fb38df2008-04-02 12:26:36 +02001071static int udf_fill_partdesc_info(struct super_block *sb,
1072 struct partitionDesc *p, int p_index)
1073{
1074 struct udf_part_map *map;
1075 struct udf_sb_info *sbi = UDF_SB(sb);
1076 struct partitionHeaderDesc *phd;
Jan Karab085fbe2018-09-06 15:46:17 +02001077 int err;
Jan Kara3fb38df2008-04-02 12:26:36 +02001078
1079 map = &sbi->s_partmaps[p_index];
1080
1081 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
1082 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
1083
1084 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
1085 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
1086 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
1087 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
1088 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
1089 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
1090 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
1091 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1092
Steve Magnanifcbf7632017-10-12 08:48:41 -05001093 udf_debug("Partition (%d type %x) starts at physical %u, block length %u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001094 p_index, map->s_partition_type,
1095 map->s_partition_root, map->s_partition_len);
Jan Kara3fb38df2008-04-02 12:26:36 +02001096
Jan Karab085fbe2018-09-06 15:46:17 +02001097 err = check_partition_desc(sb, p, map);
1098 if (err)
1099 return err;
1100
1101 /*
1102 * Skip loading allocation info it we cannot ever write to the fs.
1103 * This is a correctness thing as we may have decided to force ro mount
1104 * to avoid allocation info we don't support.
1105 */
1106 if (UDF_QUERY_FLAG(sb, UDF_FLAG_RW_INCOMPAT))
Jan Kara3fb38df2008-04-02 12:26:36 +02001107 return 0;
1108
1109 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1110 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001111 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001112 .logicalBlockNum = le32_to_cpu(
1113 phd->unallocSpaceTable.extPosition),
1114 .partitionReferenceNum = p_index,
1115 };
Jan Kara6d3d5e82014-09-04 16:15:51 +02001116 struct inode *inode;
Jan Kara3fb38df2008-04-02 12:26:36 +02001117
Jan Kara6174c2e2014-10-09 12:52:16 +02001118 inode = udf_iget_special(sb, &loc);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001119 if (IS_ERR(inode)) {
Jan Kara3fb38df2008-04-02 12:26:36 +02001120 udf_debug("cannot load unallocSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001121 p_index);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001122 return PTR_ERR(inode);
Jan Kara3fb38df2008-04-02 12:26:36 +02001123 }
Jan Kara6d3d5e82014-09-04 16:15:51 +02001124 map->s_uspace.s_table = inode;
Jan Kara3fb38df2008-04-02 12:26:36 +02001125 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
Steve Magnanifcbf7632017-10-12 08:48:41 -05001126 udf_debug("unallocSpaceTable (part %d) @ %lu\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001127 p_index, map->s_uspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001128 }
1129
1130 if (phd->unallocSpaceBitmap.extLength) {
1131 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1132 if (!bitmap)
Jan Karad759bfa42013-07-25 19:10:59 +02001133 return -ENOMEM;
Jan Kara3fb38df2008-04-02 12:26:36 +02001134 map->s_uspace.s_bitmap = bitmap;
Jan Kara3fb38df2008-04-02 12:26:36 +02001135 bitmap->s_extPosition = le32_to_cpu(
1136 phd->unallocSpaceBitmap.extPosition);
1137 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
Steve Magnanifcbf7632017-10-12 08:48:41 -05001138 udf_debug("unallocSpaceBitmap (part %d) @ %u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001139 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001140 }
1141
Jan Kara3fb38df2008-04-02 12:26:36 +02001142 return 0;
1143}
1144
Jan Karae971b0b2009-11-30 19:47:55 +01001145static void udf_find_vat_block(struct super_block *sb, int p_index,
1146 int type1_index, sector_t start_block)
1147{
1148 struct udf_sb_info *sbi = UDF_SB(sb);
1149 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1150 sector_t vat_block;
1151 struct kernel_lb_addr ino;
Jan Kara6d3d5e82014-09-04 16:15:51 +02001152 struct inode *inode;
Jan Karae971b0b2009-11-30 19:47:55 +01001153
1154 /*
1155 * VAT file entry is in the last recorded block. Some broken disks have
1156 * it a few blocks before so try a bit harder...
1157 */
1158 ino.partitionReferenceNum = type1_index;
1159 for (vat_block = start_block;
1160 vat_block >= map->s_partition_root &&
Jan Kara6d3d5e82014-09-04 16:15:51 +02001161 vat_block >= start_block - 3; vat_block--) {
Jan Karae971b0b2009-11-30 19:47:55 +01001162 ino.logicalBlockNum = vat_block - map->s_partition_root;
Jan Kara6174c2e2014-10-09 12:52:16 +02001163 inode = udf_iget_special(sb, &ino);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001164 if (!IS_ERR(inode)) {
1165 sbi->s_vat_inode = inode;
1166 break;
1167 }
Jan Karae971b0b2009-11-30 19:47:55 +01001168 }
1169}
1170
Jan Kara38b74a52008-04-02 16:01:35 +02001171static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1172{
1173 struct udf_sb_info *sbi = UDF_SB(sb);
1174 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001175 struct buffer_head *bh = NULL;
1176 struct udf_inode_info *vati;
1177 uint32_t pos;
1178 struct virtualAllocationTable20 *vat20;
Fabian Frederick23bcda12017-01-06 21:54:41 +01001179 sector_t blocks = i_size_read(sb->s_bdev->bd_inode) >>
1180 sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001181
Jan Karae971b0b2009-11-30 19:47:55 +01001182 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001183 if (!sbi->s_vat_inode &&
1184 sbi->s_last_block != blocks - 1) {
Joe Perches78ace702011-10-10 01:08:05 -07001185 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1186 (unsigned long)sbi->s_last_block,
1187 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001188 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001189 }
Jan Kara38b74a52008-04-02 16:01:35 +02001190 if (!sbi->s_vat_inode)
Jan Karad759bfa42013-07-25 19:10:59 +02001191 return -EIO;
Jan Kara38b74a52008-04-02 16:01:35 +02001192
1193 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001194 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001195 map->s_type_specific.s_virtual.s_num_entries =
1196 (sbi->s_vat_inode->i_size - 36) >> 2;
1197 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001198 vati = UDF_I(sbi->s_vat_inode);
1199 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1200 pos = udf_block_map(sbi->s_vat_inode, 0);
1201 bh = sb_bread(sb, pos);
1202 if (!bh)
Jan Karad759bfa42013-07-25 19:10:59 +02001203 return -EIO;
Jan Karafa5e0812008-04-08 02:08:53 +02001204 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1205 } else {
1206 vat20 = (struct virtualAllocationTable20 *)
Jan Kara382a2282020-09-25 12:29:54 +02001207 vati->i_data;
Jan Karafa5e0812008-04-08 02:08:53 +02001208 }
Jan Kara38b74a52008-04-02 16:01:35 +02001209
Jan Kara38b74a52008-04-02 16:01:35 +02001210 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001211 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001212 map->s_type_specific.s_virtual.s_num_entries =
1213 (sbi->s_vat_inode->i_size -
1214 map->s_type_specific.s_virtual.
1215 s_start_offset) >> 2;
1216 brelse(bh);
1217 }
1218 return 0;
1219}
1220
Jan Karad759bfa42013-07-25 19:10:59 +02001221/*
1222 * Load partition descriptor block
1223 *
1224 * Returns <0 on error, 0 on success, -EAGAIN is special - try next descriptor
1225 * sequence.
1226 */
Jan Karac0eb31e2008-04-01 16:50:35 +02001227static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Jan Karac0eb31e2008-04-01 16:50:35 +02001229 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001230 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001231 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001232 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001233 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001234 uint16_t partitionNumber;
1235 uint16_t ident;
Jan Karad759bfa42013-07-25 19:10:59 +02001236 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Jan Karac0eb31e2008-04-01 16:50:35 +02001238 bh = udf_read_tagged(sb, block, block, &ident);
1239 if (!bh)
Jan Karad759bfa42013-07-25 19:10:59 +02001240 return -EAGAIN;
1241 if (ident != TAG_IDENT_PD) {
1242 ret = 0;
Jan Karac0eb31e2008-04-01 16:50:35 +02001243 goto out_bh;
Jan Karad759bfa42013-07-25 19:10:59 +02001244 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001245
1246 p = (struct partitionDesc *)bh->b_data;
1247 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001248
Alden Tondettar78888242016-05-18 14:09:19 -07001249 /* First scan for TYPE1 and SPARABLE partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001250 for (i = 0; i < sbi->s_partitions; i++) {
1251 map = &sbi->s_partmaps[i];
Steve Magnanifcbf7632017-10-12 08:48:41 -05001252 udf_debug("Searching map: (%u == %u)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001253 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001254 if (map->s_partition_num == partitionNumber &&
1255 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1256 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001258 }
1259
Jan Kara38b74a52008-04-02 16:01:35 +02001260 if (i >= sbi->s_partitions) {
Steve Magnanifcbf7632017-10-12 08:48:41 -05001261 udf_debug("Partition (%u) not found in partition map\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001262 partitionNumber);
Jan Karad759bfa42013-07-25 19:10:59 +02001263 ret = 0;
Jan Karac0eb31e2008-04-01 16:50:35 +02001264 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001265 }
1266
Jan Kara3fb38df2008-04-02 12:26:36 +02001267 ret = udf_fill_partdesc_info(sb, p, i);
Jan Karad759bfa42013-07-25 19:10:59 +02001268 if (ret < 0)
1269 goto out_bh;
Jan Kara38b74a52008-04-02 16:01:35 +02001270
1271 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001272 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1273 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001274 */
1275 type1_idx = i;
Peter A. Felvegi44499602013-10-18 20:07:44 +02001276 map = NULL; /* supress 'maybe used uninitialized' warning */
Jan Kara38b74a52008-04-02 16:01:35 +02001277 for (i = 0; i < sbi->s_partitions; i++) {
1278 map = &sbi->s_partmaps[i];
1279
1280 if (map->s_partition_num == partitionNumber &&
1281 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001282 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1283 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001284 break;
1285 }
1286
Jan Karad759bfa42013-07-25 19:10:59 +02001287 if (i >= sbi->s_partitions) {
1288 ret = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001289 goto out_bh;
Jan Karad759bfa42013-07-25 19:10:59 +02001290 }
Jan Kara38b74a52008-04-02 16:01:35 +02001291
1292 ret = udf_fill_partdesc_info(sb, p, i);
Jan Karad759bfa42013-07-25 19:10:59 +02001293 if (ret < 0)
Jan Kara38b74a52008-04-02 16:01:35 +02001294 goto out_bh;
1295
Jan Karabfb257a2008-04-08 20:37:21 +02001296 if (map->s_partition_type == UDF_METADATA_MAP25) {
Alden Tondettar78888242016-05-18 14:09:19 -07001297 ret = udf_load_metadata_files(sb, i, type1_idx);
Jan Karad759bfa42013-07-25 19:10:59 +02001298 if (ret < 0) {
Joe Perches78ace702011-10-10 01:08:05 -07001299 udf_err(sb, "error loading MetaData partition map %d\n",
1300 i);
Jan Karabfb257a2008-04-08 20:37:21 +02001301 goto out_bh;
1302 }
1303 } else {
Jan Karae729eac2013-07-25 16:15:16 +02001304 /*
1305 * If we have a partition with virtual map, we don't handle
1306 * writing to it (we overwrite blocks instead of relocating
1307 * them).
1308 */
David Howellsbc98a422017-07-17 08:45:34 +01001309 if (!sb_rdonly(sb)) {
Jan Karae729eac2013-07-25 16:15:16 +02001310 ret = -EACCES;
1311 goto out_bh;
1312 }
Jan Karaa9ad01b2018-09-06 15:56:10 +02001313 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
Jan Karabfb257a2008-04-08 20:37:21 +02001314 ret = udf_load_vat(sb, i, type1_idx);
Jan Karad759bfa42013-07-25 19:10:59 +02001315 if (ret < 0)
Jan Karabfb257a2008-04-08 20:37:21 +02001316 goto out_bh;
Jan Karabfb257a2008-04-08 20:37:21 +02001317 }
Jan Karad759bfa42013-07-25 19:10:59 +02001318 ret = 0;
Jan Karac0eb31e2008-04-01 16:50:35 +02001319out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001320 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001321 brelse(bh);
1322 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
1324
Jan Kara1df2ae32012-06-27 21:23:07 +02001325static int udf_load_sparable_map(struct super_block *sb,
1326 struct udf_part_map *map,
1327 struct sparablePartitionMap *spm)
1328{
1329 uint32_t loc;
1330 uint16_t ident;
1331 struct sparingTable *st;
1332 struct udf_sparing_data *sdata = &map->s_type_specific.s_sparing;
1333 int i;
1334 struct buffer_head *bh;
1335
1336 map->s_partition_type = UDF_SPARABLE_MAP15;
1337 sdata->s_packet_len = le16_to_cpu(spm->packetLength);
1338 if (!is_power_of_2(sdata->s_packet_len)) {
1339 udf_err(sb, "error loading logical volume descriptor: "
1340 "Invalid packet length %u\n",
1341 (unsigned)sdata->s_packet_len);
1342 return -EIO;
1343 }
1344 if (spm->numSparingTables > 4) {
1345 udf_err(sb, "error loading logical volume descriptor: "
1346 "Too many sparing tables (%d)\n",
1347 (int)spm->numSparingTables);
1348 return -EIO;
1349 }
Jan Kara44ac6b82020-09-25 14:53:08 +02001350 if (le32_to_cpu(spm->sizeSparingTable) > sb->s_blocksize) {
1351 udf_err(sb, "error loading logical volume descriptor: "
1352 "Too big sparing table size (%u)\n",
1353 le32_to_cpu(spm->sizeSparingTable));
1354 return -EIO;
1355 }
Jan Kara1df2ae32012-06-27 21:23:07 +02001356
1357 for (i = 0; i < spm->numSparingTables; i++) {
1358 loc = le32_to_cpu(spm->locSparingTable[i]);
1359 bh = udf_read_tagged(sb, loc, loc, &ident);
1360 if (!bh)
1361 continue;
1362
1363 st = (struct sparingTable *)bh->b_data;
1364 if (ident != 0 ||
1365 strncmp(st->sparingIdent.ident, UDF_ID_SPARING,
1366 strlen(UDF_ID_SPARING)) ||
1367 sizeof(*st) + le16_to_cpu(st->reallocationTableLen) >
1368 sb->s_blocksize) {
1369 brelse(bh);
1370 continue;
1371 }
1372
1373 sdata->s_spar_map[i] = bh;
1374 }
1375 map->s_partition_func = udf_get_pblock_spar15;
1376 return 0;
1377}
1378
Jan Karac0eb31e2008-04-01 16:50:35 +02001379static int udf_load_logicalvol(struct super_block *sb, sector_t block,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001380 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
1382 struct logicalVolDesc *lvd;
Jan Kara1df2ae32012-06-27 21:23:07 +02001383 int i, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 uint8_t type;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001385 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz4b111112008-02-08 04:20:36 -08001386 struct genericPartitionMap *gpm;
Jan Karac0eb31e2008-04-01 16:50:35 +02001387 uint16_t ident;
1388 struct buffer_head *bh;
Jan Karaadee11b2012-06-27 20:20:22 +02001389 unsigned int table_len;
Jan Karad759bfa42013-07-25 19:10:59 +02001390 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Jan Karac0eb31e2008-04-01 16:50:35 +02001392 bh = udf_read_tagged(sb, block, block, &ident);
1393 if (!bh)
Jan Karad759bfa42013-07-25 19:10:59 +02001394 return -EAGAIN;
Jan Karac0eb31e2008-04-01 16:50:35 +02001395 BUG_ON(ident != TAG_IDENT_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 lvd = (struct logicalVolDesc *)bh->b_data;
Jan Karaadee11b2012-06-27 20:20:22 +02001397 table_len = le32_to_cpu(lvd->mapTableLength);
Jan Kara57b96552012-07-10 17:58:04 +02001398 if (table_len > sb->s_blocksize - sizeof(*lvd)) {
Jan Karaadee11b2012-06-27 20:20:22 +02001399 udf_err(sb, "error loading logical volume descriptor: "
1400 "Partition table too long (%u > %lu)\n", table_len,
1401 sb->s_blocksize - sizeof(*lvd));
Jan Karad759bfa42013-07-25 19:10:59 +02001402 ret = -EIO;
Jan Karaadee11b2012-06-27 20:20:22 +02001403 goto out_bh;
1404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Jan Kara2dee5aa2019-08-29 14:11:54 +02001406 ret = udf_verify_domain_identifier(sb, &lvd->domainIdent,
1407 "logical volume");
1408 if (ret)
1409 goto out_bh;
Jan Karacb14d342012-06-27 20:08:44 +02001410 ret = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
1411 if (ret)
Jan Karac0eb31e2008-04-01 16:50:35 +02001412 goto out_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001414 for (i = 0, offset = 0;
Jan Karaadee11b2012-06-27 20:20:22 +02001415 i < sbi->s_partitions && offset < table_len;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001416 i++, offset += gpm->partitionMapLength) {
1417 struct udf_part_map *map = &sbi->s_partmaps[i];
1418 gpm = (struct genericPartitionMap *)
1419 &(lvd->partitionMaps[offset]);
1420 type = gpm->partitionMapType;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001421 if (type == 1) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001422 struct genericPartitionMap1 *gpm1 =
1423 (struct genericPartitionMap1 *)gpm;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001424 map->s_partition_type = UDF_TYPE1_MAP15;
1425 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1426 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1427 map->s_partition_func = NULL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001428 } else if (type == 2) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001429 struct udfPartitionMap2 *upm2 =
1430 (struct udfPartitionMap2 *)gpm;
1431 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1432 strlen(UDF_ID_VIRTUAL))) {
1433 u16 suf =
1434 le16_to_cpu(((__le16 *)upm2->partIdent.
1435 identSuffix)[0]);
Jan Karac82a1272008-04-08 01:16:32 +02001436 if (suf < 0x0200) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001437 map->s_partition_type =
1438 UDF_VIRTUAL_MAP15;
1439 map->s_partition_func =
1440 udf_get_pblock_virt15;
Jan Karac82a1272008-04-08 01:16:32 +02001441 } else {
Marcin Slusarz4b111112008-02-08 04:20:36 -08001442 map->s_partition_type =
1443 UDF_VIRTUAL_MAP20;
1444 map->s_partition_func =
1445 udf_get_pblock_virt20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
Marcin Slusarz4b111112008-02-08 04:20:36 -08001447 } else if (!strncmp(upm2->partIdent.ident,
1448 UDF_ID_SPARABLE,
1449 strlen(UDF_ID_SPARABLE))) {
Jan Karad759bfa42013-07-25 19:10:59 +02001450 ret = udf_load_sparable_map(sb, map,
1451 (struct sparablePartitionMap *)gpm);
1452 if (ret < 0)
Jan Kara1df2ae32012-06-27 21:23:07 +02001453 goto out_bh;
Jan Karabfb257a2008-04-08 20:37:21 +02001454 } else if (!strncmp(upm2->partIdent.ident,
1455 UDF_ID_METADATA,
1456 strlen(UDF_ID_METADATA))) {
1457 struct udf_meta_data *mdata =
1458 &map->s_type_specific.s_metadata;
1459 struct metadataPartitionMap *mdm =
1460 (struct metadataPartitionMap *)
1461 &(lvd->partitionMaps[offset]);
Steve Magnanifcbf7632017-10-12 08:48:41 -05001462 udf_debug("Parsing Logical vol part %d type %u id=%s\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001463 i, type, UDF_ID_METADATA);
Jan Karabfb257a2008-04-08 20:37:21 +02001464
1465 map->s_partition_type = UDF_METADATA_MAP25;
1466 map->s_partition_func = udf_get_pblock_meta25;
1467
1468 mdata->s_meta_file_loc =
1469 le32_to_cpu(mdm->metadataFileLoc);
1470 mdata->s_mirror_file_loc =
1471 le32_to_cpu(mdm->metadataMirrorFileLoc);
1472 mdata->s_bitmap_file_loc =
1473 le32_to_cpu(mdm->metadataBitmapFileLoc);
1474 mdata->s_alloc_unit_size =
1475 le32_to_cpu(mdm->allocUnitSize);
1476 mdata->s_align_unit_size =
1477 le16_to_cpu(mdm->alignUnitSize);
Jan Karaed47a7d2011-10-24 16:47:48 +02001478 if (mdm->flags & 0x01)
1479 mdata->s_flags |= MF_DUPLICATE_MD;
Jan Karabfb257a2008-04-08 20:37:21 +02001480
1481 udf_debug("Metadata Ident suffix=0x%x\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001482 le16_to_cpu(*(__le16 *)
1483 mdm->partIdent.identSuffix));
Steve Magnanifcbf7632017-10-12 08:48:41 -05001484 udf_debug("Metadata part num=%u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001485 le16_to_cpu(mdm->partitionNum));
Steve Magnanifcbf7632017-10-12 08:48:41 -05001486 udf_debug("Metadata part alloc unit size=%u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001487 le32_to_cpu(mdm->allocUnitSize));
Steve Magnanifcbf7632017-10-12 08:48:41 -05001488 udf_debug("Metadata file loc=%u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001489 le32_to_cpu(mdm->metadataFileLoc));
Steve Magnanifcbf7632017-10-12 08:48:41 -05001490 udf_debug("Mirror file loc=%u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001491 le32_to_cpu(mdm->metadataMirrorFileLoc));
Steve Magnanifcbf7632017-10-12 08:48:41 -05001492 udf_debug("Bitmap file loc=%u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001493 le32_to_cpu(mdm->metadataBitmapFileLoc));
Steve Magnanifcbf7632017-10-12 08:48:41 -05001494 udf_debug("Flags: %d %u\n",
Jan Karaed47a7d2011-10-24 16:47:48 +02001495 mdata->s_flags, mdm->flags);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001496 } else {
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08001497 udf_debug("Unknown ident: %s\n",
1498 upm2->partIdent.ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 continue;
1500 }
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001501 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1502 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 }
Steve Magnanifcbf7632017-10-12 08:48:41 -05001504 udf_debug("Partition (%d:%u) type %u on volume %u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001505 i, map->s_partition_num, type, map->s_volumeseqnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 }
1507
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001508 if (fileset) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001509 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 *fileset = lelb_to_cpu(la->extLocation);
Steve Magnanifcbf7632017-10-12 08:48:41 -05001512 udf_debug("FileSet found in LogicalVolDesc at block=%u, partition=%u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001513 fileset->logicalBlockNum,
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001514 fileset->partitionReferenceNum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516 if (lvd->integritySeqExt.extLength)
1517 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
Jan Karad759bfa42013-07-25 19:10:59 +02001518 ret = 0;
Steve Magnani4f5edd82019-02-11 08:24:38 -06001519
1520 if (!sbi->s_lvid_bh) {
1521 /* We can't generate unique IDs without a valid LVID */
1522 if (sb_rdonly(sb)) {
1523 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
1524 } else {
1525 udf_warn(sb, "Damaged or missing LVID, forcing "
1526 "readonly mount\n");
1527 ret = -EACCES;
1528 }
1529 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001530out_bh:
1531 brelse(bh);
1532 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
1535/*
Alden Tondettara47241c2016-04-25 19:27:56 -07001536 * Find the prevailing Logical Volume Integrity Descriptor.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 */
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001538static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Alden Tondettara47241c2016-04-25 19:27:56 -07001540 struct buffer_head *bh, *final_bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 uint16_t ident;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001542 struct udf_sb_info *sbi = UDF_SB(sb);
1543 struct logicalVolIntegrityDesc *lvid;
Alden Tondettara47241c2016-04-25 19:27:56 -07001544 int indirections = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Alden Tondettara47241c2016-04-25 19:27:56 -07001546 while (++indirections <= UDF_MAX_LVID_NESTING) {
1547 final_bh = NULL;
1548 while (loc.extLength > 0 &&
1549 (bh = udf_read_tagged(sb, loc.extLocation,
1550 loc.extLocation, &ident))) {
1551 if (ident != TAG_IDENT_LVID) {
1552 brelse(bh);
1553 break;
1554 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001555
Alden Tondettara47241c2016-04-25 19:27:56 -07001556 brelse(final_bh);
1557 final_bh = bh;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001558
Alden Tondettara47241c2016-04-25 19:27:56 -07001559 loc.extLength -= sb->s_blocksize;
1560 loc.extLocation++;
1561 }
1562
1563 if (!final_bh)
1564 return;
1565
1566 brelse(sbi->s_lvid_bh);
1567 sbi->s_lvid_bh = final_bh;
1568
1569 lvid = (struct logicalVolIntegrityDesc *)final_bh->b_data;
1570 if (lvid->nextIntegrityExt.extLength == 0)
1571 return;
1572
1573 loc = leea_to_cpu(lvid->nextIntegrityExt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
Alden Tondettara47241c2016-04-25 19:27:56 -07001575
1576 udf_warn(sb, "Too many LVID indirections (max %u), ignoring.\n",
1577 UDF_MAX_LVID_NESTING);
1578 brelse(sbi->s_lvid_bh);
1579 sbi->s_lvid_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
Jan Kara7b78fd02018-02-09 15:56:34 +01001582/*
1583 * Step for reallocation of table of partition descriptor sequence numbers.
1584 * Must be power of 2.
1585 */
1586#define PART_DESC_ALLOC_STEP 32
1587
Jan Karaee4af502018-08-21 14:52:34 +02001588struct part_desc_seq_scan_data {
1589 struct udf_vds_record rec;
1590 u32 partnum;
1591};
1592
Jan Kara7b78fd02018-02-09 15:56:34 +01001593struct desc_seq_scan_data {
1594 struct udf_vds_record vds[VDS_POS_LENGTH];
1595 unsigned int size_part_descs;
Jan Karaee4af502018-08-21 14:52:34 +02001596 unsigned int num_part_descs;
1597 struct part_desc_seq_scan_data *part_descs_loc;
Jan Kara7b78fd02018-02-09 15:56:34 +01001598};
1599
1600static struct udf_vds_record *handle_partition_descriptor(
1601 struct buffer_head *bh,
1602 struct desc_seq_scan_data *data)
1603{
1604 struct partitionDesc *desc = (struct partitionDesc *)bh->b_data;
1605 int partnum;
Jan Karaee4af502018-08-21 14:52:34 +02001606 int i;
Jan Kara7b78fd02018-02-09 15:56:34 +01001607
1608 partnum = le16_to_cpu(desc->partitionNumber);
Jan Karaee4af502018-08-21 14:52:34 +02001609 for (i = 0; i < data->num_part_descs; i++)
1610 if (partnum == data->part_descs_loc[i].partnum)
1611 return &(data->part_descs_loc[i].rec);
1612 if (data->num_part_descs >= data->size_part_descs) {
1613 struct part_desc_seq_scan_data *new_loc;
Jan Kara7b78fd02018-02-09 15:56:34 +01001614 unsigned int new_size = ALIGN(partnum, PART_DESC_ALLOC_STEP);
1615
Kees Cook6396bb22018-06-12 14:03:40 -07001616 new_loc = kcalloc(new_size, sizeof(*new_loc), GFP_KERNEL);
Jan Kara7b78fd02018-02-09 15:56:34 +01001617 if (!new_loc)
1618 return ERR_PTR(-ENOMEM);
1619 memcpy(new_loc, data->part_descs_loc,
1620 data->size_part_descs * sizeof(*new_loc));
1621 kfree(data->part_descs_loc);
1622 data->part_descs_loc = new_loc;
1623 data->size_part_descs = new_size;
1624 }
Jan Karaee4af502018-08-21 14:52:34 +02001625 return &(data->part_descs_loc[data->num_part_descs++].rec);
Jan Kara7b78fd02018-02-09 15:56:34 +01001626}
1627
1628
1629static struct udf_vds_record *get_volume_descriptor_record(uint16_t ident,
1630 struct buffer_head *bh, struct desc_seq_scan_data *data)
Jan Kara18cf47812018-02-09 15:15:39 +01001631{
1632 switch (ident) {
1633 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Jan Kara7b78fd02018-02-09 15:56:34 +01001634 return &(data->vds[VDS_POS_PRIMARY_VOL_DESC]);
Jan Kara18cf47812018-02-09 15:15:39 +01001635 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Jan Kara7b78fd02018-02-09 15:56:34 +01001636 return &(data->vds[VDS_POS_IMP_USE_VOL_DESC]);
Jan Kara18cf47812018-02-09 15:15:39 +01001637 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
Jan Kara7b78fd02018-02-09 15:56:34 +01001638 return &(data->vds[VDS_POS_LOGICAL_VOL_DESC]);
Jan Kara18cf47812018-02-09 15:15:39 +01001639 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Jan Kara7b78fd02018-02-09 15:56:34 +01001640 return &(data->vds[VDS_POS_UNALLOC_SPACE_DESC]);
1641 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
1642 return handle_partition_descriptor(bh, data);
Jan Kara18cf47812018-02-09 15:15:39 +01001643 }
1644 return NULL;
1645}
Vegard Nossume7a4eb82015-12-10 17:13:41 +01001646
1647/*
Jan Karad759bfa42013-07-25 19:10:59 +02001648 * Process a main/reserve volume descriptor sequence.
1649 * @block First block of first extent of the sequence.
1650 * @lastblock Lastblock of first extent of the sequence.
1651 * @fileset There we store extent containing root fileset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 *
Jan Karad759bfa42013-07-25 19:10:59 +02001653 * Returns <0 on error, 0 on success. -EAGAIN is special - try next descriptor
1654 * sequence
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 */
Jan Karad759bfa42013-07-25 19:10:59 +02001656static noinline int udf_process_sequence(
1657 struct super_block *sb,
1658 sector_t block, sector_t lastblock,
1659 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 struct buffer_head *bh = NULL;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001662 struct udf_vds_record *curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 struct generic_desc *gd;
1664 struct volDescPtr *vdp;
Fabian Frederick2b8f9422015-02-04 18:15:04 +01001665 bool done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 uint32_t vdsn;
1667 uint16_t ident;
Jan Karad759bfa42013-07-25 19:10:59 +02001668 int ret;
Vegard Nossume7a4eb82015-12-10 17:13:41 +01001669 unsigned int indirections = 0;
Jan Kara7b78fd02018-02-09 15:56:34 +01001670 struct desc_seq_scan_data data;
1671 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Jan Kara7b78fd02018-02-09 15:56:34 +01001673 memset(data.vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1674 data.size_part_descs = PART_DESC_ALLOC_STEP;
Jan Karaee4af502018-08-21 14:52:34 +02001675 data.num_part_descs = 0;
Kees Cook6396bb22018-06-12 14:03:40 -07001676 data.part_descs_loc = kcalloc(data.size_part_descs,
1677 sizeof(*data.part_descs_loc),
1678 GFP_KERNEL);
Jan Kara7b78fd02018-02-09 15:56:34 +01001679 if (!data.part_descs_loc)
1680 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Jan Karac0eb31e2008-04-01 16:50:35 +02001682 /*
1683 * Read the main descriptor sequence and find which descriptors
1684 * are in it.
1685 */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001686 for (; (!done && block <= lastblock); block++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 bh = udf_read_tagged(sb, block, block, &ident);
Jan Kara67621672018-02-08 18:10:54 +01001688 if (!bh)
1689 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1692 gd = (struct generic_desc *)bh->b_data;
1693 vdsn = le32_to_cpu(gd->volDescSeqNum);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001694 switch (ident) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001695 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
Jan Kara7b568cb2018-02-09 13:28:41 +01001696 if (++indirections > UDF_MAX_TD_NESTING) {
1697 udf_err(sb, "too many Volume Descriptor "
1698 "Pointers (max %u supported)\n",
1699 UDF_MAX_TD_NESTING);
1700 brelse(bh);
Jan Karaa7be3002020-09-22 12:20:14 +02001701 ret = -EIO;
1702 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001703 }
Jan Kara7b568cb2018-02-09 13:28:41 +01001704
1705 vdp = (struct volDescPtr *)bh->b_data;
1706 block = le32_to_cpu(vdp->nextVolDescSeqExt.extLocation);
1707 lastblock = le32_to_cpu(
1708 vdp->nextVolDescSeqExt.extLength) >>
1709 sb->s_blocksize_bits;
1710 lastblock += block - 1;
1711 /* For loop is going to increment 'block' again */
1712 block--;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001713 break;
Jan Kara18cf47812018-02-09 15:15:39 +01001714 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001715 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Jan Kara18cf47812018-02-09 15:15:39 +01001716 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
1717 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Jan Kara7b78fd02018-02-09 15:56:34 +01001718 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
1719 curr = get_volume_descriptor_record(ident, bh, &data);
1720 if (IS_ERR(curr)) {
1721 brelse(bh);
Jan Karaa7be3002020-09-22 12:20:14 +02001722 ret = PTR_ERR(curr);
1723 goto out;
Jan Kara7b78fd02018-02-09 15:56:34 +01001724 }
1725 /* Descriptor we don't care about? */
1726 if (!curr)
1727 break;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001728 if (vdsn >= curr->volDescSeqNum) {
1729 curr->volDescSeqNum = vdsn;
1730 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001731 }
1732 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001733 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Jan Kara7b568cb2018-02-09 13:28:41 +01001734 done = true;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001735 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001737 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001739 /*
1740 * Now read interesting descriptors again and process them
1741 * in a suitable order
1742 */
Jan Kara7b78fd02018-02-09 15:56:34 +01001743 if (!data.vds[VDS_POS_PRIMARY_VOL_DESC].block) {
Joe Perches78ace702011-10-10 01:08:05 -07001744 udf_err(sb, "Primary Volume Descriptor not found!\n");
Jan Karaa7be3002020-09-22 12:20:14 +02001745 ret = -EAGAIN;
1746 goto out;
Jan Karac0eb31e2008-04-01 16:50:35 +02001747 }
Jan Kara7b78fd02018-02-09 15:56:34 +01001748 ret = udf_load_pvoldesc(sb, data.vds[VDS_POS_PRIMARY_VOL_DESC].block);
Jan Karad759bfa42013-07-25 19:10:59 +02001749 if (ret < 0)
Jan Karaa7be3002020-09-22 12:20:14 +02001750 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Jan Kara7b78fd02018-02-09 15:56:34 +01001752 if (data.vds[VDS_POS_LOGICAL_VOL_DESC].block) {
Jan Karad759bfa42013-07-25 19:10:59 +02001753 ret = udf_load_logicalvol(sb,
Jan Kara7b78fd02018-02-09 15:56:34 +01001754 data.vds[VDS_POS_LOGICAL_VOL_DESC].block,
1755 fileset);
Jan Karad759bfa42013-07-25 19:10:59 +02001756 if (ret < 0)
Jan Karaa7be3002020-09-22 12:20:14 +02001757 goto out;
Jan Karad759bfa42013-07-25 19:10:59 +02001758 }
Marcin Slusarz165923f2008-02-10 11:33:08 +01001759
Jan Kara7b78fd02018-02-09 15:56:34 +01001760 /* Now handle prevailing Partition Descriptors */
Jan Karaee4af502018-08-21 14:52:34 +02001761 for (i = 0; i < data.num_part_descs; i++) {
1762 ret = udf_load_partdesc(sb, data.part_descs_loc[i].rec.block);
1763 if (ret < 0)
Jan Karaa7be3002020-09-22 12:20:14 +02001764 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
Jan Karaa7be3002020-09-22 12:20:14 +02001766 ret = 0;
1767out:
1768 kfree(data.part_descs_loc);
1769 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771
Jan Karad759bfa42013-07-25 19:10:59 +02001772/*
1773 * Load Volume Descriptor Sequence described by anchor in bh
1774 *
1775 * Returns <0 on error, 0 on success
1776 */
Jan Kara403460052009-03-19 16:21:38 +01001777static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1778 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Jan Kara403460052009-03-19 16:21:38 +01001780 struct anchorVolDescPtr *anchor;
Jan Karad759bfa42013-07-25 19:10:59 +02001781 sector_t main_s, main_e, reserve_s, reserve_e;
1782 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Jan Kara403460052009-03-19 16:21:38 +01001784 anchor = (struct anchorVolDescPtr *)bh->b_data;
1785
1786 /* Locate the main sequence */
1787 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1788 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1789 main_e = main_e >> sb->s_blocksize_bits;
Jan Kara91c9c9e2018-02-08 17:39:01 +01001790 main_e += main_s - 1;
Jan Kara403460052009-03-19 16:21:38 +01001791
1792 /* Locate the reserve sequence */
1793 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1794 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1795 reserve_e = reserve_e >> sb->s_blocksize_bits;
Jan Kara91c9c9e2018-02-08 17:39:01 +01001796 reserve_e += reserve_s - 1;
Jan Kara403460052009-03-19 16:21:38 +01001797
1798 /* Process the main & reserve sequences */
1799 /* responsible for finding the PartitionDesc(s) */
Jan Karad759bfa42013-07-25 19:10:59 +02001800 ret = udf_process_sequence(sb, main_s, main_e, fileset);
1801 if (ret != -EAGAIN)
1802 return ret;
Jan Karabff943a2012-06-27 22:27:05 +02001803 udf_sb_free_partitions(sb);
Jan Karad759bfa42013-07-25 19:10:59 +02001804 ret = udf_process_sequence(sb, reserve_s, reserve_e, fileset);
1805 if (ret < 0) {
1806 udf_sb_free_partitions(sb);
1807 /* No sequence was OK, return -EIO */
1808 if (ret == -EAGAIN)
1809 ret = -EIO;
1810 }
1811 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
Jan Kara403460052009-03-19 16:21:38 +01001814/*
1815 * Check whether there is an anchor block in the given block and
1816 * load Volume Descriptor Sequence if so.
Jan Karad759bfa42013-07-25 19:10:59 +02001817 *
1818 * Returns <0 on error, 0 on success, -EAGAIN is special - try next anchor
1819 * block
Jan Kara403460052009-03-19 16:21:38 +01001820 */
1821static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1822 struct kernel_lb_addr *fileset)
1823{
1824 struct buffer_head *bh;
1825 uint16_t ident;
1826 int ret;
1827
1828 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1829 udf_fixed_to_variable(block) >=
Fabian Frederick23bcda12017-01-06 21:54:41 +01001830 i_size_read(sb->s_bdev->bd_inode) >> sb->s_blocksize_bits)
Jan Karad759bfa42013-07-25 19:10:59 +02001831 return -EAGAIN;
Jan Kara403460052009-03-19 16:21:38 +01001832
1833 bh = udf_read_tagged(sb, block, block, &ident);
1834 if (!bh)
Jan Karad759bfa42013-07-25 19:10:59 +02001835 return -EAGAIN;
Jan Kara403460052009-03-19 16:21:38 +01001836 if (ident != TAG_IDENT_AVDP) {
1837 brelse(bh);
Jan Karad759bfa42013-07-25 19:10:59 +02001838 return -EAGAIN;
Jan Kara403460052009-03-19 16:21:38 +01001839 }
1840 ret = udf_load_sequence(sb, bh, fileset);
1841 brelse(bh);
1842 return ret;
1843}
1844
Jan Karad759bfa42013-07-25 19:10:59 +02001845/*
1846 * Search for an anchor volume descriptor pointer.
1847 *
1848 * Returns < 0 on error, 0 on success. -EAGAIN is special - try next set
1849 * of anchors.
1850 */
1851static int udf_scan_anchors(struct super_block *sb, sector_t *lastblock,
1852 struct kernel_lb_addr *fileset)
Jan Kara403460052009-03-19 16:21:38 +01001853{
1854 sector_t last[6];
1855 int i;
1856 struct udf_sb_info *sbi = UDF_SB(sb);
1857 int last_count = 0;
Jan Karad759bfa42013-07-25 19:10:59 +02001858 int ret;
Jan Kara403460052009-03-19 16:21:38 +01001859
1860 /* First try user provided anchor */
1861 if (sbi->s_anchor) {
Jan Karad759bfa42013-07-25 19:10:59 +02001862 ret = udf_check_anchor_block(sb, sbi->s_anchor, fileset);
1863 if (ret != -EAGAIN)
1864 return ret;
Jan Kara403460052009-03-19 16:21:38 +01001865 }
1866 /*
1867 * according to spec, anchor is in either:
1868 * block 256
1869 * lastblock-256
1870 * lastblock
1871 * however, if the disc isn't closed, it could be 512.
1872 */
Jan Karad759bfa42013-07-25 19:10:59 +02001873 ret = udf_check_anchor_block(sb, sbi->s_session + 256, fileset);
1874 if (ret != -EAGAIN)
1875 return ret;
Jan Kara403460052009-03-19 16:21:38 +01001876 /*
1877 * The trouble is which block is the last one. Drives often misreport
1878 * this so we try various possibilities.
1879 */
Jan Karad759bfa42013-07-25 19:10:59 +02001880 last[last_count++] = *lastblock;
1881 if (*lastblock >= 1)
1882 last[last_count++] = *lastblock - 1;
1883 last[last_count++] = *lastblock + 1;
1884 if (*lastblock >= 2)
1885 last[last_count++] = *lastblock - 2;
1886 if (*lastblock >= 150)
1887 last[last_count++] = *lastblock - 150;
1888 if (*lastblock >= 152)
1889 last[last_count++] = *lastblock - 152;
Jan Kara403460052009-03-19 16:21:38 +01001890
1891 for (i = 0; i < last_count; i++) {
Fabian Frederick23bcda12017-01-06 21:54:41 +01001892 if (last[i] >= i_size_read(sb->s_bdev->bd_inode) >>
Jan Kara403460052009-03-19 16:21:38 +01001893 sb->s_blocksize_bits)
1894 continue;
Jan Karad759bfa42013-07-25 19:10:59 +02001895 ret = udf_check_anchor_block(sb, last[i], fileset);
1896 if (ret != -EAGAIN) {
1897 if (!ret)
1898 *lastblock = last[i];
1899 return ret;
1900 }
Jan Kara403460052009-03-19 16:21:38 +01001901 if (last[i] < 256)
1902 continue;
Jan Karad759bfa42013-07-25 19:10:59 +02001903 ret = udf_check_anchor_block(sb, last[i] - 256, fileset);
1904 if (ret != -EAGAIN) {
1905 if (!ret)
1906 *lastblock = last[i];
1907 return ret;
1908 }
Jan Kara403460052009-03-19 16:21:38 +01001909 }
1910
1911 /* Finally try block 512 in case media is open */
Jan Karad759bfa42013-07-25 19:10:59 +02001912 return udf_check_anchor_block(sb, sbi->s_session + 512, fileset);
Jan Kara403460052009-03-19 16:21:38 +01001913}
1914
1915/*
1916 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1917 * area specified by it. The function expects sbi->s_lastblock to be the last
1918 * block on the media.
1919 *
Jan Karad759bfa42013-07-25 19:10:59 +02001920 * Return <0 on error, 0 if anchor found. -EAGAIN is special meaning anchor
1921 * was not found.
Jan Kara403460052009-03-19 16:21:38 +01001922 */
1923static int udf_find_anchor(struct super_block *sb,
1924 struct kernel_lb_addr *fileset)
1925{
Jan Kara403460052009-03-19 16:21:38 +01001926 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Karad759bfa42013-07-25 19:10:59 +02001927 sector_t lastblock = sbi->s_last_block;
1928 int ret;
Jan Kara403460052009-03-19 16:21:38 +01001929
Jan Karad759bfa42013-07-25 19:10:59 +02001930 ret = udf_scan_anchors(sb, &lastblock, fileset);
1931 if (ret != -EAGAIN)
Jan Kara403460052009-03-19 16:21:38 +01001932 goto out;
1933
1934 /* No anchor found? Try VARCONV conversion of block numbers */
1935 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
Jan Karad759bfa42013-07-25 19:10:59 +02001936 lastblock = udf_variable_to_fixed(sbi->s_last_block);
Jan Kara403460052009-03-19 16:21:38 +01001937 /* Firstly, we try to not convert number of the last block */
Jan Karad759bfa42013-07-25 19:10:59 +02001938 ret = udf_scan_anchors(sb, &lastblock, fileset);
1939 if (ret != -EAGAIN)
Jan Kara403460052009-03-19 16:21:38 +01001940 goto out;
1941
Jan Karad759bfa42013-07-25 19:10:59 +02001942 lastblock = sbi->s_last_block;
Jan Kara403460052009-03-19 16:21:38 +01001943 /* Secondly, we try with converted number of the last block */
Jan Karad759bfa42013-07-25 19:10:59 +02001944 ret = udf_scan_anchors(sb, &lastblock, fileset);
1945 if (ret < 0) {
Jan Kara403460052009-03-19 16:21:38 +01001946 /* VARCONV didn't help. Clear it. */
1947 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
Jan Kara403460052009-03-19 16:21:38 +01001948 }
1949out:
Jan Karad759bfa42013-07-25 19:10:59 +02001950 if (ret == 0)
1951 sbi->s_last_block = lastblock;
1952 return ret;
Jan Kara403460052009-03-19 16:21:38 +01001953}
1954
1955/*
1956 * Check Volume Structure Descriptor, find Anchor block and load Volume
Jan Karad759bfa42013-07-25 19:10:59 +02001957 * Descriptor Sequence.
1958 *
1959 * Returns < 0 on error, 0 on success. -EAGAIN is special meaning anchor
1960 * block was not found.
Jan Kara403460052009-03-19 16:21:38 +01001961 */
1962static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1963 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001964{
1965 struct udf_sb_info *sbi = UDF_SB(sb);
Steven J. Magnaniba54aef2019-07-11 08:38:51 -05001966 int nsr = 0;
Jan Karad759bfa42013-07-25 19:10:59 +02001967 int ret;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001968
1969 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1970 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001971 udf_warn(sb, "Bad block size\n");
Jan Karad759bfa42013-07-25 19:10:59 +02001972 return -EINVAL;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001973 }
1974 sbi->s_last_block = uopt->lastblock;
Jan Kara403460052009-03-19 16:21:38 +01001975 if (!uopt->novrs) {
1976 /* Check that it is NSR02 compliant */
Steven J. Magnaniba54aef2019-07-11 08:38:51 -05001977 nsr = udf_check_vsd(sb);
1978 if (!nsr) {
Jan Kara403460052009-03-19 16:21:38 +01001979 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001980 udf_warn(sb, "No VRS found\n");
Fabian Frederick70f16ce2017-01-18 19:39:35 +01001981 return -EINVAL;
Jan Kara403460052009-03-19 16:21:38 +01001982 }
Steven J. Magnaniba54aef2019-07-11 08:38:51 -05001983 if (nsr == -1)
Peter A. Felvegi44499602013-10-18 20:07:44 +02001984 udf_debug("Failed to read sector at offset %d. "
1985 "Assuming open disc. Skipping validity "
1986 "check\n", VSD_FIRST_SECTOR_OFFSET);
Jan Kara403460052009-03-19 16:21:38 +01001987 if (!sbi->s_last_block)
1988 sbi->s_last_block = udf_get_last_block(sb);
1989 } else {
1990 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001991 }
Jan Kara403460052009-03-19 16:21:38 +01001992
1993 /* Look for anchor block and load Volume Descriptor Sequence */
1994 sbi->s_anchor = uopt->anchor;
Jan Karad759bfa42013-07-25 19:10:59 +02001995 ret = udf_find_anchor(sb, fileset);
1996 if (ret < 0) {
1997 if (!silent && ret == -EAGAIN)
Joe Perches78ace702011-10-10 01:08:05 -07001998 udf_warn(sb, "No anchor found\n");
Jan Karad759bfa42013-07-25 19:10:59 +02001999 return ret;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01002000 }
Jan Karad759bfa42013-07-25 19:10:59 +02002001 return 0;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01002002}
2003
Steve Magnaniebbd5e92019-02-08 11:34:54 -06002004static void udf_finalize_lvid(struct logicalVolIntegrityDesc *lvid)
2005{
2006 struct timespec64 ts;
2007
2008 ktime_get_real_ts64(&ts);
2009 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, ts);
2010 lvid->descTag.descCRC = cpu_to_le16(
2011 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
2012 le16_to_cpu(lvid->descTag.descCRCLength)));
2013 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
2014}
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016static void udf_open_lvid(struct super_block *sb)
2017{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002018 struct udf_sb_info *sbi = UDF_SB(sb);
2019 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01002020 struct logicalVolIntegrityDesc *lvid;
2021 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01002022
Marcin Slusarz165923f2008-02-10 11:33:08 +01002023 if (!bh)
2024 return;
Jan Kara69d75672013-09-12 22:00:15 +02002025 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
2026 lvidiu = udf_sb_lvidiu(sb);
2027 if (!lvidiu)
2028 return;
Jan Kara949f4a72010-10-20 18:49:20 +02002029
2030 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01002031 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
2032 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Jan Karab72e6322018-02-27 18:55:31 +01002033 if (le32_to_cpu(lvid->integrityType) == LVID_INTEGRITY_TYPE_CLOSE)
2034 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
2035 else
2036 UDF_SET_FLAG(sb, UDF_FLAG_INCONSISTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Steve Magnaniebbd5e92019-02-08 11:34:54 -06002038 udf_finalize_lvid(lvid);
Marcin Slusarz165923f2008-02-10 11:33:08 +01002039 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01002040 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02002041 mutex_unlock(&sbi->s_alloc_mutex);
Jan Kara9734c9712013-01-17 22:11:38 +01002042 /* Make opening of filesystem visible on the media immediately */
2043 sync_dirty_buffer(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044}
2045
2046static void udf_close_lvid(struct super_block *sb)
2047{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002048 struct udf_sb_info *sbi = UDF_SB(sb);
2049 struct buffer_head *bh = sbi->s_lvid_bh;
2050 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01002051 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002052
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002053 if (!bh)
2054 return;
Jan Kara69d75672013-09-12 22:00:15 +02002055 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
2056 lvidiu = udf_sb_lvidiu(sb);
2057 if (!lvidiu)
2058 return;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002059
Jan Kara949f4a72010-10-20 18:49:20 +02002060 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01002061 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
2062 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz165923f2008-02-10 11:33:08 +01002063 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
2064 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
2065 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
2066 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
2067 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
2068 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
Jan Karab72e6322018-02-27 18:55:31 +01002069 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_INCONSISTENT))
2070 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Jan Kara853a0c22011-12-23 11:53:07 +01002072 /*
2073 * We set buffer uptodate unconditionally here to avoid spurious
2074 * warnings from mark_buffer_dirty() when previous EIO has marked
2075 * the buffer as !uptodate
2076 */
2077 set_buffer_uptodate(bh);
Steve Magnaniebbd5e92019-02-08 11:34:54 -06002078 udf_finalize_lvid(lvid);
Marcin Slusarz165923f2008-02-10 11:33:08 +01002079 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01002080 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02002081 mutex_unlock(&sbi->s_alloc_mutex);
Jan Kara9734c9712013-01-17 22:11:38 +01002082 /* Make closing of filesystem visible on the media immediately */
2083 sync_dirty_buffer(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
Jan Karad664b6a2010-10-20 18:28:46 +02002086u64 lvid_get_unique_id(struct super_block *sb)
2087{
2088 struct buffer_head *bh;
2089 struct udf_sb_info *sbi = UDF_SB(sb);
2090 struct logicalVolIntegrityDesc *lvid;
2091 struct logicalVolHeaderDesc *lvhd;
2092 u64 uniqueID;
2093 u64 ret;
2094
2095 bh = sbi->s_lvid_bh;
2096 if (!bh)
2097 return 0;
2098
2099 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
2100 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
2101
2102 mutex_lock(&sbi->s_alloc_mutex);
2103 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
2104 if (!(++uniqueID & 0xFFFFFFFF))
2105 uniqueID += 16;
2106 lvhd->uniqueID = cpu_to_le64(uniqueID);
Steve Magnanie8b42742019-02-08 11:34:55 -06002107 udf_updated_lvid(sb);
Jan Karad664b6a2010-10-20 18:28:46 +02002108 mutex_unlock(&sbi->s_alloc_mutex);
Jan Karad664b6a2010-10-20 18:28:46 +02002109
2110 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111}
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113static int udf_fill_super(struct super_block *sb, void *options, int silent)
2114{
Jan Karad759bfa42013-07-25 19:10:59 +02002115 int ret = -EINVAL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002116 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002118 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 struct udf_sb_info *sbi;
Jan Kara9181f8b2015-08-20 14:50:07 +02002120 bool lvid_open = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
Jan Kara116e5252018-02-22 10:39:52 +01002123 /* By default we'll use overflow[ug]id when UDF inode [ug]id == -1 */
2124 uopt.uid = make_kuid(current_user_ns(), overflowuid);
2125 uopt.gid = make_kgid(current_user_ns(), overflowgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01002127 uopt.fmode = UDF_INVALID_MODE;
2128 uopt.dmode = UDF_INVALID_MODE;
Chengguang Xu785dffe2018-02-25 21:25:07 +08002129 uopt.nls_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Markus Elfring033c9da2017-08-15 16:45:44 +02002131 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Alessio Igor Bogani9db9f9e2010-11-16 18:40:49 +01002132 if (!sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Ingo Molnar1e7933d2006-03-23 03:00:44 -08002137 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Miklos Szeredi6da80892008-02-08 04:21:50 -08002139 if (!udf_parse_options((char *)options, &uopt, false))
Markus Elfringfdf26572014-11-18 18:29:10 +01002140 goto parse_options_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002143 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Joe Perches8076c362011-10-10 01:08:03 -07002144 udf_err(sb, "utf8 cannot be combined with iocharset\n");
Markus Elfringfdf26572014-11-18 18:29:10 +01002145 goto parse_options_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002147 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 uopt.nls_map = load_nls_default();
2149 if (!uopt.nls_map)
2150 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
2151 else
2152 udf_debug("Using default NLS map\n");
2153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
2155 uopt.flags |= (1 << UDF_FLAG_UTF8);
2156
2157 fileset.logicalBlockNum = 0xFFFFFFFF;
2158 fileset.partitionReferenceNum = 0xFFFF;
2159
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002160 sbi->s_flags = uopt.flags;
2161 sbi->s_uid = uopt.uid;
2162 sbi->s_gid = uopt.gid;
2163 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01002164 sbi->s_fmode = uopt.fmode;
2165 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002166 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02002167 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002169 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002170 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002172 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002174 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 /* Fill in the rest of the superblock */
2177 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02002178 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04002179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 sb->s_magic = UDF_SUPER_MAGIC;
2181 sb->s_time_gran = 1000;
2182
Jan Kara403460052009-03-19 16:21:38 +01002183 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
2184 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2185 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04002186 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Fabian Frederick70f16ce2017-01-18 19:39:35 +01002187 while (uopt.blocksize <= 4096) {
Jan Kara403460052009-03-19 16:21:38 +01002188 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
Fabian Frederick70f16ce2017-01-18 19:39:35 +01002189 if (ret < 0) {
2190 if (!silent && ret != -EACCES) {
Steve Magnanifcbf7632017-10-12 08:48:41 -05002191 pr_notice("Scanning with blocksize %u failed\n",
Fabian Frederick70f16ce2017-01-18 19:39:35 +01002192 uopt.blocksize);
2193 }
2194 brelse(sbi->s_lvid_bh);
2195 sbi->s_lvid_bh = NULL;
2196 /*
2197 * EACCES is special - we want to propagate to
2198 * upper layers that we cannot handle RW mount.
2199 */
2200 if (ret == -EACCES)
2201 break;
2202 } else
2203 break;
2204
2205 uopt.blocksize <<= 1;
Jan Kara403460052009-03-19 16:21:38 +01002206 }
2207 }
Jan Karad759bfa42013-07-25 19:10:59 +02002208 if (ret < 0) {
2209 if (ret == -EAGAIN) {
2210 udf_warn(sb, "No partition found (1)\n");
2211 ret = -EINVAL;
2212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 goto error_out;
2214 }
2215
Steve Magnanifcbf7632017-10-12 08:48:41 -05002216 udf_debug("Lastblock=%u\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002218 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002219 struct logicalVolIntegrityDescImpUse *lvidiu =
Jan Kara69d75672013-09-12 22:00:15 +02002220 udf_sb_lvidiu(sb);
2221 uint16_t minUDFReadRev;
2222 uint16_t minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Jan Kara69d75672013-09-12 22:00:15 +02002224 if (!lvidiu) {
2225 ret = -EINVAL;
2226 goto error_out;
2227 }
2228 minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2229 minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002230 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Joe Perches78ace702011-10-10 01:08:05 -07002231 udf_err(sb, "minUDFReadRev=%x (max is %x)\n",
Jan Kara69d75672013-09-12 22:00:15 +02002232 minUDFReadRev,
Joe Perches78ace702011-10-10 01:08:05 -07002233 UDF_MAX_READ_VERSION);
Jan Karad759bfa42013-07-25 19:10:59 +02002234 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 goto error_out;
Jan Karaa9ad01b2018-09-06 15:56:10 +02002236 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION) {
2237 if (!sb_rdonly(sb)) {
2238 ret = -EACCES;
2239 goto error_out;
2240 }
2241 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
Jan Karae729eac2013-07-25 16:15:16 +02002242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002244 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2247 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2248 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2249 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2250 }
2251
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002252 if (!sbi->s_partitions) {
Joe Perches78ace702011-10-10 01:08:05 -07002253 udf_warn(sb, "No partition found (2)\n");
Jan Karad759bfa42013-07-25 19:10:59 +02002254 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 goto error_out;
2256 }
2257
Marcin Slusarz4b111112008-02-08 04:20:36 -08002258 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
Jan Karaa9ad01b2018-09-06 15:56:10 +02002259 UDF_PART_FLAG_READ_ONLY) {
2260 if (!sb_rdonly(sb)) {
2261 ret = -EACCES;
2262 goto error_out;
2263 }
2264 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002265 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002266
Jan Kara2dee5aa2019-08-29 14:11:54 +02002267 ret = udf_find_fileset(sb, &fileset, &rootdir);
2268 if (ret < 0) {
Joe Perches78ace702011-10-10 01:08:05 -07002269 udf_warn(sb, "No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 goto error_out;
2271 }
2272
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002273 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002274 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002275 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Joe Perches78ace702011-10-10 01:08:05 -07002276 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2277 sbi->s_volume_ident,
2278 le16_to_cpu(ts.year), ts.month, ts.day,
Marcin Slusarz56774802008-02-10 11:25:31 +01002279 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
David Howellsbc98a422017-07-17 08:45:34 +01002281 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 udf_open_lvid(sb);
Jan Kara9181f8b2015-08-20 14:50:07 +02002283 lvid_open = true;
2284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 /* Assign the root inode */
2287 /* assign inodes by physical block number */
2288 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002289 inode = udf_iget(sb, &rootdir);
Jan Kara6d3d5e82014-09-04 16:15:51 +02002290 if (IS_ERR(inode)) {
Steve Magnanifcbf7632017-10-12 08:48:41 -05002291 udf_err(sb, "Error in udf_iget, block=%u, partition=%u\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002292 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Jan Kara6d3d5e82014-09-04 16:15:51 +02002293 ret = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 goto error_out;
2295 }
2296
2297 /* Allocate a dentry for the root inode */
Al Viro48fde702012-01-08 22:15:13 -05002298 sb->s_root = d_make_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002299 if (!sb->s_root) {
Joe Perches78ace702011-10-10 01:08:05 -07002300 udf_err(sb, "Couldn't allocate root dentry\n");
Jan Karad759bfa42013-07-25 19:10:59 +02002301 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 goto error_out;
2303 }
Jan Kara31170b62007-05-08 00:35:21 -07002304 sb->s_maxbytes = MAX_LFS_FILESIZE;
Al Viro8de52772012-02-06 12:45:27 -05002305 sb->s_max_links = UDF_MAX_LINKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return 0;
2307
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002308error_out:
Markus Elfring0d454e42014-11-18 17:17:46 +01002309 iput(sbi->s_vat_inode);
Markus Elfringfdf26572014-11-18 18:29:10 +01002310parse_options_failure:
Chengguang Xu785dffe2018-02-25 21:25:07 +08002311 if (uopt.nls_map)
2312 unload_nls(uopt.nls_map);
Jan Kara9181f8b2015-08-20 14:50:07 +02002313 if (lvid_open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002315 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002316 udf_sb_free_partitions(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 kfree(sbi);
2318 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002319
Jan Karad759bfa42013-07-25 19:10:59 +02002320 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321}
2322
Joe Perches8076c362011-10-10 01:08:03 -07002323void _udf_err(struct super_block *sb, const char *function,
2324 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325{
Joe Perchesc2bff362011-10-10 01:08:06 -07002326 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 va_list args;
2328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002330
2331 vaf.fmt = fmt;
2332 vaf.va = &args;
2333
2334 pr_err("error (device %s): %s: %pV", sb->s_id, function, &vaf);
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
Joe Perchesa40ecd72011-10-10 01:08:04 -07002339void _udf_warn(struct super_block *sb, const char *function,
2340 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
Joe Perchesc2bff362011-10-10 01:08:06 -07002342 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 va_list args;
2344
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002345 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002346
2347 vaf.fmt = fmt;
2348 vaf.va = &args;
2349
2350 pr_warn("warning (device %s): %s: %pV", sb->s_id, function, &vaf);
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353}
2354
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002355static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002357 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002359 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002360
Markus Elfring0d454e42014-11-18 17:17:46 +01002361 iput(sbi->s_vat_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002363 unload_nls(sbi->s_nls_map);
David Howellsbc98a422017-07-17 08:45:34 +01002364 if (!sb_rdonly(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002366 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002367 udf_sb_free_partitions(sb);
Fabian Frederickbbe48dd2015-01-10 19:13:32 +01002368 mutex_destroy(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 kfree(sb->s_fs_info);
2370 sb->s_fs_info = NULL;
2371}
2372
Jan Kara146bca72009-03-16 18:27:37 +01002373static int udf_sync_fs(struct super_block *sb, int wait)
2374{
2375 struct udf_sb_info *sbi = UDF_SB(sb);
2376
2377 mutex_lock(&sbi->s_alloc_mutex);
2378 if (sbi->s_lvid_dirty) {
Steve Magnanie8b42742019-02-08 11:34:55 -06002379 struct buffer_head *bh = sbi->s_lvid_bh;
Jan Kara52b96662019-02-19 14:59:43 +01002380 struct logicalVolIntegrityDesc *lvid;
Steve Magnanie8b42742019-02-08 11:34:55 -06002381
Jan Kara52b96662019-02-19 14:59:43 +01002382 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
2383 udf_finalize_lvid(lvid);
Steve Magnanie8b42742019-02-08 11:34:55 -06002384
Jan Kara146bca72009-03-16 18:27:37 +01002385 /*
2386 * Blockdevice will be synced later so we don't have to submit
2387 * the buffer for IO
2388 */
Steve Magnanie8b42742019-02-08 11:34:55 -06002389 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01002390 sbi->s_lvid_dirty = 0;
2391 }
2392 mutex_unlock(&sbi->s_alloc_mutex);
2393
2394 return 0;
2395}
2396
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002397static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
David Howells726c3342006-06-23 02:02:58 -07002399 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002400 struct udf_sb_info *sbi = UDF_SB(sb);
2401 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002402 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002403
Jan Kara69d75672013-09-12 22:00:15 +02002404 lvidiu = udf_sb_lvidiu(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 buf->f_type = UDF_SUPER_MAGIC;
2406 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002407 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 buf->f_bfree = udf_count_free(sb);
2409 buf->f_bavail = buf->f_bfree;
Jan Kara356557b2020-01-17 12:36:38 +01002410 /*
2411 * Let's pretend each free block is also a free 'inode' since UDF does
2412 * not have separate preallocated table of inodes.
2413 */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002414 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2415 le32_to_cpu(lvidiu->numDirs)) : 0)
2416 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 buf->f_ffree = buf->f_bfree;
Andrew Gabbasov9fba7052016-01-15 02:44:21 -06002418 buf->f_namelen = UDF_NAME_LEN;
Al Viro6d1349c2020-09-18 16:45:50 -04002419 buf->f_fsid = u64_to_fsid(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421 return 0;
2422}
2423
Marcin Slusarz4b111112008-02-08 04:20:36 -08002424static unsigned int udf_count_free_bitmap(struct super_block *sb,
2425 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
2427 struct buffer_head *bh = NULL;
2428 unsigned int accum = 0;
2429 int index;
Steve Magnanib490bdd2017-10-12 08:48:40 -05002430 udf_pblk_t block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002431 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 uint8_t *ptr;
2434 uint16_t ident;
2435 struct spaceBitmapDesc *bm;
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002438 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002439 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002441 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07002442 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002444 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002445 brelse(bh);
Joe Perches78ace702011-10-10 01:08:05 -07002446 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 goto out;
2448 }
2449
2450 bm = (struct spaceBitmapDesc *)bh->b_data;
2451 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002452 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2453 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002455 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002456 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2457 accum += bitmap_weight((const unsigned long *)(ptr + index),
2458 cur_bytes * 8);
2459 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002460 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002461 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002462 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002464 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 udf_debug("read failed\n");
2466 goto out;
2467 }
2468 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002469 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 }
2471 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002472 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002473out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 return accum;
2475}
2476
Marcin Slusarz4b111112008-02-08 04:20:36 -08002477static unsigned int udf_count_free_table(struct super_block *sb,
2478 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
2480 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002481 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002482 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002484 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Jan Karad1668fe2010-10-20 23:24:12 +02002486 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002487 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002488 epos.offset = sizeof(struct unallocSpaceEntry);
2489 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002491 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002493
Jan Kara3bf25cb2007-05-08 00:35:16 -07002494 brelse(epos.bh);
Jan Karad1668fe2010-10-20 23:24:12 +02002495 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 return accum;
2498}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002499
2500static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
2502 unsigned int accum = 0;
Jan Karaa4a8b992020-01-07 16:36:49 +01002503 struct udf_sb_info *sbi = UDF_SB(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002504 struct udf_part_map *map;
Jan Karaa4a8b992020-01-07 16:36:49 +01002505 unsigned int part = sbi->s_partition;
2506 int ptype = sbi->s_partmaps[part].s_partition_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Jan Karaa4a8b992020-01-07 16:36:49 +01002508 if (ptype == UDF_METADATA_MAP25) {
2509 part = sbi->s_partmaps[part].s_type_specific.s_metadata.
2510 s_phys_partition_ref;
2511 } else if (ptype == UDF_VIRTUAL_MAP15 || ptype == UDF_VIRTUAL_MAP20) {
2512 /*
2513 * Filesystems with VAT are append-only and we cannot write to
2514 * them. Let's just report 0 here.
2515 */
2516 return 0;
2517 }
2518
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002519 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002520 struct logicalVolIntegrityDesc *lvid =
2521 (struct logicalVolIntegrityDesc *)
2522 sbi->s_lvid_bh->b_data;
Jan Karaa4a8b992020-01-07 16:36:49 +01002523 if (le32_to_cpu(lvid->numOfPartitions) > part) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002524 accum = le32_to_cpu(
Jan Karaa4a8b992020-01-07 16:36:49 +01002525 lvid->freeSpaceTable[part]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 if (accum == 0xFFFFFFFF)
2527 accum = 0;
2528 }
2529 }
2530
2531 if (accum)
2532 return accum;
2533
Jan Karaa4a8b992020-01-07 16:36:49 +01002534 map = &sbi->s_partmaps[part];
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002535 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002536 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002537 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 if (accum)
2540 return accum;
2541
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002542 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002543 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002544 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 return accum;
2547}
Fabian Frederick54bb60d2017-01-06 21:53:57 +01002548
2549MODULE_AUTHOR("Ben Fennema");
2550MODULE_DESCRIPTION("Universal Disk Format Filesystem");
2551MODULE_LICENSE("GPL");
2552module_init(init_udf_fs)
2553module_exit(exit_udf_fs)