blob: 8c28e93e9b73033e3e738bd53c190bada611dbfb [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/
14 * http://www.ecma.ch/
15 * http://www.iso.org/
16 *
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
Christoph Lametera35afb82007-05-16 22:10:57 -0700171 ei->i_ext.i_data = NULL;
172 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;
462
463 uopt->novrs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 uopt->session = 0xFFFFFFFF;
465 uopt->lastblock = 0;
466 uopt->anchor = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 if (!options)
469 return 1;
470
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700471 while ((p = strsep(&options, ",")) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 substring_t args[MAX_OPT_ARGS];
473 int token;
Fabian Frederick8c6915a2014-01-29 17:13:16 +0800474 unsigned n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (!*p)
476 continue;
477
478 token = match_token(p, tokens, args);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700479 switch (token) {
480 case Opt_novrs:
481 uopt->novrs = 1;
Clemens Ladisch41368012009-03-06 09:16:49 +0100482 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700483 case Opt_bs:
484 if (match_int(&args[0], &option))
485 return 0;
Fabian Frederick8c6915a2014-01-29 17:13:16 +0800486 n = option;
487 if (n != 512 && n != 1024 && n != 2048 && n != 4096)
488 return 0;
489 uopt->blocksize = n;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +0100490 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700491 break;
492 case Opt_unhide:
493 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
494 break;
495 case Opt_undelete:
496 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
497 break;
498 case Opt_noadinicb:
499 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
500 break;
501 case Opt_adinicb:
502 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
503 break;
504 case Opt_shortad:
505 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
506 break;
507 case Opt_longad:
508 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
509 break;
510 case Opt_gid:
511 if (match_int(args, &option))
512 return 0;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800513 uopt->gid = make_kgid(current_user_ns(), option);
514 if (!gid_valid(uopt->gid))
515 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700516 uopt->flags |= (1 << UDF_FLAG_GID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700517 break;
518 case Opt_uid:
519 if (match_int(args, &option))
520 return 0;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800521 uopt->uid = make_kuid(current_user_ns(), option);
522 if (!uid_valid(uopt->uid))
523 return 0;
Cyrill Gorcunovca76d2d2007-07-31 00:39:40 -0700524 uopt->flags |= (1 << UDF_FLAG_UID_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700525 break;
526 case Opt_umask:
527 if (match_octal(args, &option))
528 return 0;
529 uopt->umask = option;
530 break;
531 case Opt_nostrict:
532 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
533 break;
534 case Opt_session:
535 if (match_int(args, &option))
536 return 0;
537 uopt->session = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800538 if (!remount)
539 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700540 break;
541 case Opt_lastblock:
542 if (match_int(args, &option))
543 return 0;
544 uopt->lastblock = option;
Miklos Szeredi6da80892008-02-08 04:21:50 -0800545 if (!remount)
546 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700547 break;
548 case Opt_anchor:
549 if (match_int(args, &option))
550 return 0;
551 uopt->anchor = option;
552 break;
553 case Opt_volume:
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700554 case Opt_partition:
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700555 case Opt_fileset:
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700556 case Opt_rootdir:
Jan Karaf0c4a812018-02-22 14:33:04 +0100557 /* Ignored (never implemented properly) */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700558 break;
559 case Opt_utf8:
560 uopt->flags |= (1 << UDF_FLAG_UTF8);
561 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700562 case Opt_iocharset:
Chengguang Xu785dffe2018-02-25 21:25:07 +0800563 if (!remount) {
564 if (uopt->nls_map)
565 unload_nls(uopt->nls_map);
Jan Karaa768a9a2019-03-19 09:48:59 +0100566 /*
567 * load_nls() failure is handled later in
568 * udf_fill_super() after all options are
569 * parsed.
570 */
Chengguang Xu785dffe2018-02-25 21:25:07 +0800571 uopt->nls_map = load_nls(args[0].from);
572 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
573 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700574 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700575 case Opt_uforget:
576 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
577 break;
Jan Kara70260e42018-02-21 17:27:44 +0100578 case Opt_uignore:
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700579 case Opt_gignore:
Jan Kara70260e42018-02-21 17:27:44 +0100580 /* These options are superseeded by uid=<number> */
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700581 break;
582 case Opt_gforget:
583 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
584 break;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100585 case Opt_fmode:
586 if (match_octal(args, &option))
587 return 0;
588 uopt->fmode = option & 0777;
589 break;
590 case Opt_dmode:
591 if (match_octal(args, &option))
592 return 0;
593 uopt->dmode = option & 0777;
594 break;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700595 default:
Joe Perches78ace702011-10-10 01:08:05 -0700596 pr_err("bad mount option \"%s\" or missing value\n", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return 0;
598 }
599 }
600 return 1;
601}
602
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700603static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
605 struct udf_options uopt;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800606 struct udf_sb_info *sbi = UDF_SB(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400607 int error = 0;
Jan Karaa9ad01b2018-09-06 15:56:10 +0200608
609 if (!(*flags & SB_RDONLY) && UDF_QUERY_FLAG(sb, UDF_FLAG_RW_INCOMPAT))
610 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Theodore Ts'o02b99842014-03-13 10:14:33 -0400612 sync_filesystem(sb);
Jan Karae729eac2013-07-25 16:15:16 +0200613
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800614 uopt.flags = sbi->s_flags;
615 uopt.uid = sbi->s_uid;
616 uopt.gid = sbi->s_gid;
617 uopt.umask = sbi->s_umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100618 uopt.fmode = sbi->s_fmode;
619 uopt.dmode = sbi->s_dmode;
Chengguang Xu785dffe2018-02-25 21:25:07 +0800620 uopt.nls_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Miklos Szeredi6da80892008-02-08 04:21:50 -0800622 if (!udf_parse_options(options, &uopt, true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return -EINVAL;
624
Jan Karac03cad22010-10-20 22:17:28 +0200625 write_lock(&sbi->s_cred_lock);
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800626 sbi->s_flags = uopt.flags;
627 sbi->s_uid = uopt.uid;
628 sbi->s_gid = uopt.gid;
629 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +0100630 sbi->s_fmode = uopt.fmode;
631 sbi->s_dmode = uopt.dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200632 write_unlock(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800634 if ((bool)(*flags & SB_RDONLY) == sb_rdonly(sb))
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400635 goto out_unlock;
636
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800637 if (*flags & SB_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 udf_close_lvid(sb);
Jan Kara36350462010-05-19 16:28:56 +0200639 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 udf_open_lvid(sb);
641
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400642out_unlock:
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400643 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500646/*
647 * Check VSD descriptor. Returns -1 in case we are at the end of volume
648 * recognition area, 0 if the descriptor is valid but non-interesting, 1 if
649 * we found one of NSR descriptors we are looking for.
650 */
651static int identify_vsd(const struct volStructDesc *vsd)
652{
653 int ret = 0;
654
655 if (!memcmp(vsd->stdIdent, VSD_STD_ID_CD001, VSD_STD_ID_LEN)) {
656 switch (vsd->structType) {
657 case 0:
658 udf_debug("ISO9660 Boot Record found\n");
659 break;
660 case 1:
661 udf_debug("ISO9660 Primary Volume Descriptor found\n");
662 break;
663 case 2:
664 udf_debug("ISO9660 Supplementary Volume Descriptor found\n");
665 break;
666 case 3:
667 udf_debug("ISO9660 Volume Partition Descriptor found\n");
668 break;
669 case 255:
670 udf_debug("ISO9660 Volume Descriptor Set Terminator found\n");
671 break;
672 default:
673 udf_debug("ISO9660 VRS (%u) found\n", vsd->structType);
674 break;
675 }
676 } else if (!memcmp(vsd->stdIdent, VSD_STD_ID_BEA01, VSD_STD_ID_LEN))
677 ; /* ret = 0 */
678 else if (!memcmp(vsd->stdIdent, VSD_STD_ID_NSR02, VSD_STD_ID_LEN))
679 ret = 1;
680 else if (!memcmp(vsd->stdIdent, VSD_STD_ID_NSR03, VSD_STD_ID_LEN))
681 ret = 1;
682 else if (!memcmp(vsd->stdIdent, VSD_STD_ID_BOOT2, VSD_STD_ID_LEN))
683 ; /* ret = 0 */
684 else if (!memcmp(vsd->stdIdent, VSD_STD_ID_CDW02, VSD_STD_ID_LEN))
685 ; /* ret = 0 */
686 else {
687 /* TEA01 or invalid id : end of volume recognition area */
688 ret = -1;
689 }
690
691 return ret;
692}
693
694/*
695 * Check Volume Structure Descriptors (ECMA 167 2/9.1)
696 * We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1)
697 * @return 1 if NSR02 or NSR03 found,
698 * -1 if first sector read error, 0 otherwise
699 */
700static int udf_check_vsd(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 struct volStructDesc *vsd = NULL;
Peter A. Felvegi44499602013-10-18 20:07:44 +0200703 loff_t sector = VSD_FIRST_SECTOR_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 int sectorsize;
705 struct buffer_head *bh = NULL;
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500706 int nsr = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800707 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Marcin Slusarz6c79e982008-02-08 04:20:30 -0800709 sbi = UDF_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (sb->s_blocksize < sizeof(struct volStructDesc))
711 sectorsize = sizeof(struct volStructDesc);
712 else
713 sectorsize = sb->s_blocksize;
714
Jan Karaabdc0eb2017-10-16 11:38:11 +0200715 sector += (((loff_t)sbi->s_session) << sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Steve Magnanifcbf7632017-10-12 08:48:41 -0500717 udf_debug("Starting at sector %u (%lu byte sectors)\n",
Sebastian Manciulea706047a2008-04-14 17:13:01 +0200718 (unsigned int)(sector >> sb->s_blocksize_bits),
719 sb->s_blocksize);
Peter A. Felvegi44499602013-10-18 20:07:44 +0200720 /* Process the sequence (if applicable). The hard limit on the sector
721 * offset is arbitrary, hopefully large enough so that all valid UDF
722 * filesystems will be recognised. There is no mention of an upper
723 * bound to the size of the volume recognition area in the standard.
724 * The limit will prevent the code to read all the sectors of a
725 * specially crafted image (like a bluray disc full of CD001 sectors),
726 * potentially causing minutes or even hours of uninterruptible I/O
727 * activity. This actually happened with uninitialised SSD partitions
728 * (all 0xFF) before the check for the limit and all valid IDs were
729 * added */
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500730 for (; !nsr && sector < VSD_MAX_SECTOR_OFFSET; sector += sectorsize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /* Read a block */
732 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
733 if (!bh)
734 break;
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 vsd = (struct volStructDesc *)(bh->b_data +
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800737 (sector & (sb->s_blocksize - 1)));
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500738 nsr = identify_vsd(vsd);
Steven J. Magnani6fbacb82019-07-11 08:38:52 -0500739 /* Found NSR or end? */
740 if (nsr) {
741 brelse(bh);
742 break;
743 }
744 /*
745 * Special handling for improperly formatted VRS (e.g., Win10)
746 * where components are separated by 2048 bytes even though
747 * sectors are 4K
748 */
749 if (sb->s_blocksize == 4096) {
750 nsr = identify_vsd(vsd + 1);
751 /* Ignore unknown IDs... */
752 if (nsr < 0)
753 nsr = 0;
754 }
Jan Kara3bf25cb2007-05-08 00:35:16 -0700755 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
Steven J. Magnaniba54aef2019-07-11 08:38:51 -0500758 if (nsr > 0)
759 return 1;
Peter A. Felvegi44499602013-10-18 20:07:44 +0200760 else if (!bh && sector - (sbi->s_session << sb->s_blocksize_bits) ==
761 VSD_FIRST_SECTOR_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return -1;
763 else
764 return 0;
765}
766
Jan Kara8b47ea62019-08-29 14:19:30 +0200767static int udf_verify_domain_identifier(struct super_block *sb,
768 struct regid *ident, char *dname)
769{
770 struct domainEntityIDSuffix *suffix;
771
772 if (memcmp(ident->ident, UDF_ID_COMPLIANT, strlen(UDF_ID_COMPLIANT))) {
773 udf_warn(sb, "Not OSTA UDF compliant %s descriptor.\n", dname);
774 goto force_ro;
775 }
776 if (ident->flags & (1 << ENTITYID_FLAGS_DIRTY)) {
777 udf_warn(sb, "Possibly not OSTA UDF compliant %s descriptor.\n",
778 dname);
779 goto force_ro;
780 }
781 suffix = (struct domainEntityIDSuffix *)ident->identSuffix;
782 if (suffix->flags & (1 << ENTITYIDSUFFIX_FLAGS_HARDWRITEPROTECT) ||
783 suffix->flags & (1 << ENTITYIDSUFFIX_FLAGS_SOFTWRITEPROTECT)) {
784 if (!sb_rdonly(sb)) {
785 udf_warn(sb, "Descriptor for %s marked write protected."
786 " Forcing read only mount.\n", dname);
787 }
788 goto force_ro;
789 }
790 return 0;
791
792force_ro:
793 if (!sb_rdonly(sb))
794 return -EACCES;
795 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
796 return 0;
797}
798
799static int udf_load_fileset(struct super_block *sb, struct fileSetDesc *fset,
800 struct kernel_lb_addr *root)
801{
802 int ret;
803
804 ret = udf_verify_domain_identifier(sb, &fset->domainIdent, "file set");
805 if (ret < 0)
806 return ret;
807
808 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
809 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
810
811 udf_debug("Rootdir at block=%u, partition=%u\n",
812 root->logicalBlockNum, root->partitionReferenceNum);
813 return 0;
814}
815
Marcin Slusarz3a71fc52008-02-08 04:20:28 -0800816static int udf_find_fileset(struct super_block *sb,
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200817 struct kernel_lb_addr *fileset,
818 struct kernel_lb_addr *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 struct buffer_head *bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 uint16_t ident;
Jan Kara2dee5aa2019-08-29 14:11:54 +0200822 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Jan Kara2dee5aa2019-08-29 14:11:54 +0200824 if (fileset->logicalBlockNum == 0xFFFFFFFF &&
825 fileset->partitionReferenceNum == 0xFFFF)
826 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Jan Kara2dee5aa2019-08-29 14:11:54 +0200828 bh = udf_read_ptagged(sb, fileset, 0, &ident);
829 if (!bh)
830 return -EIO;
831 if (ident != TAG_IDENT_FSD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700832 brelse(bh);
Jan Kara2dee5aa2019-08-29 14:11:54 +0200833 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
Jan Kara2dee5aa2019-08-29 14:11:54 +0200835
836 udf_debug("Fileset at block=%u, partition=%u\n",
837 fileset->logicalBlockNum, fileset->partitionReferenceNum);
838
839 UDF_SB(sb)->s_partition = fileset->partitionReferenceNum;
840 ret = udf_load_fileset(sb, (struct fileSetDesc *)bh->b_data, root);
841 brelse(bh);
842 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Jan Karad759bfa42013-07-25 19:10:59 +0200845/*
846 * Load primary Volume Descriptor Sequence
847 *
848 * Return <0 on error, 0 on success. -EAGAIN is special meaning next sequence
849 * should be tried.
850 */
Jan Karac0eb31e2008-04-01 16:50:35 +0200851static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 struct primaryVolDesc *pvoldesc;
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600854 uint8_t *outstr;
Jan Karac0eb31e2008-04-01 16:50:35 +0200855 struct buffer_head *bh;
856 uint16_t ident;
Jan Karad759bfa42013-07-25 19:10:59 +0200857 int ret = -ENOMEM;
Deepa Dinamani0220edd2018-05-10 08:26:17 -0700858 struct timestamp *ts;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100859
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600860 outstr = kmalloc(128, GFP_NOFS);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100861 if (!outstr)
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600862 return -ENOMEM;
Jan Karac0eb31e2008-04-01 16:50:35 +0200863
864 bh = udf_read_tagged(sb, block, block, &ident);
Jan Karad759bfa42013-07-25 19:10:59 +0200865 if (!bh) {
866 ret = -EAGAIN;
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100867 goto out2;
Jan Karad759bfa42013-07-25 19:10:59 +0200868 }
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100869
Jan Karad759bfa42013-07-25 19:10:59 +0200870 if (ident != TAG_IDENT_PVD) {
871 ret = -EIO;
872 goto out_bh;
873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 pvoldesc = (struct primaryVolDesc *)bh->b_data;
876
Deepa Dinamani0220edd2018-05-10 08:26:17 -0700877 udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
878 pvoldesc->recordingDateAndTime);
Deepa Dinamani0220edd2018-05-10 08:26:17 -0700879 ts = &pvoldesc->recordingDateAndTime;
880 udf_debug("recording time %04u/%02u/%02u %02u:%02u (%x)\n",
881 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
882 ts->minute, le16_to_cpu(ts->typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Jan Karae966fc8d2018-04-16 15:44:19 +0200884 ret = udf_dstrCS0toChar(sb, outstr, 31, pvoldesc->volIdent, 32);
Jan Karab54e41f2018-11-16 13:43:17 +0100885 if (ret < 0) {
886 strcpy(UDF_SB(sb)->s_volume_ident, "InvalidName");
887 pr_warn("incorrect volume identification, setting to "
888 "'InvalidName'\n");
889 } else {
890 strncpy(UDF_SB(sb)->s_volume_ident, outstr, ret);
891 }
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600892 udf_debug("volIdent[] = '%s'\n", UDF_SB(sb)->s_volume_ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Jan Karae966fc8d2018-04-16 15:44:19 +0200894 ret = udf_dstrCS0toChar(sb, outstr, 127, pvoldesc->volSetIdent, 128);
Jan Karab54e41f2018-11-16 13:43:17 +0100895 if (ret < 0) {
896 ret = 0;
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600897 goto out_bh;
Jan Karab54e41f2018-11-16 13:43:17 +0100898 }
Andrew Gabbasov9293fcf2016-01-15 02:44:22 -0600899 outstr[ret] = 0;
900 udf_debug("volSetIdent[] = '%s'\n", outstr);
Jan Karac0eb31e2008-04-01 16:50:35 +0200901
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100902 ret = 0;
Jan Karad759bfa42013-07-25 19:10:59 +0200903out_bh:
904 brelse(bh);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100905out2:
906 kfree(outstr);
Marcin Slusarzba9aadd2008-11-16 19:01:44 +0100907 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
Namjae Jeon3080a742011-10-23 19:28:32 +0900910struct inode *udf_find_metadata_inode_efe(struct super_block *sb,
Alden Tondettar78888242016-05-18 14:09:19 -0700911 u32 meta_file_loc, u32 partition_ref)
Namjae Jeon3080a742011-10-23 19:28:32 +0900912{
913 struct kernel_lb_addr addr;
914 struct inode *metadata_fe;
915
916 addr.logicalBlockNum = meta_file_loc;
Alden Tondettar78888242016-05-18 14:09:19 -0700917 addr.partitionReferenceNum = partition_ref;
Namjae Jeon3080a742011-10-23 19:28:32 +0900918
Jan Kara6174c2e2014-10-09 12:52:16 +0200919 metadata_fe = udf_iget_special(sb, &addr);
Namjae Jeon3080a742011-10-23 19:28:32 +0900920
Jan Kara6d3d5e82014-09-04 16:15:51 +0200921 if (IS_ERR(metadata_fe)) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900922 udf_warn(sb, "metadata inode efe not found\n");
Jan Kara6d3d5e82014-09-04 16:15:51 +0200923 return metadata_fe;
924 }
925 if (UDF_I(metadata_fe)->i_alloc_type != ICBTAG_FLAG_AD_SHORT) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900926 udf_warn(sb, "metadata inode efe does not have short allocation descriptors!\n");
927 iput(metadata_fe);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200928 return ERR_PTR(-EIO);
Namjae Jeon3080a742011-10-23 19:28:32 +0900929 }
930
931 return metadata_fe;
932}
933
Alden Tondettar78888242016-05-18 14:09:19 -0700934static int udf_load_metadata_files(struct super_block *sb, int partition,
935 int type1_index)
Jan Karabfb257a2008-04-08 20:37:21 +0200936{
937 struct udf_sb_info *sbi = UDF_SB(sb);
938 struct udf_part_map *map;
939 struct udf_meta_data *mdata;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200940 struct kernel_lb_addr addr;
Jan Kara6d3d5e82014-09-04 16:15:51 +0200941 struct inode *fe;
Jan Karabfb257a2008-04-08 20:37:21 +0200942
943 map = &sbi->s_partmaps[partition];
944 mdata = &map->s_type_specific.s_metadata;
Alden Tondettar78888242016-05-18 14:09:19 -0700945 mdata->s_phys_partition_ref = type1_index;
Jan Karabfb257a2008-04-08 20:37:21 +0200946
947 /* metadata address */
Steve Magnanifcbf7632017-10-12 08:48:41 -0500948 udf_debug("Metadata file location: block = %u part = %u\n",
Alden Tondettar78888242016-05-18 14:09:19 -0700949 mdata->s_meta_file_loc, mdata->s_phys_partition_ref);
Jan Karabfb257a2008-04-08 20:37:21 +0200950
Jan Kara6d3d5e82014-09-04 16:15:51 +0200951 fe = udf_find_metadata_inode_efe(sb, mdata->s_meta_file_loc,
Alden Tondettar78888242016-05-18 14:09:19 -0700952 mdata->s_phys_partition_ref);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200953 if (IS_ERR(fe)) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900954 /* mirror file entry */
Steve Magnanifcbf7632017-10-12 08:48:41 -0500955 udf_debug("Mirror metadata file location: block = %u part = %u\n",
Alden Tondettar78888242016-05-18 14:09:19 -0700956 mdata->s_mirror_file_loc, mdata->s_phys_partition_ref);
Jan Karabfb257a2008-04-08 20:37:21 +0200957
Jan Kara6d3d5e82014-09-04 16:15:51 +0200958 fe = udf_find_metadata_inode_efe(sb, mdata->s_mirror_file_loc,
Alden Tondettar78888242016-05-18 14:09:19 -0700959 mdata->s_phys_partition_ref);
Jan Karabfb257a2008-04-08 20:37:21 +0200960
Jan Kara6d3d5e82014-09-04 16:15:51 +0200961 if (IS_ERR(fe)) {
Namjae Jeon3080a742011-10-23 19:28:32 +0900962 udf_err(sb, "Both metadata and mirror metadata inode efe can not found\n");
Jan Kara6d3d5e82014-09-04 16:15:51 +0200963 return PTR_ERR(fe);
Namjae Jeon3080a742011-10-23 19:28:32 +0900964 }
Jan Kara6d3d5e82014-09-04 16:15:51 +0200965 mdata->s_mirror_fe = fe;
966 } else
967 mdata->s_metadata_fe = fe;
968
Jan Karabfb257a2008-04-08 20:37:21 +0200969
970 /*
971 * bitmap file entry
972 * Note:
973 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
974 */
975 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
976 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
Alden Tondettar78888242016-05-18 14:09:19 -0700977 addr.partitionReferenceNum = mdata->s_phys_partition_ref;
Jan Karabfb257a2008-04-08 20:37:21 +0200978
Steve Magnanifcbf7632017-10-12 08:48:41 -0500979 udf_debug("Bitmap file location: block = %u part = %u\n",
Joe Perchesa983f362011-10-10 01:08:07 -0700980 addr.logicalBlockNum, addr.partitionReferenceNum);
Jan Karabfb257a2008-04-08 20:37:21 +0200981
Jan Kara6174c2e2014-10-09 12:52:16 +0200982 fe = udf_iget_special(sb, &addr);
Jan Kara6d3d5e82014-09-04 16:15:51 +0200983 if (IS_ERR(fe)) {
David Howellsbc98a422017-07-17 08:45:34 +0100984 if (sb_rdonly(sb))
Joe Perchesa40ecd72011-10-10 01:08:04 -0700985 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 +0200986 else {
Joe Perches8076c362011-10-10 01:08:03 -0700987 udf_err(sb, "bitmap inode efe not found and attempted read-write mount\n");
Jan Kara6d3d5e82014-09-04 16:15:51 +0200988 return PTR_ERR(fe);
Jan Karabfb257a2008-04-08 20:37:21 +0200989 }
Jan Kara6d3d5e82014-09-04 16:15:51 +0200990 } else
991 mdata->s_bitmap_fe = fe;
Jan Karabfb257a2008-04-08 20:37:21 +0200992 }
993
994 udf_debug("udf_load_metadata_files Ok\n");
Jan Karabfb257a2008-04-08 20:37:21 +0200995 return 0;
Jan Karabfb257a2008-04-08 20:37:21 +0200996}
997
Marcin Slusarz883cb9d12008-02-08 04:20:34 -0800998int udf_compute_nr_groups(struct super_block *sb, u32 partition)
999{
1000 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
Julia Lawall8dee00b2008-02-14 16:15:45 +01001001 return DIV_ROUND_UP(map->s_partition_len +
1002 (sizeof(struct spaceBitmapDesc) << 3),
1003 sb->s_blocksize * 8);
Marcin Slusarz883cb9d12008-02-08 04:20:34 -08001004}
1005
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001006static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
1007{
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001008 struct udf_bitmap *bitmap;
1009 int nr_groups;
1010 int size;
1011
Marcin Slusarz883cb9d12008-02-08 04:20:34 -08001012 nr_groups = udf_compute_nr_groups(sb, index);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001013 size = sizeof(struct udf_bitmap) +
1014 (sizeof(struct buffer_head *) * nr_groups);
1015
1016 if (size <= PAGE_SIZE)
Joe Perchesed2ae6f2010-11-04 20:08:04 -07001017 bitmap = kzalloc(size, GFP_KERNEL);
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001018 else
Joe Perchesed2ae6f2010-11-04 20:08:04 -07001019 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001020
Markus Elfringba2eb862017-08-15 17:03:06 +02001021 if (!bitmap)
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001022 return NULL;
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001023
Marcin Slusarz66e1da32008-02-08 04:20:33 -08001024 bitmap->s_nr_groups = nr_groups;
1025 return bitmap;
1026}
1027
Jan Karab085fbe2018-09-06 15:46:17 +02001028static int check_partition_desc(struct super_block *sb,
1029 struct partitionDesc *p,
1030 struct udf_part_map *map)
1031{
1032 bool umap, utable, fmap, ftable;
1033 struct partitionHeaderDesc *phd;
1034
1035 switch (le32_to_cpu(p->accessType)) {
1036 case PD_ACCESS_TYPE_READ_ONLY:
1037 case PD_ACCESS_TYPE_WRITE_ONCE:
1038 case PD_ACCESS_TYPE_REWRITABLE:
1039 case PD_ACCESS_TYPE_NONE:
1040 goto force_ro;
1041 }
1042
1043 /* No Partition Header Descriptor? */
1044 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1045 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
1046 goto force_ro;
1047
1048 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1049 utable = phd->unallocSpaceTable.extLength;
1050 umap = phd->unallocSpaceBitmap.extLength;
1051 ftable = phd->freedSpaceTable.extLength;
1052 fmap = phd->freedSpaceBitmap.extLength;
1053
1054 /* No allocation info? */
1055 if (!utable && !umap && !ftable && !fmap)
1056 goto force_ro;
1057
1058 /* We don't support blocks that require erasing before overwrite */
1059 if (ftable || fmap)
1060 goto force_ro;
1061 /* UDF 2.60: 2.3.3 - no mixing of tables & bitmaps, no VAT. */
1062 if (utable && umap)
1063 goto force_ro;
1064
1065 if (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
1066 map->s_partition_type == UDF_VIRTUAL_MAP20)
1067 goto force_ro;
1068
1069 return 0;
1070force_ro:
1071 if (!sb_rdonly(sb))
1072 return -EACCES;
1073 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
1074 return 0;
1075}
1076
Jan Kara3fb38df2008-04-02 12:26:36 +02001077static int udf_fill_partdesc_info(struct super_block *sb,
1078 struct partitionDesc *p, int p_index)
1079{
1080 struct udf_part_map *map;
1081 struct udf_sb_info *sbi = UDF_SB(sb);
1082 struct partitionHeaderDesc *phd;
Jan Karab085fbe2018-09-06 15:46:17 +02001083 int err;
Jan Kara3fb38df2008-04-02 12:26:36 +02001084
1085 map = &sbi->s_partmaps[p_index];
1086
1087 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
1088 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
1089
1090 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
1091 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
1092 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
1093 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
1094 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
1095 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
1096 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
1097 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
1098
Steve Magnanifcbf7632017-10-12 08:48:41 -05001099 udf_debug("Partition (%d type %x) starts at physical %u, block length %u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001100 p_index, map->s_partition_type,
1101 map->s_partition_root, map->s_partition_len);
Jan Kara3fb38df2008-04-02 12:26:36 +02001102
Jan Karab085fbe2018-09-06 15:46:17 +02001103 err = check_partition_desc(sb, p, map);
1104 if (err)
1105 return err;
1106
1107 /*
1108 * Skip loading allocation info it we cannot ever write to the fs.
1109 * This is a correctness thing as we may have decided to force ro mount
1110 * to avoid allocation info we don't support.
1111 */
1112 if (UDF_QUERY_FLAG(sb, UDF_FLAG_RW_INCOMPAT))
Jan Kara3fb38df2008-04-02 12:26:36 +02001113 return 0;
1114
1115 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1116 if (phd->unallocSpaceTable.extLength) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02001117 struct kernel_lb_addr loc = {
Jan Kara3fb38df2008-04-02 12:26:36 +02001118 .logicalBlockNum = le32_to_cpu(
1119 phd->unallocSpaceTable.extPosition),
1120 .partitionReferenceNum = p_index,
1121 };
Jan Kara6d3d5e82014-09-04 16:15:51 +02001122 struct inode *inode;
Jan Kara3fb38df2008-04-02 12:26:36 +02001123
Jan Kara6174c2e2014-10-09 12:52:16 +02001124 inode = udf_iget_special(sb, &loc);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001125 if (IS_ERR(inode)) {
Jan Kara3fb38df2008-04-02 12:26:36 +02001126 udf_debug("cannot load unallocSpaceTable (part %d)\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001127 p_index);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001128 return PTR_ERR(inode);
Jan Kara3fb38df2008-04-02 12:26:36 +02001129 }
Jan Kara6d3d5e82014-09-04 16:15:51 +02001130 map->s_uspace.s_table = inode;
Jan Kara3fb38df2008-04-02 12:26:36 +02001131 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
Steve Magnanifcbf7632017-10-12 08:48:41 -05001132 udf_debug("unallocSpaceTable (part %d) @ %lu\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001133 p_index, map->s_uspace.s_table->i_ino);
Jan Kara3fb38df2008-04-02 12:26:36 +02001134 }
1135
1136 if (phd->unallocSpaceBitmap.extLength) {
1137 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1138 if (!bitmap)
Jan Karad759bfa42013-07-25 19:10:59 +02001139 return -ENOMEM;
Jan Kara3fb38df2008-04-02 12:26:36 +02001140 map->s_uspace.s_bitmap = bitmap;
Jan Kara3fb38df2008-04-02 12:26:36 +02001141 bitmap->s_extPosition = le32_to_cpu(
1142 phd->unallocSpaceBitmap.extPosition);
1143 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
Steve Magnanifcbf7632017-10-12 08:48:41 -05001144 udf_debug("unallocSpaceBitmap (part %d) @ %u\n",
Joe Perchesa983f362011-10-10 01:08:07 -07001145 p_index, bitmap->s_extPosition);
Jan Kara3fb38df2008-04-02 12:26:36 +02001146 }
1147
Jan Kara3fb38df2008-04-02 12:26:36 +02001148 return 0;
1149}
1150
Jan Karae971b0b2009-11-30 19:47:55 +01001151static void udf_find_vat_block(struct super_block *sb, int p_index,
1152 int type1_index, sector_t start_block)
1153{
1154 struct udf_sb_info *sbi = UDF_SB(sb);
1155 struct udf_part_map *map = &sbi->s_partmaps[p_index];
1156 sector_t vat_block;
1157 struct kernel_lb_addr ino;
Jan Kara6d3d5e82014-09-04 16:15:51 +02001158 struct inode *inode;
Jan Karae971b0b2009-11-30 19:47:55 +01001159
1160 /*
1161 * VAT file entry is in the last recorded block. Some broken disks have
1162 * it a few blocks before so try a bit harder...
1163 */
1164 ino.partitionReferenceNum = type1_index;
1165 for (vat_block = start_block;
1166 vat_block >= map->s_partition_root &&
Jan Kara6d3d5e82014-09-04 16:15:51 +02001167 vat_block >= start_block - 3; vat_block--) {
Jan Karae971b0b2009-11-30 19:47:55 +01001168 ino.logicalBlockNum = vat_block - map->s_partition_root;
Jan Kara6174c2e2014-10-09 12:52:16 +02001169 inode = udf_iget_special(sb, &ino);
Jan Kara6d3d5e82014-09-04 16:15:51 +02001170 if (!IS_ERR(inode)) {
1171 sbi->s_vat_inode = inode;
1172 break;
1173 }
Jan Karae971b0b2009-11-30 19:47:55 +01001174 }
1175}
1176
Jan Kara38b74a52008-04-02 16:01:35 +02001177static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1178{
1179 struct udf_sb_info *sbi = UDF_SB(sb);
1180 struct udf_part_map *map = &sbi->s_partmaps[p_index];
Jan Karafa5e0812008-04-08 02:08:53 +02001181 struct buffer_head *bh = NULL;
1182 struct udf_inode_info *vati;
1183 uint32_t pos;
1184 struct virtualAllocationTable20 *vat20;
Fabian Frederick23bcda12017-01-06 21:54:41 +01001185 sector_t blocks = i_size_read(sb->s_bdev->bd_inode) >>
1186 sb->s_blocksize_bits;
Jan Kara38b74a52008-04-02 16:01:35 +02001187
Jan Karae971b0b2009-11-30 19:47:55 +01001188 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
Jan Kara4bf17af2009-07-14 19:30:23 +02001189 if (!sbi->s_vat_inode &&
1190 sbi->s_last_block != blocks - 1) {
Joe Perches78ace702011-10-10 01:08:05 -07001191 pr_notice("Failed to read VAT inode from the last recorded block (%lu), retrying with the last block of the device (%lu).\n",
1192 (unsigned long)sbi->s_last_block,
1193 (unsigned long)blocks - 1);
Jan Karae971b0b2009-11-30 19:47:55 +01001194 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
Jan Kara4bf17af2009-07-14 19:30:23 +02001195 }
Jan Kara38b74a52008-04-02 16:01:35 +02001196 if (!sbi->s_vat_inode)
Jan Karad759bfa42013-07-25 19:10:59 +02001197 return -EIO;
Jan Kara38b74a52008-04-02 16:01:35 +02001198
1199 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001200 map->s_type_specific.s_virtual.s_start_offset = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001201 map->s_type_specific.s_virtual.s_num_entries =
1202 (sbi->s_vat_inode->i_size - 36) >> 2;
1203 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
Jan Karafa5e0812008-04-08 02:08:53 +02001204 vati = UDF_I(sbi->s_vat_inode);
1205 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1206 pos = udf_block_map(sbi->s_vat_inode, 0);
1207 bh = sb_bread(sb, pos);
1208 if (!bh)
Jan Karad759bfa42013-07-25 19:10:59 +02001209 return -EIO;
Jan Karafa5e0812008-04-08 02:08:53 +02001210 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1211 } else {
1212 vat20 = (struct virtualAllocationTable20 *)
1213 vati->i_ext.i_data;
1214 }
Jan Kara38b74a52008-04-02 16:01:35 +02001215
Jan Kara38b74a52008-04-02 16:01:35 +02001216 map->s_type_specific.s_virtual.s_start_offset =
Sebastian Manciulea47c93582008-04-14 17:06:36 +02001217 le16_to_cpu(vat20->lengthHeader);
Jan Kara38b74a52008-04-02 16:01:35 +02001218 map->s_type_specific.s_virtual.s_num_entries =
1219 (sbi->s_vat_inode->i_size -
1220 map->s_type_specific.s_virtual.
1221 s_start_offset) >> 2;
1222 brelse(bh);
1223 }
1224 return 0;
1225}
1226
Jan Karad759bfa42013-07-25 19:10:59 +02001227/*
1228 * Load partition descriptor block
1229 *
1230 * Returns <0 on error, 0 on success, -EAGAIN is special - try next descriptor
1231 * sequence.
1232 */
Jan Karac0eb31e2008-04-01 16:50:35 +02001233static int udf_load_partdesc(struct super_block *sb, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Jan Karac0eb31e2008-04-01 16:50:35 +02001235 struct buffer_head *bh;
Jan Karac0eb31e2008-04-01 16:50:35 +02001236 struct partitionDesc *p;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001237 struct udf_part_map *map;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001238 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Kara38b74a52008-04-02 16:01:35 +02001239 int i, type1_idx;
Jan Karac0eb31e2008-04-01 16:50:35 +02001240 uint16_t partitionNumber;
1241 uint16_t ident;
Jan Karad759bfa42013-07-25 19:10:59 +02001242 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Jan Karac0eb31e2008-04-01 16:50:35 +02001244 bh = udf_read_tagged(sb, block, block, &ident);
1245 if (!bh)
Jan Karad759bfa42013-07-25 19:10:59 +02001246 return -EAGAIN;
1247 if (ident != TAG_IDENT_PD) {
1248 ret = 0;
Jan Karac0eb31e2008-04-01 16:50:35 +02001249 goto out_bh;
Jan Karad759bfa42013-07-25 19:10:59 +02001250 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001251
1252 p = (struct partitionDesc *)bh->b_data;
1253 partitionNumber = le16_to_cpu(p->partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001254
Alden Tondettar78888242016-05-18 14:09:19 -07001255 /* First scan for TYPE1 and SPARABLE partitions */
Marcin Slusarz6c79e982008-02-08 04:20:30 -08001256 for (i = 0; i < sbi->s_partitions; i++) {
1257 map = &sbi->s_partmaps[i];
Steve Magnanifcbf7632017-10-12 08:48:41 -05001258 udf_debug("Searching map: (%u == %u)\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001259 map->s_partition_num, partitionNumber);
Jan Kara38b74a52008-04-02 16:01:35 +02001260 if (map->s_partition_num == partitionNumber &&
1261 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1262 map->s_partition_type == UDF_SPARABLE_MAP15))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 break;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001264 }
1265
Jan Kara38b74a52008-04-02 16:01:35 +02001266 if (i >= sbi->s_partitions) {
Steve Magnanifcbf7632017-10-12 08:48:41 -05001267 udf_debug("Partition (%u) not found in partition map\n",
Marcin Slusarz165923f2008-02-10 11:33:08 +01001268 partitionNumber);
Jan Karad759bfa42013-07-25 19:10:59 +02001269 ret = 0;
Jan Karac0eb31e2008-04-01 16:50:35 +02001270 goto out_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01001271 }
1272
Jan Kara3fb38df2008-04-02 12:26:36 +02001273 ret = udf_fill_partdesc_info(sb, p, i);
Jan Karad759bfa42013-07-25 19:10:59 +02001274 if (ret < 0)
1275 goto out_bh;
Jan Kara38b74a52008-04-02 16:01:35 +02001276
1277 /*
Jan Karabfb257a2008-04-08 20:37:21 +02001278 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1279 * PHYSICAL partitions are already set up
Jan Kara38b74a52008-04-02 16:01:35 +02001280 */
1281 type1_idx = i;
Peter A. Felvegi44499602013-10-18 20:07:44 +02001282 map = NULL; /* supress 'maybe used uninitialized' warning */
Jan Kara38b74a52008-04-02 16:01:35 +02001283 for (i = 0; i < sbi->s_partitions; i++) {
1284 map = &sbi->s_partmaps[i];
1285
1286 if (map->s_partition_num == partitionNumber &&
1287 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
Jan Karabfb257a2008-04-08 20:37:21 +02001288 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1289 map->s_partition_type == UDF_METADATA_MAP25))
Jan Kara38b74a52008-04-02 16:01:35 +02001290 break;
1291 }
1292
Jan Karad759bfa42013-07-25 19:10:59 +02001293 if (i >= sbi->s_partitions) {
1294 ret = 0;
Jan Kara38b74a52008-04-02 16:01:35 +02001295 goto out_bh;
Jan Karad759bfa42013-07-25 19:10:59 +02001296 }
Jan Kara38b74a52008-04-02 16:01:35 +02001297
1298 ret = udf_fill_partdesc_info(sb, p, i);
Jan Karad759bfa42013-07-25 19:10:59 +02001299 if (ret < 0)
Jan Kara38b74a52008-04-02 16:01:35 +02001300 goto out_bh;
1301
Jan Karabfb257a2008-04-08 20:37:21 +02001302 if (map->s_partition_type == UDF_METADATA_MAP25) {
Alden Tondettar78888242016-05-18 14:09:19 -07001303 ret = udf_load_metadata_files(sb, i, type1_idx);
Jan Karad759bfa42013-07-25 19:10:59 +02001304 if (ret < 0) {
Joe Perches78ace702011-10-10 01:08:05 -07001305 udf_err(sb, "error loading MetaData partition map %d\n",
1306 i);
Jan Karabfb257a2008-04-08 20:37:21 +02001307 goto out_bh;
1308 }
1309 } else {
Jan Karae729eac2013-07-25 16:15:16 +02001310 /*
1311 * If we have a partition with virtual map, we don't handle
1312 * writing to it (we overwrite blocks instead of relocating
1313 * them).
1314 */
David Howellsbc98a422017-07-17 08:45:34 +01001315 if (!sb_rdonly(sb)) {
Jan Karae729eac2013-07-25 16:15:16 +02001316 ret = -EACCES;
1317 goto out_bh;
1318 }
Jan Karaa9ad01b2018-09-06 15:56:10 +02001319 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
Jan Karabfb257a2008-04-08 20:37:21 +02001320 ret = udf_load_vat(sb, i, type1_idx);
Jan Karad759bfa42013-07-25 19:10:59 +02001321 if (ret < 0)
Jan Karabfb257a2008-04-08 20:37:21 +02001322 goto out_bh;
Jan Karabfb257a2008-04-08 20:37:21 +02001323 }
Jan Karad759bfa42013-07-25 19:10:59 +02001324 ret = 0;
Jan Karac0eb31e2008-04-01 16:50:35 +02001325out_bh:
Jan Kara2e0838f2008-04-01 18:08:51 +02001326 /* In case loading failed, we handle cleanup in udf_fill_super */
Jan Karac0eb31e2008-04-01 16:50:35 +02001327 brelse(bh);
1328 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
Jan Kara1df2ae32012-06-27 21:23:07 +02001331static int udf_load_sparable_map(struct super_block *sb,
1332 struct udf_part_map *map,
1333 struct sparablePartitionMap *spm)
1334{
1335 uint32_t loc;
1336 uint16_t ident;
1337 struct sparingTable *st;
1338 struct udf_sparing_data *sdata = &map->s_type_specific.s_sparing;
1339 int i;
1340 struct buffer_head *bh;
1341
1342 map->s_partition_type = UDF_SPARABLE_MAP15;
1343 sdata->s_packet_len = le16_to_cpu(spm->packetLength);
1344 if (!is_power_of_2(sdata->s_packet_len)) {
1345 udf_err(sb, "error loading logical volume descriptor: "
1346 "Invalid packet length %u\n",
1347 (unsigned)sdata->s_packet_len);
1348 return -EIO;
1349 }
1350 if (spm->numSparingTables > 4) {
1351 udf_err(sb, "error loading logical volume descriptor: "
1352 "Too many sparing tables (%d)\n",
1353 (int)spm->numSparingTables);
1354 return -EIO;
1355 }
1356
1357 for (i = 0; i < spm->numSparingTables; i++) {
1358 loc = le32_to_cpu(spm->locSparingTable[i]);
1359 bh = udf_read_tagged(sb, loc, loc, &ident);
1360 if (!bh)
1361 continue;
1362
1363 st = (struct sparingTable *)bh->b_data;
1364 if (ident != 0 ||
1365 strncmp(st->sparingIdent.ident, UDF_ID_SPARING,
1366 strlen(UDF_ID_SPARING)) ||
1367 sizeof(*st) + le16_to_cpu(st->reallocationTableLen) >
1368 sb->s_blocksize) {
1369 brelse(bh);
1370 continue;
1371 }
1372
1373 sdata->s_spar_map[i] = bh;
1374 }
1375 map->s_partition_func = udf_get_pblock_spar15;
1376 return 0;
1377}
1378
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);
1701 return -EIO;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001702 }
Jan Kara7b568cb2018-02-09 13:28:41 +01001703
1704 vdp = (struct volDescPtr *)bh->b_data;
1705 block = le32_to_cpu(vdp->nextVolDescSeqExt.extLocation);
1706 lastblock = le32_to_cpu(
1707 vdp->nextVolDescSeqExt.extLength) >>
1708 sb->s_blocksize_bits;
1709 lastblock += block - 1;
1710 /* For loop is going to increment 'block' again */
1711 block--;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001712 break;
Jan Kara18cf47812018-02-09 15:15:39 +01001713 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001714 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
Jan Kara18cf47812018-02-09 15:15:39 +01001715 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
1716 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
Jan Kara7b78fd02018-02-09 15:56:34 +01001717 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
1718 curr = get_volume_descriptor_record(ident, bh, &data);
1719 if (IS_ERR(curr)) {
1720 brelse(bh);
1721 return PTR_ERR(curr);
1722 }
1723 /* Descriptor we don't care about? */
1724 if (!curr)
1725 break;
Marcin Slusarz4b111112008-02-08 04:20:36 -08001726 if (vdsn >= curr->volDescSeqNum) {
1727 curr->volDescSeqNum = vdsn;
1728 curr->block = block;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001729 }
1730 break;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07001731 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
Jan Kara7b568cb2018-02-09 13:28:41 +01001732 done = true;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07001733 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07001735 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Jan Karac0eb31e2008-04-01 16:50:35 +02001737 /*
1738 * Now read interesting descriptors again and process them
1739 * in a suitable order
1740 */
Jan Kara7b78fd02018-02-09 15:56:34 +01001741 if (!data.vds[VDS_POS_PRIMARY_VOL_DESC].block) {
Joe Perches78ace702011-10-10 01:08:05 -07001742 udf_err(sb, "Primary Volume Descriptor not found!\n");
Jan Karad759bfa42013-07-25 19:10:59 +02001743 return -EAGAIN;
Jan Karac0eb31e2008-04-01 16:50:35 +02001744 }
Jan Kara7b78fd02018-02-09 15:56:34 +01001745 ret = udf_load_pvoldesc(sb, data.vds[VDS_POS_PRIMARY_VOL_DESC].block);
Jan Karad759bfa42013-07-25 19:10:59 +02001746 if (ret < 0)
1747 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Jan Kara7b78fd02018-02-09 15:56:34 +01001749 if (data.vds[VDS_POS_LOGICAL_VOL_DESC].block) {
Jan Karad759bfa42013-07-25 19:10:59 +02001750 ret = udf_load_logicalvol(sb,
Jan Kara7b78fd02018-02-09 15:56:34 +01001751 data.vds[VDS_POS_LOGICAL_VOL_DESC].block,
1752 fileset);
Jan Karad759bfa42013-07-25 19:10:59 +02001753 if (ret < 0)
1754 return ret;
1755 }
Marcin Slusarz165923f2008-02-10 11:33:08 +01001756
Jan Kara7b78fd02018-02-09 15:56:34 +01001757 /* Now handle prevailing Partition Descriptors */
Jan Karaee4af502018-08-21 14:52:34 +02001758 for (i = 0; i < data.num_part_descs; i++) {
1759 ret = udf_load_partdesc(sb, data.part_descs_loc[i].rec.block);
1760 if (ret < 0)
1761 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
1763
1764 return 0;
1765}
1766
Jan Karad759bfa42013-07-25 19:10:59 +02001767/*
1768 * Load Volume Descriptor Sequence described by anchor in bh
1769 *
1770 * Returns <0 on error, 0 on success
1771 */
Jan Kara403460052009-03-19 16:21:38 +01001772static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1773 struct kernel_lb_addr *fileset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
Jan Kara403460052009-03-19 16:21:38 +01001775 struct anchorVolDescPtr *anchor;
Jan Karad759bfa42013-07-25 19:10:59 +02001776 sector_t main_s, main_e, reserve_s, reserve_e;
1777 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Jan Kara403460052009-03-19 16:21:38 +01001779 anchor = (struct anchorVolDescPtr *)bh->b_data;
1780
1781 /* Locate the main sequence */
1782 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1783 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1784 main_e = main_e >> sb->s_blocksize_bits;
Jan Kara91c9c9e2018-02-08 17:39:01 +01001785 main_e += main_s - 1;
Jan Kara403460052009-03-19 16:21:38 +01001786
1787 /* Locate the reserve sequence */
1788 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1789 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1790 reserve_e = reserve_e >> sb->s_blocksize_bits;
Jan Kara91c9c9e2018-02-08 17:39:01 +01001791 reserve_e += reserve_s - 1;
Jan Kara403460052009-03-19 16:21:38 +01001792
1793 /* Process the main & reserve sequences */
1794 /* responsible for finding the PartitionDesc(s) */
Jan Karad759bfa42013-07-25 19:10:59 +02001795 ret = udf_process_sequence(sb, main_s, main_e, fileset);
1796 if (ret != -EAGAIN)
1797 return ret;
Jan Karabff943a2012-06-27 22:27:05 +02001798 udf_sb_free_partitions(sb);
Jan Karad759bfa42013-07-25 19:10:59 +02001799 ret = udf_process_sequence(sb, reserve_s, reserve_e, fileset);
1800 if (ret < 0) {
1801 udf_sb_free_partitions(sb);
1802 /* No sequence was OK, return -EIO */
1803 if (ret == -EAGAIN)
1804 ret = -EIO;
1805 }
1806 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807}
1808
Jan Kara403460052009-03-19 16:21:38 +01001809/*
1810 * Check whether there is an anchor block in the given block and
1811 * load Volume Descriptor Sequence if so.
Jan Karad759bfa42013-07-25 19:10:59 +02001812 *
1813 * Returns <0 on error, 0 on success, -EAGAIN is special - try next anchor
1814 * block
Jan Kara403460052009-03-19 16:21:38 +01001815 */
1816static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1817 struct kernel_lb_addr *fileset)
1818{
1819 struct buffer_head *bh;
1820 uint16_t ident;
1821 int ret;
1822
1823 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1824 udf_fixed_to_variable(block) >=
Fabian Frederick23bcda12017-01-06 21:54:41 +01001825 i_size_read(sb->s_bdev->bd_inode) >> sb->s_blocksize_bits)
Jan Karad759bfa42013-07-25 19:10:59 +02001826 return -EAGAIN;
Jan Kara403460052009-03-19 16:21:38 +01001827
1828 bh = udf_read_tagged(sb, block, block, &ident);
1829 if (!bh)
Jan Karad759bfa42013-07-25 19:10:59 +02001830 return -EAGAIN;
Jan Kara403460052009-03-19 16:21:38 +01001831 if (ident != TAG_IDENT_AVDP) {
1832 brelse(bh);
Jan Karad759bfa42013-07-25 19:10:59 +02001833 return -EAGAIN;
Jan Kara403460052009-03-19 16:21:38 +01001834 }
1835 ret = udf_load_sequence(sb, bh, fileset);
1836 brelse(bh);
1837 return ret;
1838}
1839
Jan Karad759bfa42013-07-25 19:10:59 +02001840/*
1841 * Search for an anchor volume descriptor pointer.
1842 *
1843 * Returns < 0 on error, 0 on success. -EAGAIN is special - try next set
1844 * of anchors.
1845 */
1846static int udf_scan_anchors(struct super_block *sb, sector_t *lastblock,
1847 struct kernel_lb_addr *fileset)
Jan Kara403460052009-03-19 16:21:38 +01001848{
1849 sector_t last[6];
1850 int i;
1851 struct udf_sb_info *sbi = UDF_SB(sb);
1852 int last_count = 0;
Jan Karad759bfa42013-07-25 19:10:59 +02001853 int ret;
Jan Kara403460052009-03-19 16:21:38 +01001854
1855 /* First try user provided anchor */
1856 if (sbi->s_anchor) {
Jan Karad759bfa42013-07-25 19:10:59 +02001857 ret = udf_check_anchor_block(sb, sbi->s_anchor, fileset);
1858 if (ret != -EAGAIN)
1859 return ret;
Jan Kara403460052009-03-19 16:21:38 +01001860 }
1861 /*
1862 * according to spec, anchor is in either:
1863 * block 256
1864 * lastblock-256
1865 * lastblock
1866 * however, if the disc isn't closed, it could be 512.
1867 */
Jan Karad759bfa42013-07-25 19:10:59 +02001868 ret = udf_check_anchor_block(sb, sbi->s_session + 256, fileset);
1869 if (ret != -EAGAIN)
1870 return ret;
Jan Kara403460052009-03-19 16:21:38 +01001871 /*
1872 * The trouble is which block is the last one. Drives often misreport
1873 * this so we try various possibilities.
1874 */
Jan Karad759bfa42013-07-25 19:10:59 +02001875 last[last_count++] = *lastblock;
1876 if (*lastblock >= 1)
1877 last[last_count++] = *lastblock - 1;
1878 last[last_count++] = *lastblock + 1;
1879 if (*lastblock >= 2)
1880 last[last_count++] = *lastblock - 2;
1881 if (*lastblock >= 150)
1882 last[last_count++] = *lastblock - 150;
1883 if (*lastblock >= 152)
1884 last[last_count++] = *lastblock - 152;
Jan Kara403460052009-03-19 16:21:38 +01001885
1886 for (i = 0; i < last_count; i++) {
Fabian Frederick23bcda12017-01-06 21:54:41 +01001887 if (last[i] >= i_size_read(sb->s_bdev->bd_inode) >>
Jan Kara403460052009-03-19 16:21:38 +01001888 sb->s_blocksize_bits)
1889 continue;
Jan Karad759bfa42013-07-25 19:10:59 +02001890 ret = udf_check_anchor_block(sb, last[i], fileset);
1891 if (ret != -EAGAIN) {
1892 if (!ret)
1893 *lastblock = last[i];
1894 return ret;
1895 }
Jan Kara403460052009-03-19 16:21:38 +01001896 if (last[i] < 256)
1897 continue;
Jan Karad759bfa42013-07-25 19:10:59 +02001898 ret = udf_check_anchor_block(sb, last[i] - 256, fileset);
1899 if (ret != -EAGAIN) {
1900 if (!ret)
1901 *lastblock = last[i];
1902 return ret;
1903 }
Jan Kara403460052009-03-19 16:21:38 +01001904 }
1905
1906 /* Finally try block 512 in case media is open */
Jan Karad759bfa42013-07-25 19:10:59 +02001907 return udf_check_anchor_block(sb, sbi->s_session + 512, fileset);
Jan Kara403460052009-03-19 16:21:38 +01001908}
1909
1910/*
1911 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1912 * area specified by it. The function expects sbi->s_lastblock to be the last
1913 * block on the media.
1914 *
Jan Karad759bfa42013-07-25 19:10:59 +02001915 * Return <0 on error, 0 if anchor found. -EAGAIN is special meaning anchor
1916 * was not found.
Jan Kara403460052009-03-19 16:21:38 +01001917 */
1918static int udf_find_anchor(struct super_block *sb,
1919 struct kernel_lb_addr *fileset)
1920{
Jan Kara403460052009-03-19 16:21:38 +01001921 struct udf_sb_info *sbi = UDF_SB(sb);
Jan Karad759bfa42013-07-25 19:10:59 +02001922 sector_t lastblock = sbi->s_last_block;
1923 int ret;
Jan Kara403460052009-03-19 16:21:38 +01001924
Jan Karad759bfa42013-07-25 19:10:59 +02001925 ret = udf_scan_anchors(sb, &lastblock, fileset);
1926 if (ret != -EAGAIN)
Jan Kara403460052009-03-19 16:21:38 +01001927 goto out;
1928
1929 /* No anchor found? Try VARCONV conversion of block numbers */
1930 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
Jan Karad759bfa42013-07-25 19:10:59 +02001931 lastblock = udf_variable_to_fixed(sbi->s_last_block);
Jan Kara403460052009-03-19 16:21:38 +01001932 /* Firstly, we try to not convert number of the last block */
Jan Karad759bfa42013-07-25 19:10:59 +02001933 ret = udf_scan_anchors(sb, &lastblock, fileset);
1934 if (ret != -EAGAIN)
Jan Kara403460052009-03-19 16:21:38 +01001935 goto out;
1936
Jan Karad759bfa42013-07-25 19:10:59 +02001937 lastblock = sbi->s_last_block;
Jan Kara403460052009-03-19 16:21:38 +01001938 /* Secondly, we try with converted number of the last block */
Jan Karad759bfa42013-07-25 19:10:59 +02001939 ret = udf_scan_anchors(sb, &lastblock, fileset);
1940 if (ret < 0) {
Jan Kara403460052009-03-19 16:21:38 +01001941 /* VARCONV didn't help. Clear it. */
1942 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
Jan Kara403460052009-03-19 16:21:38 +01001943 }
1944out:
Jan Karad759bfa42013-07-25 19:10:59 +02001945 if (ret == 0)
1946 sbi->s_last_block = lastblock;
1947 return ret;
Jan Kara403460052009-03-19 16:21:38 +01001948}
1949
1950/*
1951 * Check Volume Structure Descriptor, find Anchor block and load Volume
Jan Karad759bfa42013-07-25 19:10:59 +02001952 * Descriptor Sequence.
1953 *
1954 * Returns < 0 on error, 0 on success. -EAGAIN is special meaning anchor
1955 * block was not found.
Jan Kara403460052009-03-19 16:21:38 +01001956 */
1957static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1958 int silent, struct kernel_lb_addr *fileset)
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001959{
1960 struct udf_sb_info *sbi = UDF_SB(sb);
Steven J. Magnaniba54aef2019-07-11 08:38:51 -05001961 int nsr = 0;
Jan Karad759bfa42013-07-25 19:10:59 +02001962 int ret;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001963
1964 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1965 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001966 udf_warn(sb, "Bad block size\n");
Jan Karad759bfa42013-07-25 19:10:59 +02001967 return -EINVAL;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001968 }
1969 sbi->s_last_block = uopt->lastblock;
Jan Kara403460052009-03-19 16:21:38 +01001970 if (!uopt->novrs) {
1971 /* Check that it is NSR02 compliant */
Steven J. Magnaniba54aef2019-07-11 08:38:51 -05001972 nsr = udf_check_vsd(sb);
1973 if (!nsr) {
Jan Kara403460052009-03-19 16:21:38 +01001974 if (!silent)
Joe Perches78ace702011-10-10 01:08:05 -07001975 udf_warn(sb, "No VRS found\n");
Fabian Frederick70f16ce2017-01-18 19:39:35 +01001976 return -EINVAL;
Jan Kara403460052009-03-19 16:21:38 +01001977 }
Steven J. Magnaniba54aef2019-07-11 08:38:51 -05001978 if (nsr == -1)
Peter A. Felvegi44499602013-10-18 20:07:44 +02001979 udf_debug("Failed to read sector at offset %d. "
1980 "Assuming open disc. Skipping validity "
1981 "check\n", VSD_FIRST_SECTOR_OFFSET);
Jan Kara403460052009-03-19 16:21:38 +01001982 if (!sbi->s_last_block)
1983 sbi->s_last_block = udf_get_last_block(sb);
1984 } else {
1985 udf_debug("Validity check skipped because of novrs option\n");
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001986 }
Jan Kara403460052009-03-19 16:21:38 +01001987
1988 /* Look for anchor block and load Volume Descriptor Sequence */
1989 sbi->s_anchor = uopt->anchor;
Jan Karad759bfa42013-07-25 19:10:59 +02001990 ret = udf_find_anchor(sb, fileset);
1991 if (ret < 0) {
1992 if (!silent && ret == -EAGAIN)
Joe Perches78ace702011-10-10 01:08:05 -07001993 udf_warn(sb, "No anchor found\n");
Jan Karad759bfa42013-07-25 19:10:59 +02001994 return ret;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001995 }
Jan Karad759bfa42013-07-25 19:10:59 +02001996 return 0;
Clemens Ladisch1197e4d2009-03-11 15:57:47 +01001997}
1998
Steve Magnaniebbd5e92019-02-08 11:34:54 -06001999static void udf_finalize_lvid(struct logicalVolIntegrityDesc *lvid)
2000{
2001 struct timespec64 ts;
2002
2003 ktime_get_real_ts64(&ts);
2004 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, ts);
2005 lvid->descTag.descCRC = cpu_to_le16(
2006 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
2007 le16_to_cpu(lvid->descTag.descCRCLength)));
2008 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
2009}
2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011static void udf_open_lvid(struct super_block *sb)
2012{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002013 struct udf_sb_info *sbi = UDF_SB(sb);
2014 struct buffer_head *bh = sbi->s_lvid_bh;
Marcin Slusarz165923f2008-02-10 11:33:08 +01002015 struct logicalVolIntegrityDesc *lvid;
2016 struct logicalVolIntegrityDescImpUse *lvidiu;
Jan Kara146bca72009-03-16 18:27:37 +01002017
Marcin Slusarz165923f2008-02-10 11:33:08 +01002018 if (!bh)
2019 return;
Jan Kara69d75672013-09-12 22:00:15 +02002020 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
2021 lvidiu = udf_sb_lvidiu(sb);
2022 if (!lvidiu)
2023 return;
Jan Kara949f4a72010-10-20 18:49:20 +02002024
2025 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01002026 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
2027 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Jan Karab72e6322018-02-27 18:55:31 +01002028 if (le32_to_cpu(lvid->integrityType) == LVID_INTEGRITY_TYPE_CLOSE)
2029 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
2030 else
2031 UDF_SET_FLAG(sb, UDF_FLAG_INCONSISTENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Steve Magnaniebbd5e92019-02-08 11:34:54 -06002033 udf_finalize_lvid(lvid);
Marcin Slusarz165923f2008-02-10 11:33:08 +01002034 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01002035 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02002036 mutex_unlock(&sbi->s_alloc_mutex);
Jan Kara9734c9712013-01-17 22:11:38 +01002037 /* Make opening of filesystem visible on the media immediately */
2038 sync_dirty_buffer(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039}
2040
2041static void udf_close_lvid(struct super_block *sb)
2042{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002043 struct udf_sb_info *sbi = UDF_SB(sb);
2044 struct buffer_head *bh = sbi->s_lvid_bh;
2045 struct logicalVolIntegrityDesc *lvid;
Marcin Slusarz165923f2008-02-10 11:33:08 +01002046 struct logicalVolIntegrityDescImpUse *lvidiu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002047
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002048 if (!bh)
2049 return;
Jan Kara69d75672013-09-12 22:00:15 +02002050 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
2051 lvidiu = udf_sb_lvidiu(sb);
2052 if (!lvidiu)
2053 return;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002054
Jan Kara949f4a72010-10-20 18:49:20 +02002055 mutex_lock(&sbi->s_alloc_mutex);
Marcin Slusarz165923f2008-02-10 11:33:08 +01002056 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
2057 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
Marcin Slusarz165923f2008-02-10 11:33:08 +01002058 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
2059 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
2060 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
2061 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
2062 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
2063 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
Jan Karab72e6322018-02-27 18:55:31 +01002064 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_INCONSISTENT))
2065 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Jan Kara853a0c22011-12-23 11:53:07 +01002067 /*
2068 * We set buffer uptodate unconditionally here to avoid spurious
2069 * warnings from mark_buffer_dirty() when previous EIO has marked
2070 * the buffer as !uptodate
2071 */
2072 set_buffer_uptodate(bh);
Steve Magnaniebbd5e92019-02-08 11:34:54 -06002073 udf_finalize_lvid(lvid);
Marcin Slusarz165923f2008-02-10 11:33:08 +01002074 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01002075 sbi->s_lvid_dirty = 0;
Jan Kara949f4a72010-10-20 18:49:20 +02002076 mutex_unlock(&sbi->s_alloc_mutex);
Jan Kara9734c9712013-01-17 22:11:38 +01002077 /* Make closing of filesystem visible on the media immediately */
2078 sync_dirty_buffer(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079}
2080
Jan Karad664b6a2010-10-20 18:28:46 +02002081u64 lvid_get_unique_id(struct super_block *sb)
2082{
2083 struct buffer_head *bh;
2084 struct udf_sb_info *sbi = UDF_SB(sb);
2085 struct logicalVolIntegrityDesc *lvid;
2086 struct logicalVolHeaderDesc *lvhd;
2087 u64 uniqueID;
2088 u64 ret;
2089
2090 bh = sbi->s_lvid_bh;
2091 if (!bh)
2092 return 0;
2093
2094 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
2095 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
2096
2097 mutex_lock(&sbi->s_alloc_mutex);
2098 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
2099 if (!(++uniqueID & 0xFFFFFFFF))
2100 uniqueID += 16;
2101 lvhd->uniqueID = cpu_to_le64(uniqueID);
Steve Magnanie8b42742019-02-08 11:34:55 -06002102 udf_updated_lvid(sb);
Jan Karad664b6a2010-10-20 18:28:46 +02002103 mutex_unlock(&sbi->s_alloc_mutex);
Jan Karad664b6a2010-10-20 18:28:46 +02002104
2105 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108static int udf_fill_super(struct super_block *sb, void *options, int silent)
2109{
Jan Karad759bfa42013-07-25 19:10:59 +02002110 int ret = -EINVAL;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002111 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 struct udf_options uopt;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002113 struct kernel_lb_addr rootdir, fileset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 struct udf_sb_info *sbi;
Jan Kara9181f8b2015-08-20 14:50:07 +02002115 bool lvid_open = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
Jan Kara116e5252018-02-22 10:39:52 +01002118 /* By default we'll use overflow[ug]id when UDF inode [ug]id == -1 */
2119 uopt.uid = make_kuid(current_user_ns(), overflowuid);
2120 uopt.gid = make_kgid(current_user_ns(), overflowgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 uopt.umask = 0;
Marcin Slusarz87bc7302008-12-02 13:40:11 +01002122 uopt.fmode = UDF_INVALID_MODE;
2123 uopt.dmode = UDF_INVALID_MODE;
Chengguang Xu785dffe2018-02-25 21:25:07 +08002124 uopt.nls_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Markus Elfring033c9da2017-08-15 16:45:44 +02002126 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Alessio Igor Bogani9db9f9e2010-11-16 18:40:49 +01002127 if (!sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return -ENOMEM;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Ingo Molnar1e7933d2006-03-23 03:00:44 -08002132 mutex_init(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Miklos Szeredi6da80892008-02-08 04:21:50 -08002134 if (!udf_parse_options((char *)options, &uopt, false))
Markus Elfringfdf26572014-11-18 18:29:10 +01002135 goto parse_options_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002138 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
Joe Perches8076c362011-10-10 01:08:03 -07002139 udf_err(sb, "utf8 cannot be combined with iocharset\n");
Markus Elfringfdf26572014-11-18 18:29:10 +01002140 goto parse_options_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002142 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 uopt.nls_map = load_nls_default();
2144 if (!uopt.nls_map)
2145 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
2146 else
2147 udf_debug("Using default NLS map\n");
2148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
2150 uopt.flags |= (1 << UDF_FLAG_UTF8);
2151
2152 fileset.logicalBlockNum = 0xFFFFFFFF;
2153 fileset.partitionReferenceNum = 0xFFFF;
2154
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002155 sbi->s_flags = uopt.flags;
2156 sbi->s_uid = uopt.uid;
2157 sbi->s_gid = uopt.gid;
2158 sbi->s_umask = uopt.umask;
Marcin Slusarz7ac9bcd52008-11-16 20:52:19 +01002159 sbi->s_fmode = uopt.fmode;
2160 sbi->s_dmode = uopt.dmode;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002161 sbi->s_nls_map = uopt.nls_map;
Jan Karac03cad22010-10-20 22:17:28 +02002162 rwlock_init(&sbi->s_cred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002164 if (uopt.session == 0xFFFFFFFF)
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002165 sbi->s_session = udf_get_last_session(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 else
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002167 sbi->s_session = uopt.session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002169 udf_debug("Multi-session=%d\n", sbi->s_session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 /* Fill in the rest of the superblock */
2172 sb->s_op = &udf_sb_ops;
Rasmus Rohde221e5832008-04-30 17:22:06 +02002173 sb->s_export_op = &udf_export_ops;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04002174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 sb->s_magic = UDF_SUPER_MAGIC;
2176 sb->s_time_gran = 1000;
2177
Jan Kara403460052009-03-19 16:21:38 +01002178 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
2179 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
2180 } else {
Martin K. Petersene1defc42009-05-22 17:17:49 -04002181 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
Fabian Frederick70f16ce2017-01-18 19:39:35 +01002182 while (uopt.blocksize <= 4096) {
Jan Kara403460052009-03-19 16:21:38 +01002183 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
Fabian Frederick70f16ce2017-01-18 19:39:35 +01002184 if (ret < 0) {
2185 if (!silent && ret != -EACCES) {
Steve Magnanifcbf7632017-10-12 08:48:41 -05002186 pr_notice("Scanning with blocksize %u failed\n",
Fabian Frederick70f16ce2017-01-18 19:39:35 +01002187 uopt.blocksize);
2188 }
2189 brelse(sbi->s_lvid_bh);
2190 sbi->s_lvid_bh = NULL;
2191 /*
2192 * EACCES is special - we want to propagate to
2193 * upper layers that we cannot handle RW mount.
2194 */
2195 if (ret == -EACCES)
2196 break;
2197 } else
2198 break;
2199
2200 uopt.blocksize <<= 1;
Jan Kara403460052009-03-19 16:21:38 +01002201 }
2202 }
Jan Karad759bfa42013-07-25 19:10:59 +02002203 if (ret < 0) {
2204 if (ret == -EAGAIN) {
2205 udf_warn(sb, "No partition found (1)\n");
2206 ret = -EINVAL;
2207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 goto error_out;
2209 }
2210
Steve Magnanifcbf7632017-10-12 08:48:41 -05002211 udf_debug("Lastblock=%u\n", sbi->s_last_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002213 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002214 struct logicalVolIntegrityDescImpUse *lvidiu =
Jan Kara69d75672013-09-12 22:00:15 +02002215 udf_sb_lvidiu(sb);
2216 uint16_t minUDFReadRev;
2217 uint16_t minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Jan Kara69d75672013-09-12 22:00:15 +02002219 if (!lvidiu) {
2220 ret = -EINVAL;
2221 goto error_out;
2222 }
2223 minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2224 minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002225 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
Joe Perches78ace702011-10-10 01:08:05 -07002226 udf_err(sb, "minUDFReadRev=%x (max is %x)\n",
Jan Kara69d75672013-09-12 22:00:15 +02002227 minUDFReadRev,
Joe Perches78ace702011-10-10 01:08:05 -07002228 UDF_MAX_READ_VERSION);
Jan Karad759bfa42013-07-25 19:10:59 +02002229 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 goto error_out;
Jan Karaa9ad01b2018-09-06 15:56:10 +02002231 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION) {
2232 if (!sb_rdonly(sb)) {
2233 ret = -EACCES;
2234 goto error_out;
2235 }
2236 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
Jan Karae729eac2013-07-25 16:15:16 +02002237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002239 sbi->s_udfrev = minUDFWriteRev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2242 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2243 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2244 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2245 }
2246
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002247 if (!sbi->s_partitions) {
Joe Perches78ace702011-10-10 01:08:05 -07002248 udf_warn(sb, "No partition found (2)\n");
Jan Karad759bfa42013-07-25 19:10:59 +02002249 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 goto error_out;
2251 }
2252
Marcin Slusarz4b111112008-02-08 04:20:36 -08002253 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
Jan Karaa9ad01b2018-09-06 15:56:10 +02002254 UDF_PART_FLAG_READ_ONLY) {
2255 if (!sb_rdonly(sb)) {
2256 ret = -EACCES;
2257 goto error_out;
2258 }
2259 UDF_SET_FLAG(sb, UDF_FLAG_RW_INCOMPAT);
Peter Osterlundc1a26e72006-10-05 21:17:50 +02002260 }
Eric Sandeen39b3f6d2006-09-29 01:59:41 -07002261
Jan Kara2dee5aa2019-08-29 14:11:54 +02002262 ret = udf_find_fileset(sb, &fileset, &rootdir);
2263 if (ret < 0) {
Joe Perches78ace702011-10-10 01:08:05 -07002264 udf_warn(sb, "No fileset found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 goto error_out;
2266 }
2267
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002268 if (!silent) {
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002269 struct timestamp ts;
Marcin Slusarz56774802008-02-10 11:25:31 +01002270 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
Joe Perches78ace702011-10-10 01:08:05 -07002271 udf_info("Mounting volume '%s', timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
2272 sbi->s_volume_ident,
2273 le16_to_cpu(ts.year), ts.month, ts.day,
Marcin Slusarz56774802008-02-10 11:25:31 +01002274 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
David Howellsbc98a422017-07-17 08:45:34 +01002276 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 udf_open_lvid(sb);
Jan Kara9181f8b2015-08-20 14:50:07 +02002278 lvid_open = true;
2279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 /* Assign the root inode */
2282 /* assign inodes by physical block number */
2283 /* perhaps it's not extensible enough, but for now ... */
Pekka Enberg97e961f2008-10-15 12:29:03 +02002284 inode = udf_iget(sb, &rootdir);
Jan Kara6d3d5e82014-09-04 16:15:51 +02002285 if (IS_ERR(inode)) {
Steve Magnanifcbf7632017-10-12 08:48:41 -05002286 udf_err(sb, "Error in udf_iget, block=%u, partition=%u\n",
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002287 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
Jan Kara6d3d5e82014-09-04 16:15:51 +02002288 ret = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 goto error_out;
2290 }
2291
2292 /* Allocate a dentry for the root inode */
Al Viro48fde702012-01-08 22:15:13 -05002293 sb->s_root = d_make_root(inode);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002294 if (!sb->s_root) {
Joe Perches78ace702011-10-10 01:08:05 -07002295 udf_err(sb, "Couldn't allocate root dentry\n");
Jan Karad759bfa42013-07-25 19:10:59 +02002296 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 goto error_out;
2298 }
Jan Kara31170b62007-05-08 00:35:21 -07002299 sb->s_maxbytes = MAX_LFS_FILESIZE;
Al Viro8de52772012-02-06 12:45:27 -05002300 sb->s_max_links = UDF_MAX_LINKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return 0;
2302
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002303error_out:
Markus Elfring0d454e42014-11-18 17:17:46 +01002304 iput(sbi->s_vat_inode);
Markus Elfringfdf26572014-11-18 18:29:10 +01002305parse_options_failure:
Chengguang Xu785dffe2018-02-25 21:25:07 +08002306 if (uopt.nls_map)
2307 unload_nls(uopt.nls_map);
Jan Kara9181f8b2015-08-20 14:50:07 +02002308 if (lvid_open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002310 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002311 udf_sb_free_partitions(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 kfree(sbi);
2313 sb->s_fs_info = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002314
Jan Karad759bfa42013-07-25 19:10:59 +02002315 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316}
2317
Joe Perches8076c362011-10-10 01:08:03 -07002318void _udf_err(struct super_block *sb, const char *function,
2319 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
Joe Perchesc2bff362011-10-10 01:08:06 -07002321 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 va_list args;
2323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002325
2326 vaf.fmt = fmt;
2327 vaf.va = &args;
2328
2329 pr_err("error (device %s): %s: %pV", sb->s_id, function, &vaf);
2330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332}
2333
Joe Perchesa40ecd72011-10-10 01:08:04 -07002334void _udf_warn(struct super_block *sb, const char *function,
2335 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336{
Joe Perchesc2bff362011-10-10 01:08:06 -07002337 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 va_list args;
2339
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002340 va_start(args, fmt);
Joe Perchesc2bff362011-10-10 01:08:06 -07002341
2342 vaf.fmt = fmt;
2343 vaf.va = &args;
2344
2345 pr_warn("warning (device %s): %s: %pV", sb->s_id, function, &vaf);
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348}
2349
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002350static void udf_put_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002352 struct udf_sb_info *sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002354 sbi = UDF_SB(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02002355
Markus Elfring0d454e42014-11-18 17:17:46 +01002356 iput(sbi->s_vat_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002358 unload_nls(sbi->s_nls_map);
David Howellsbc98a422017-07-17 08:45:34 +01002359 if (!sb_rdonly(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 udf_close_lvid(sb);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002361 brelse(sbi->s_lvid_bh);
Jan Karabff943a2012-06-27 22:27:05 +02002362 udf_sb_free_partitions(sb);
Fabian Frederickbbe48dd2015-01-10 19:13:32 +01002363 mutex_destroy(&sbi->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 kfree(sb->s_fs_info);
2365 sb->s_fs_info = NULL;
2366}
2367
Jan Kara146bca72009-03-16 18:27:37 +01002368static int udf_sync_fs(struct super_block *sb, int wait)
2369{
2370 struct udf_sb_info *sbi = UDF_SB(sb);
2371
2372 mutex_lock(&sbi->s_alloc_mutex);
2373 if (sbi->s_lvid_dirty) {
Steve Magnanie8b42742019-02-08 11:34:55 -06002374 struct buffer_head *bh = sbi->s_lvid_bh;
Jan Kara52b96662019-02-19 14:59:43 +01002375 struct logicalVolIntegrityDesc *lvid;
Steve Magnanie8b42742019-02-08 11:34:55 -06002376
Jan Kara52b96662019-02-19 14:59:43 +01002377 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
2378 udf_finalize_lvid(lvid);
Steve Magnanie8b42742019-02-08 11:34:55 -06002379
Jan Kara146bca72009-03-16 18:27:37 +01002380 /*
2381 * Blockdevice will be synced later so we don't have to submit
2382 * the buffer for IO
2383 */
Steve Magnanie8b42742019-02-08 11:34:55 -06002384 mark_buffer_dirty(bh);
Jan Kara146bca72009-03-16 18:27:37 +01002385 sbi->s_lvid_dirty = 0;
2386 }
2387 mutex_unlock(&sbi->s_alloc_mutex);
2388
2389 return 0;
2390}
2391
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002392static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393{
David Howells726c3342006-06-23 02:02:58 -07002394 struct super_block *sb = dentry->d_sb;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002395 struct udf_sb_info *sbi = UDF_SB(sb);
2396 struct logicalVolIntegrityDescImpUse *lvidiu;
Coly Li557f5a12009-01-20 01:36:55 +08002397 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002398
Jan Kara69d75672013-09-12 22:00:15 +02002399 lvidiu = udf_sb_lvidiu(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 buf->f_type = UDF_SUPER_MAGIC;
2401 buf->f_bsize = sb->s_blocksize;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002402 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 buf->f_bfree = udf_count_free(sb);
2404 buf->f_bavail = buf->f_bfree;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002405 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2406 le32_to_cpu(lvidiu->numDirs)) : 0)
2407 + buf->f_bfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 buf->f_ffree = buf->f_bfree;
Andrew Gabbasov9fba7052016-01-15 02:44:21 -06002409 buf->f_namelen = UDF_NAME_LEN;
Coly Li557f5a12009-01-20 01:36:55 +08002410 buf->f_fsid.val[0] = (u32)id;
2411 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
2413 return 0;
2414}
2415
Marcin Slusarz4b111112008-02-08 04:20:36 -08002416static unsigned int udf_count_free_bitmap(struct super_block *sb,
2417 struct udf_bitmap *bitmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418{
2419 struct buffer_head *bh = NULL;
2420 unsigned int accum = 0;
2421 int index;
Steve Magnanib490bdd2017-10-12 08:48:40 -05002422 udf_pblk_t block = 0, newblock;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002423 struct kernel_lb_addr loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 uint32_t bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 uint8_t *ptr;
2426 uint16_t ident;
2427 struct spaceBitmapDesc *bm;
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 loc.logicalBlockNum = bitmap->s_extPosition;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002430 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
Pekka Enberg97e961f2008-10-15 12:29:03 +02002431 bh = udf_read_ptagged(sb, &loc, 0, &ident);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002433 if (!bh) {
Joe Perches78ace702011-10-10 01:08:05 -07002434 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 goto out;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002436 } else if (ident != TAG_IDENT_SBD) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002437 brelse(bh);
Joe Perches78ace702011-10-10 01:08:05 -07002438 udf_err(sb, "udf_count_free failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 goto out;
2440 }
2441
2442 bm = (struct spaceBitmapDesc *)bh->b_data;
2443 bytes = le32_to_cpu(bm->numOfBytes);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002444 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2445 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002447 while (bytes > 0) {
Marcin Slusarz01b954a2008-02-02 22:37:07 +01002448 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2449 accum += bitmap_weight((const unsigned long *)(ptr + index),
2450 cur_bytes * 8);
2451 bytes -= cur_bytes;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002452 if (bytes) {
Jan Kara3bf25cb2007-05-08 00:35:16 -07002453 brelse(bh);
Pekka Enberg97e961f2008-10-15 12:29:03 +02002454 newblock = udf_get_lb_pblock(sb, &loc, ++block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 bh = udf_tread(sb, newblock);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002456 if (!bh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 udf_debug("read failed\n");
2458 goto out;
2459 }
2460 index = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002461 ptr = (uint8_t *)bh->b_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
2463 }
Jan Kara3bf25cb2007-05-08 00:35:16 -07002464 brelse(bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002465out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 return accum;
2467}
2468
Marcin Slusarz4b111112008-02-08 04:20:36 -08002469static unsigned int udf_count_free_table(struct super_block *sb,
2470 struct inode *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
2472 unsigned int accum = 0;
Jan Karaff116fc2007-05-08 00:35:14 -07002473 uint32_t elen;
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +02002474 struct kernel_lb_addr eloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 int8_t etype;
Jan Karaff116fc2007-05-08 00:35:14 -07002476 struct extent_position epos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Jan Karad1668fe2010-10-20 23:24:12 +02002478 mutex_lock(&UDF_SB(sb)->s_alloc_mutex);
Marcin Slusarzc0b34432008-02-08 04:20:42 -08002479 epos.block = UDF_I(table)->i_location;
Jan Karaff116fc2007-05-08 00:35:14 -07002480 epos.offset = sizeof(struct unallocSpaceEntry);
2481 epos.bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002483 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 accum += (elen >> table->i_sb->s_blocksize_bits);
Marcin Slusarz3a71fc52008-02-08 04:20:28 -08002485
Jan Kara3bf25cb2007-05-08 00:35:16 -07002486 brelse(epos.bh);
Jan Karad1668fe2010-10-20 23:24:12 +02002487 mutex_unlock(&UDF_SB(sb)->s_alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
2489 return accum;
2490}
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -07002491
2492static unsigned int udf_count_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
2494 unsigned int accum = 0;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002495 struct udf_sb_info *sbi;
2496 struct udf_part_map *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002498 sbi = UDF_SB(sb);
2499 if (sbi->s_lvid_bh) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002500 struct logicalVolIntegrityDesc *lvid =
2501 (struct logicalVolIntegrityDesc *)
2502 sbi->s_lvid_bh->b_data;
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002503 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
Marcin Slusarz4b111112008-02-08 04:20:36 -08002504 accum = le32_to_cpu(
2505 lvid->freeSpaceTable[sbi->s_partition]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 if (accum == 0xFFFFFFFF)
2507 accum = 0;
2508 }
2509 }
2510
2511 if (accum)
2512 return accum;
2513
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002514 map = &sbi->s_partmaps[sbi->s_partition];
2515 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002516 accum += udf_count_free_bitmap(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002517 map->s_uspace.s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 if (accum)
2520 return accum;
2521
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002522 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -07002523 accum += udf_count_free_table(sb,
Marcin Slusarz6c79e982008-02-08 04:20:30 -08002524 map->s_uspace.s_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 return accum;
2527}
Fabian Frederick54bb60d2017-01-06 21:53:57 +01002528
2529MODULE_AUTHOR("Ben Fennema");
2530MODULE_DESCRIPTION("Universal Disk Format Filesystem");
2531MODULE_LICENSE("GPL");
2532module_init(init_udf_fs)
2533module_exit(exit_udf_fs)