]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/udf/super.c
udf: Call udf_add_free_space() for more blocks at once in udf_free_blocks()
[mirror_ubuntu-hirsute-kernel.git] / fs / udf / super.c
CommitLineData
1da177e4
LT
1/*
2 * super.c
3 *
4 * PURPOSE
5 * Super block routines for the OSTA-UDF(tm) filesystem.
6 *
7 * DESCRIPTION
8 * OSTA-UDF(tm) = Optical Storage Technology Association
9 * Universal Disk Format.
10 *
11 * This code is based on version 2.00 of the UDF specification,
12 * and revision 3 of the ECMA 167 standard [equivalent to ISO 13346].
13 * http://www.osta.org/
14 * http://www.ecma.ch/
15 * http://www.iso.org/
16 *
1da177e4
LT
17 * COPYRIGHT
18 * This file is distributed under the terms of the GNU General Public
19 * License (GPL). Copies of the GPL can be obtained from:
20 * ftp://prep.ai.mit.edu/pub/gnu/GPL
21 * Each contributing author retains all rights to their own work.
22 *
23 * (C) 1998 Dave Boynton
24 * (C) 1998-2004 Ben Fennema
25 * (C) 2000 Stelias Computing Inc
26 *
27 * HISTORY
28 *
29 * 09/24/98 dgb changed to allow compiling outside of kernel, and
30 * added some debugging.
31 * 10/01/98 dgb updated to allow (some) possibility of compiling w/2.0.34
32 * 10/16/98 attempting some multi-session support
33 * 10/17/98 added freespace count for "df"
34 * 11/11/98 gr added novrs option
35 * 11/26/98 dgb added fileset,anchor mount options
3a71fc5d
MS
36 * 12/06/98 blf really hosed things royally. vat/sparing support. sequenced
37 * vol descs. rewrote option handling based on isofs
1da177e4
LT
38 * 12/20/98 find the free space bitmap (if it exists)
39 */
40
cb00ea35 41#include "udfdecl.h"
1da177e4 42
1da177e4
LT
43#include <linux/blkdev.h>
44#include <linux/slab.h>
45#include <linux/kernel.h>
46#include <linux/module.h>
47#include <linux/parser.h>
48#include <linux/stat.h>
49#include <linux/cdrom.h>
50#include <linux/nls.h>
51#include <linux/smp_lock.h>
52#include <linux/buffer_head.h>
53#include <linux/vfs.h>
54#include <linux/vmalloc.h>
dc5d39be 55#include <linux/errno.h>
6da80894
MS
56#include <linux/mount.h>
57#include <linux/seq_file.h>
01b954a3 58#include <linux/bitmap.h>
f845fced 59#include <linux/crc-itu-t.h>
1da177e4
LT
60#include <asm/byteorder.h>
61
1da177e4
LT
62#include "udf_sb.h"
63#include "udf_i.h"
64
65#include <linux/init.h>
66#include <asm/uaccess.h>
67
68#define VDS_POS_PRIMARY_VOL_DESC 0
69#define VDS_POS_UNALLOC_SPACE_DESC 1
70#define VDS_POS_LOGICAL_VOL_DESC 2
71#define VDS_POS_PARTITION_DESC 3
72#define VDS_POS_IMP_USE_VOL_DESC 4
73#define VDS_POS_VOL_DESC_PTR 5
74#define VDS_POS_TERMINATING_DESC 6
75#define VDS_POS_LENGTH 7
76
6da80894
MS
77#define UDF_DEFAULT_BLOCKSIZE 2048
78
1da177e4
LT
79static char error_buf[1024];
80
81/* These are the "meat" - everything else is stuffing */
82static int udf_fill_super(struct super_block *, void *, int);
83static void udf_put_super(struct super_block *);
146bca72 84static int udf_sync_fs(struct super_block *, int);
1da177e4 85static int udf_remount_fs(struct super_block *, int *, char *);
5ca4e4be 86static void udf_load_logicalvolint(struct super_block *, struct kernel_extent_ad);
5ca4e4be
PE
87static int udf_find_fileset(struct super_block *, struct kernel_lb_addr *,
88 struct kernel_lb_addr *);
cb00ea35 89static void udf_load_fileset(struct super_block *, struct buffer_head *,
5ca4e4be 90 struct kernel_lb_addr *);
1da177e4
LT
91static void udf_open_lvid(struct super_block *);
92static void udf_close_lvid(struct super_block *);
93static unsigned int udf_count_free(struct super_block *);
726c3342 94static int udf_statfs(struct dentry *, struct kstatfs *);
6da80894 95static int udf_show_options(struct seq_file *, struct vfsmount *);
b8145a76
AB
96static void udf_error(struct super_block *sb, const char *function,
97 const char *fmt, ...);
1da177e4 98
6c79e987
MS
99struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
100{
4b11111a
MS
101 struct logicalVolIntegrityDesc *lvid =
102 (struct logicalVolIntegrityDesc *)sbi->s_lvid_bh->b_data;
6c79e987 103 __u32 number_of_partitions = le32_to_cpu(lvid->numOfPartitions);
4b11111a
MS
104 __u32 offset = number_of_partitions * 2 *
105 sizeof(uint32_t)/sizeof(uint8_t);
6c79e987
MS
106 return (struct logicalVolIntegrityDescImpUse *)&(lvid->impUse[offset]);
107}
108
1da177e4 109/* UDF filesystem type */
152a0836
AV
110static struct dentry *udf_mount(struct file_system_type *fs_type,
111 int flags, const char *dev_name, void *data)
1da177e4 112{
152a0836 113 return mount_bdev(fs_type, flags, dev_name, data, udf_fill_super);
1da177e4
LT
114}
115
116static struct file_system_type udf_fstype = {
28de7948
CG
117 .owner = THIS_MODULE,
118 .name = "udf",
152a0836 119 .mount = udf_mount,
28de7948
CG
120 .kill_sb = kill_block_super,
121 .fs_flags = FS_REQUIRES_DEV,
1da177e4
LT
122};
123
cb00ea35 124static struct kmem_cache *udf_inode_cachep;
1da177e4
LT
125
126static struct inode *udf_alloc_inode(struct super_block *sb)
127{
128 struct udf_inode_info *ei;
3a71fc5d 129 ei = kmem_cache_alloc(udf_inode_cachep, GFP_KERNEL);
1da177e4
LT
130 if (!ei)
131 return NULL;
95f8797f
DB
132
133 ei->i_unique = 0;
134 ei->i_lenExtents = 0;
135 ei->i_next_alloc_block = 0;
136 ei->i_next_alloc_goal = 0;
137 ei->i_strat4096 = 0;
138
1da177e4
LT
139 return &ei->vfs_inode;
140}
141
142static void udf_destroy_inode(struct inode *inode)
143{
144 kmem_cache_free(udf_inode_cachep, UDF_I(inode));
145}
146
51cc5068 147static void init_once(void *foo)
1da177e4 148{
cb00ea35 149 struct udf_inode_info *ei = (struct udf_inode_info *)foo;
1da177e4 150
a35afb83
CL
151 ei->i_ext.i_data = NULL;
152 inode_init_once(&ei->vfs_inode);
1da177e4
LT
153}
154
155static int init_inodecache(void)
156{
157 udf_inode_cachep = kmem_cache_create("udf_inode_cache",
158 sizeof(struct udf_inode_info),
cb00ea35
CG
159 0, (SLAB_RECLAIM_ACCOUNT |
160 SLAB_MEM_SPREAD),
20c2df83 161 init_once);
28de7948 162 if (!udf_inode_cachep)
1da177e4
LT
163 return -ENOMEM;
164 return 0;
165}
166
167static void destroy_inodecache(void)
168{
1a1d92c1 169 kmem_cache_destroy(udf_inode_cachep);
1da177e4
LT
170}
171
172/* Superblock operations */
ee9b6d61 173static const struct super_operations udf_sb_ops = {
28de7948
CG
174 .alloc_inode = udf_alloc_inode,
175 .destroy_inode = udf_destroy_inode,
176 .write_inode = udf_write_inode,
3aac2b62 177 .evict_inode = udf_evict_inode,
28de7948 178 .put_super = udf_put_super,
146bca72 179 .sync_fs = udf_sync_fs,
28de7948
CG
180 .statfs = udf_statfs,
181 .remount_fs = udf_remount_fs,
6da80894 182 .show_options = udf_show_options,
1da177e4
LT
183};
184
cb00ea35 185struct udf_options {
1da177e4
LT
186 unsigned char novrs;
187 unsigned int blocksize;
188 unsigned int session;
189 unsigned int lastblock;
190 unsigned int anchor;
191 unsigned int volume;
192 unsigned short partition;
193 unsigned int fileset;
194 unsigned int rootdir;
195 unsigned int flags;
196 mode_t umask;
197 gid_t gid;
198 uid_t uid;
7ac9bcd5
MS
199 mode_t fmode;
200 mode_t dmode;
1da177e4
LT
201 struct nls_table *nls_map;
202};
203
204static int __init init_udf_fs(void)
205{
206 int err;
28de7948 207
1da177e4
LT
208 err = init_inodecache();
209 if (err)
210 goto out1;
211 err = register_filesystem(&udf_fstype);
212 if (err)
213 goto out;
28de7948 214
1da177e4 215 return 0;
28de7948
CG
216
217out:
1da177e4 218 destroy_inodecache();
28de7948
CG
219
220out1:
1da177e4
LT
221 return err;
222}
223
224static void __exit exit_udf_fs(void)
225{
226 unregister_filesystem(&udf_fstype);
227 destroy_inodecache();
228}
229
230module_init(init_udf_fs)
28de7948 231module_exit(exit_udf_fs)
1da177e4 232
dc5d39be
MS
233static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count)
234{
235 struct udf_sb_info *sbi = UDF_SB(sb);
236
237 sbi->s_partmaps = kcalloc(count, sizeof(struct udf_part_map),
238 GFP_KERNEL);
239 if (!sbi->s_partmaps) {
8e24eea7 240 udf_error(sb, __func__,
dc5d39be
MS
241 "Unable to allocate space for %d partition maps",
242 count);
243 sbi->s_partitions = 0;
244 return -ENOMEM;
245 }
246
247 sbi->s_partitions = count;
248 return 0;
249}
250
6da80894
MS
251static int udf_show_options(struct seq_file *seq, struct vfsmount *mnt)
252{
253 struct super_block *sb = mnt->mnt_sb;
254 struct udf_sb_info *sbi = UDF_SB(sb);
255
256 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_STRICT))
257 seq_puts(seq, ",nostrict");
1197e4df 258 if (UDF_QUERY_FLAG(sb, UDF_FLAG_BLOCKSIZE_SET))
6da80894
MS
259 seq_printf(seq, ",bs=%lu", sb->s_blocksize);
260 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
261 seq_puts(seq, ",unhide");
262 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
263 seq_puts(seq, ",undelete");
264 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_USE_AD_IN_ICB))
265 seq_puts(seq, ",noadinicb");
266 if (UDF_QUERY_FLAG(sb, UDF_FLAG_USE_SHORT_AD))
267 seq_puts(seq, ",shortad");
268 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_FORGET))
269 seq_puts(seq, ",uid=forget");
270 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_IGNORE))
271 seq_puts(seq, ",uid=ignore");
272 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_FORGET))
273 seq_puts(seq, ",gid=forget");
274 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_IGNORE))
275 seq_puts(seq, ",gid=ignore");
276 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UID_SET))
277 seq_printf(seq, ",uid=%u", sbi->s_uid);
278 if (UDF_QUERY_FLAG(sb, UDF_FLAG_GID_SET))
279 seq_printf(seq, ",gid=%u", sbi->s_gid);
280 if (sbi->s_umask != 0)
281 seq_printf(seq, ",umask=%o", sbi->s_umask);
87bc730c 282 if (sbi->s_fmode != UDF_INVALID_MODE)
7ac9bcd5 283 seq_printf(seq, ",mode=%o", sbi->s_fmode);
87bc730c 284 if (sbi->s_dmode != UDF_INVALID_MODE)
7ac9bcd5 285 seq_printf(seq, ",dmode=%o", sbi->s_dmode);
6da80894
MS
286 if (UDF_QUERY_FLAG(sb, UDF_FLAG_SESSION_SET))
287 seq_printf(seq, ",session=%u", sbi->s_session);
288 if (UDF_QUERY_FLAG(sb, UDF_FLAG_LASTBLOCK_SET))
289 seq_printf(seq, ",lastblock=%u", sbi->s_last_block);
40346005
JK
290 if (sbi->s_anchor != 0)
291 seq_printf(seq, ",anchor=%u", sbi->s_anchor);
6da80894
MS
292 /*
293 * volume, partition, fileset and rootdir seem to be ignored
294 * currently
295 */
296 if (UDF_QUERY_FLAG(sb, UDF_FLAG_UTF8))
297 seq_puts(seq, ",utf8");
298 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP) && sbi->s_nls_map)
299 seq_printf(seq, ",iocharset=%s", sbi->s_nls_map->charset);
300
301 return 0;
302}
303
1da177e4
LT
304/*
305 * udf_parse_options
306 *
307 * PURPOSE
308 * Parse mount options.
309 *
310 * DESCRIPTION
311 * The following mount options are supported:
312 *
313 * gid= Set the default group.
314 * umask= Set the default umask.
7ac9bcd5
MS
315 * mode= Set the default file permissions.
316 * dmode= Set the default directory permissions.
1da177e4
LT
317 * uid= Set the default user.
318 * bs= Set the block size.
319 * unhide Show otherwise hidden files.
320 * undelete Show deleted files in lists.
321 * adinicb Embed data in the inode (default)
322 * noadinicb Don't embed data in the inode
323 * shortad Use short ad's
324 * longad Use long ad's (default)
325 * nostrict Unset strict conformance
326 * iocharset= Set the NLS character set
327 *
328 * The remaining are for debugging and disaster recovery:
329 *
28de7948 330 * novrs Skip volume sequence recognition
1da177e4
LT
331 *
332 * The following expect a offset from 0.
333 *
334 * session= Set the CDROM session (default= last session)
335 * anchor= Override standard anchor location. (default= 256)
336 * volume= Override the VolumeDesc location. (unused)
337 * partition= Override the PartitionDesc location. (unused)
338 * lastblock= Set the last block of the filesystem/
339 *
340 * The following expect a offset from the partition root.
341 *
342 * fileset= Override the fileset block location. (unused)
343 * rootdir= Override the root directory location. (unused)
344 * WARNING: overriding the rootdir to a non-directory may
345 * yield highly unpredictable results.
346 *
347 * PRE-CONDITIONS
348 * options Pointer to mount options string.
349 * uopts Pointer to mount options variable.
350 *
351 * POST-CONDITIONS
352 * <return> 1 Mount options parsed okay.
353 * <return> 0 Error parsing mount options.
354 *
355 * HISTORY
356 * July 1, 1997 - Andrew E. Mileski
357 * Written, tested, and released.
358 */
28de7948 359
1da177e4
LT
360enum {
361 Opt_novrs, Opt_nostrict, Opt_bs, Opt_unhide, Opt_undelete,
362 Opt_noadinicb, Opt_adinicb, Opt_shortad, Opt_longad,
363 Opt_gid, Opt_uid, Opt_umask, Opt_session, Opt_lastblock,
364 Opt_anchor, Opt_volume, Opt_partition, Opt_fileset,
365 Opt_rootdir, Opt_utf8, Opt_iocharset,
7ac9bcd5
MS
366 Opt_err, Opt_uforget, Opt_uignore, Opt_gforget, Opt_gignore,
367 Opt_fmode, Opt_dmode
1da177e4
LT
368};
369
a447c093 370static const match_table_t tokens = {
28de7948
CG
371 {Opt_novrs, "novrs"},
372 {Opt_nostrict, "nostrict"},
373 {Opt_bs, "bs=%u"},
374 {Opt_unhide, "unhide"},
375 {Opt_undelete, "undelete"},
376 {Opt_noadinicb, "noadinicb"},
377 {Opt_adinicb, "adinicb"},
378 {Opt_shortad, "shortad"},
379 {Opt_longad, "longad"},
380 {Opt_uforget, "uid=forget"},
381 {Opt_uignore, "uid=ignore"},
382 {Opt_gforget, "gid=forget"},
383 {Opt_gignore, "gid=ignore"},
384 {Opt_gid, "gid=%u"},
385 {Opt_uid, "uid=%u"},
386 {Opt_umask, "umask=%o"},
387 {Opt_session, "session=%u"},
388 {Opt_lastblock, "lastblock=%u"},
389 {Opt_anchor, "anchor=%u"},
390 {Opt_volume, "volume=%u"},
391 {Opt_partition, "partition=%u"},
392 {Opt_fileset, "fileset=%u"},
393 {Opt_rootdir, "rootdir=%u"},
394 {Opt_utf8, "utf8"},
395 {Opt_iocharset, "iocharset=%s"},
7ac9bcd5
MS
396 {Opt_fmode, "mode=%o"},
397 {Opt_dmode, "dmode=%o"},
28de7948 398 {Opt_err, NULL}
1da177e4
LT
399};
400
6da80894
MS
401static int udf_parse_options(char *options, struct udf_options *uopt,
402 bool remount)
1da177e4
LT
403{
404 char *p;
405 int option;
406
407 uopt->novrs = 0;
1da177e4
LT
408 uopt->partition = 0xFFFF;
409 uopt->session = 0xFFFFFFFF;
410 uopt->lastblock = 0;
411 uopt->anchor = 0;
412 uopt->volume = 0xFFFFFFFF;
413 uopt->rootdir = 0xFFFFFFFF;
414 uopt->fileset = 0xFFFFFFFF;
415 uopt->nls_map = NULL;
416
417 if (!options)
418 return 1;
419
cb00ea35 420 while ((p = strsep(&options, ",")) != NULL) {
1da177e4
LT
421 substring_t args[MAX_OPT_ARGS];
422 int token;
423 if (!*p)
424 continue;
425
426 token = match_token(p, tokens, args);
cb00ea35
CG
427 switch (token) {
428 case Opt_novrs:
429 uopt->novrs = 1;
4136801a 430 break;
cb00ea35
CG
431 case Opt_bs:
432 if (match_int(&args[0], &option))
433 return 0;
434 uopt->blocksize = option;
1197e4df 435 uopt->flags |= (1 << UDF_FLAG_BLOCKSIZE_SET);
cb00ea35
CG
436 break;
437 case Opt_unhide:
438 uopt->flags |= (1 << UDF_FLAG_UNHIDE);
439 break;
440 case Opt_undelete:
441 uopt->flags |= (1 << UDF_FLAG_UNDELETE);
442 break;
443 case Opt_noadinicb:
444 uopt->flags &= ~(1 << UDF_FLAG_USE_AD_IN_ICB);
445 break;
446 case Opt_adinicb:
447 uopt->flags |= (1 << UDF_FLAG_USE_AD_IN_ICB);
448 break;
449 case Opt_shortad:
450 uopt->flags |= (1 << UDF_FLAG_USE_SHORT_AD);
451 break;
452 case Opt_longad:
453 uopt->flags &= ~(1 << UDF_FLAG_USE_SHORT_AD);
454 break;
455 case Opt_gid:
456 if (match_int(args, &option))
457 return 0;
458 uopt->gid = option;
ca76d2d8 459 uopt->flags |= (1 << UDF_FLAG_GID_SET);
cb00ea35
CG
460 break;
461 case Opt_uid:
462 if (match_int(args, &option))
463 return 0;
464 uopt->uid = option;
ca76d2d8 465 uopt->flags |= (1 << UDF_FLAG_UID_SET);
cb00ea35
CG
466 break;
467 case Opt_umask:
468 if (match_octal(args, &option))
469 return 0;
470 uopt->umask = option;
471 break;
472 case Opt_nostrict:
473 uopt->flags &= ~(1 << UDF_FLAG_STRICT);
474 break;
475 case Opt_session:
476 if (match_int(args, &option))
477 return 0;
478 uopt->session = option;
6da80894
MS
479 if (!remount)
480 uopt->flags |= (1 << UDF_FLAG_SESSION_SET);
cb00ea35
CG
481 break;
482 case Opt_lastblock:
483 if (match_int(args, &option))
484 return 0;
485 uopt->lastblock = option;
6da80894
MS
486 if (!remount)
487 uopt->flags |= (1 << UDF_FLAG_LASTBLOCK_SET);
cb00ea35
CG
488 break;
489 case Opt_anchor:
490 if (match_int(args, &option))
491 return 0;
492 uopt->anchor = option;
493 break;
494 case Opt_volume:
495 if (match_int(args, &option))
496 return 0;
497 uopt->volume = option;
498 break;
499 case Opt_partition:
500 if (match_int(args, &option))
501 return 0;
502 uopt->partition = option;
503 break;
504 case Opt_fileset:
505 if (match_int(args, &option))
506 return 0;
507 uopt->fileset = option;
508 break;
509 case Opt_rootdir:
510 if (match_int(args, &option))
511 return 0;
512 uopt->rootdir = option;
513 break;
514 case Opt_utf8:
515 uopt->flags |= (1 << UDF_FLAG_UTF8);
516 break;
1da177e4 517#ifdef CONFIG_UDF_NLS
cb00ea35
CG
518 case Opt_iocharset:
519 uopt->nls_map = load_nls(args[0].from);
520 uopt->flags |= (1 << UDF_FLAG_NLS_MAP);
521 break;
1da177e4 522#endif
cb00ea35
CG
523 case Opt_uignore:
524 uopt->flags |= (1 << UDF_FLAG_UID_IGNORE);
525 break;
526 case Opt_uforget:
527 uopt->flags |= (1 << UDF_FLAG_UID_FORGET);
528 break;
529 case Opt_gignore:
530 uopt->flags |= (1 << UDF_FLAG_GID_IGNORE);
531 break;
532 case Opt_gforget:
533 uopt->flags |= (1 << UDF_FLAG_GID_FORGET);
534 break;
7ac9bcd5
MS
535 case Opt_fmode:
536 if (match_octal(args, &option))
537 return 0;
538 uopt->fmode = option & 0777;
539 break;
540 case Opt_dmode:
541 if (match_octal(args, &option))
542 return 0;
543 uopt->dmode = option & 0777;
544 break;
cb00ea35
CG
545 default:
546 printk(KERN_ERR "udf: bad mount option \"%s\" "
547 "or missing value\n", p);
1da177e4
LT
548 return 0;
549 }
550 }
551 return 1;
552}
553
cb00ea35 554static int udf_remount_fs(struct super_block *sb, int *flags, char *options)
1da177e4
LT
555{
556 struct udf_options uopt;
6c79e987 557 struct udf_sb_info *sbi = UDF_SB(sb);
c79d967d 558 int error = 0;
1da177e4 559
6c79e987
MS
560 uopt.flags = sbi->s_flags;
561 uopt.uid = sbi->s_uid;
562 uopt.gid = sbi->s_gid;
563 uopt.umask = sbi->s_umask;
7ac9bcd5
MS
564 uopt.fmode = sbi->s_fmode;
565 uopt.dmode = sbi->s_dmode;
1da177e4 566
6da80894 567 if (!udf_parse_options(options, &uopt, true))
1da177e4
LT
568 return -EINVAL;
569
c03cad24 570 write_lock(&sbi->s_cred_lock);
6c79e987
MS
571 sbi->s_flags = uopt.flags;
572 sbi->s_uid = uopt.uid;
573 sbi->s_gid = uopt.gid;
574 sbi->s_umask = uopt.umask;
7ac9bcd5
MS
575 sbi->s_fmode = uopt.fmode;
576 sbi->s_dmode = uopt.dmode;
c03cad24 577 write_unlock(&sbi->s_cred_lock);
1da177e4 578
6c79e987
MS
579 if (sbi->s_lvid_bh) {
580 int write_rev = le16_to_cpu(udf_sb_lvidiu(sbi)->minUDFWriteRev);
1da177e4
LT
581 if (write_rev > UDF_MAX_WRITE_VERSION)
582 *flags |= MS_RDONLY;
583 }
584
c79d967d
CH
585 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
586 goto out_unlock;
587
36350462 588 if (*flags & MS_RDONLY)
1da177e4 589 udf_close_lvid(sb);
36350462 590 else
1da177e4
LT
591 udf_open_lvid(sb);
592
c79d967d 593out_unlock:
c79d967d 594 return error;
1da177e4
LT
595}
596
40346005
JK
597/* Check Volume Structure Descriptors (ECMA 167 2/9.1) */
598/* We also check any "CD-ROM Volume Descriptor Set" (ECMA 167 2/8.3.1) */
599static loff_t udf_check_vsd(struct super_block *sb)
1da177e4
LT
600{
601 struct volStructDesc *vsd = NULL;
f4bcbbd9 602 loff_t sector = 32768;
1da177e4
LT
603 int sectorsize;
604 struct buffer_head *bh = NULL;
cb00ea35
CG
605 int nsr02 = 0;
606 int nsr03 = 0;
6c79e987 607 struct udf_sb_info *sbi;
1da177e4 608
6c79e987 609 sbi = UDF_SB(sb);
1da177e4
LT
610 if (sb->s_blocksize < sizeof(struct volStructDesc))
611 sectorsize = sizeof(struct volStructDesc);
612 else
613 sectorsize = sb->s_blocksize;
614
6c79e987 615 sector += (sbi->s_session << sb->s_blocksize_bits);
1da177e4
LT
616
617 udf_debug("Starting at sector %u (%ld byte sectors)\n",
706047a7
SM
618 (unsigned int)(sector >> sb->s_blocksize_bits),
619 sb->s_blocksize);
1da177e4 620 /* Process the sequence (if applicable) */
cb00ea35 621 for (; !nsr02 && !nsr03; sector += sectorsize) {
1da177e4
LT
622 /* Read a block */
623 bh = udf_tread(sb, sector >> sb->s_blocksize_bits);
624 if (!bh)
625 break;
626
627 /* Look for ISO descriptors */
628 vsd = (struct volStructDesc *)(bh->b_data +
3a71fc5d 629 (sector & (sb->s_blocksize - 1)));
1da177e4 630
cb00ea35 631 if (vsd->stdIdent[0] == 0) {
3bf25cb4 632 brelse(bh);
1da177e4 633 break;
3a71fc5d
MS
634 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_CD001,
635 VSD_STD_ID_LEN)) {
cb00ea35
CG
636 switch (vsd->structType) {
637 case 0:
638 udf_debug("ISO9660 Boot Record found\n");
639 break;
640 case 1:
3a71fc5d
MS
641 udf_debug("ISO9660 Primary Volume Descriptor "
642 "found\n");
cb00ea35
CG
643 break;
644 case 2:
3a71fc5d
MS
645 udf_debug("ISO9660 Supplementary Volume "
646 "Descriptor found\n");
cb00ea35
CG
647 break;
648 case 3:
3a71fc5d
MS
649 udf_debug("ISO9660 Volume Partition Descriptor "
650 "found\n");
cb00ea35
CG
651 break;
652 case 255:
3a71fc5d
MS
653 udf_debug("ISO9660 Volume Descriptor Set "
654 "Terminator found\n");
cb00ea35
CG
655 break;
656 default:
657 udf_debug("ISO9660 VRS (%u) found\n",
658 vsd->structType);
659 break;
1da177e4 660 }
3a71fc5d
MS
661 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_BEA01,
662 VSD_STD_ID_LEN))
663 ; /* nothing */
664 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_TEA01,
665 VSD_STD_ID_LEN)) {
3bf25cb4 666 brelse(bh);
1da177e4 667 break;
3a71fc5d
MS
668 } else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR02,
669 VSD_STD_ID_LEN))
1da177e4 670 nsr02 = sector;
3a71fc5d
MS
671 else if (!strncmp(vsd->stdIdent, VSD_STD_ID_NSR03,
672 VSD_STD_ID_LEN))
1da177e4 673 nsr03 = sector;
3bf25cb4 674 brelse(bh);
1da177e4
LT
675 }
676
677 if (nsr03)
678 return nsr03;
679 else if (nsr02)
680 return nsr02;
6c79e987 681 else if (sector - (sbi->s_session << sb->s_blocksize_bits) == 32768)
1da177e4
LT
682 return -1;
683 else
684 return 0;
685}
686
3a71fc5d 687static int udf_find_fileset(struct super_block *sb,
5ca4e4be
PE
688 struct kernel_lb_addr *fileset,
689 struct kernel_lb_addr *root)
1da177e4
LT
690{
691 struct buffer_head *bh = NULL;
692 long lastblock;
693 uint16_t ident;
6c79e987 694 struct udf_sb_info *sbi;
1da177e4
LT
695
696 if (fileset->logicalBlockNum != 0xFFFFFFFF ||
cb00ea35 697 fileset->partitionReferenceNum != 0xFFFF) {
97e961fd 698 bh = udf_read_ptagged(sb, fileset, 0, &ident);
1da177e4 699
28de7948 700 if (!bh) {
1da177e4 701 return 1;
28de7948 702 } else if (ident != TAG_IDENT_FSD) {
3bf25cb4 703 brelse(bh);
1da177e4
LT
704 return 1;
705 }
cb00ea35 706
1da177e4
LT
707 }
708
6c79e987 709 sbi = UDF_SB(sb);
3a71fc5d
MS
710 if (!bh) {
711 /* Search backwards through the partitions */
5ca4e4be 712 struct kernel_lb_addr newfileset;
1da177e4 713
28de7948 714/* --> cvg: FIXME - is it reasonable? */
1da177e4 715 return 1;
cb00ea35 716
6c79e987 717 for (newfileset.partitionReferenceNum = sbi->s_partitions - 1;
cb00ea35
CG
718 (newfileset.partitionReferenceNum != 0xFFFF &&
719 fileset->logicalBlockNum == 0xFFFFFFFF &&
720 fileset->partitionReferenceNum == 0xFFFF);
721 newfileset.partitionReferenceNum--) {
6c79e987
MS
722 lastblock = sbi->s_partmaps
723 [newfileset.partitionReferenceNum]
724 .s_partition_len;
1da177e4
LT
725 newfileset.logicalBlockNum = 0;
726
cb00ea35 727 do {
97e961fd 728 bh = udf_read_ptagged(sb, &newfileset, 0,
3a71fc5d 729 &ident);
cb00ea35
CG
730 if (!bh) {
731 newfileset.logicalBlockNum++;
1da177e4
LT
732 continue;
733 }
734
cb00ea35
CG
735 switch (ident) {
736 case TAG_IDENT_SBD:
28de7948
CG
737 {
738 struct spaceBitmapDesc *sp;
4b11111a
MS
739 sp = (struct spaceBitmapDesc *)
740 bh->b_data;
28de7948
CG
741 newfileset.logicalBlockNum += 1 +
742 ((le32_to_cpu(sp->numOfBytes) +
4b11111a
MS
743 sizeof(struct spaceBitmapDesc)
744 - 1) >> sb->s_blocksize_bits);
28de7948
CG
745 brelse(bh);
746 break;
747 }
cb00ea35 748 case TAG_IDENT_FSD:
28de7948
CG
749 *fileset = newfileset;
750 break;
cb00ea35 751 default:
28de7948
CG
752 newfileset.logicalBlockNum++;
753 brelse(bh);
754 bh = NULL;
755 break;
1da177e4 756 }
28de7948
CG
757 } while (newfileset.logicalBlockNum < lastblock &&
758 fileset->logicalBlockNum == 0xFFFFFFFF &&
759 fileset->partitionReferenceNum == 0xFFFF);
1da177e4
LT
760 }
761 }
762
763 if ((fileset->logicalBlockNum != 0xFFFFFFFF ||
cb00ea35 764 fileset->partitionReferenceNum != 0xFFFF) && bh) {
1da177e4 765 udf_debug("Fileset at block=%d, partition=%d\n",
cb00ea35
CG
766 fileset->logicalBlockNum,
767 fileset->partitionReferenceNum);
1da177e4 768
6c79e987 769 sbi->s_partition = fileset->partitionReferenceNum;
1da177e4 770 udf_load_fileset(sb, bh, root);
3bf25cb4 771 brelse(bh);
1da177e4
LT
772 return 0;
773 }
774 return 1;
775}
776
c0eb31ed 777static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
1da177e4
LT
778{
779 struct primaryVolDesc *pvoldesc;
ba9aadd8 780 struct ustr *instr, *outstr;
c0eb31ed
JK
781 struct buffer_head *bh;
782 uint16_t ident;
ba9aadd8
MS
783 int ret = 1;
784
785 instr = kmalloc(sizeof(struct ustr), GFP_NOFS);
786 if (!instr)
787 return 1;
788
789 outstr = kmalloc(sizeof(struct ustr), GFP_NOFS);
790 if (!outstr)
791 goto out1;
c0eb31ed
JK
792
793 bh = udf_read_tagged(sb, block, block, &ident);
794 if (!bh)
ba9aadd8
MS
795 goto out2;
796
c0eb31ed 797 BUG_ON(ident != TAG_IDENT_PVD);
1da177e4
LT
798
799 pvoldesc = (struct primaryVolDesc *)bh->b_data;
800
56774805
MS
801 if (udf_disk_stamp_to_time(&UDF_SB(sb)->s_record_time,
802 pvoldesc->recordingDateAndTime)) {
af15a298 803#ifdef UDFFS_DEBUG
5ca4e4be 804 struct timestamp *ts = &pvoldesc->recordingDateAndTime;
cbf5676a 805 udf_debug("recording time %04u/%02u/%02u"
3a71fc5d 806 " %02u:%02u (%x)\n",
af15a298
MS
807 le16_to_cpu(ts->year), ts->month, ts->day, ts->hour,
808 ts->minute, le16_to_cpu(ts->typeAndTimezone));
809#endif
1da177e4
LT
810 }
811
ba9aadd8
MS
812 if (!udf_build_ustr(instr, pvoldesc->volIdent, 32))
813 if (udf_CS0toUTF8(outstr, instr)) {
814 strncpy(UDF_SB(sb)->s_volume_ident, outstr->u_name,
815 outstr->u_len > 31 ? 31 : outstr->u_len);
4b11111a
MS
816 udf_debug("volIdent[] = '%s'\n",
817 UDF_SB(sb)->s_volume_ident);
1da177e4 818 }
1da177e4 819
ba9aadd8
MS
820 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
821 if (udf_CS0toUTF8(outstr, instr))
822 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
c0eb31ed
JK
823
824 brelse(bh);
ba9aadd8
MS
825 ret = 0;
826out2:
827 kfree(outstr);
828out1:
829 kfree(instr);
830 return ret;
1da177e4
LT
831}
832
bfb257a5
JK
833static int udf_load_metadata_files(struct super_block *sb, int partition)
834{
835 struct udf_sb_info *sbi = UDF_SB(sb);
836 struct udf_part_map *map;
837 struct udf_meta_data *mdata;
5ca4e4be 838 struct kernel_lb_addr addr;
bfb257a5
JK
839 int fe_error = 0;
840
841 map = &sbi->s_partmaps[partition];
842 mdata = &map->s_type_specific.s_metadata;
843
844 /* metadata address */
845 addr.logicalBlockNum = mdata->s_meta_file_loc;
846 addr.partitionReferenceNum = map->s_partition_num;
847
848 udf_debug("Metadata file location: block = %d part = %d\n",
849 addr.logicalBlockNum, addr.partitionReferenceNum);
850
97e961fd 851 mdata->s_metadata_fe = udf_iget(sb, &addr);
bfb257a5
JK
852
853 if (mdata->s_metadata_fe == NULL) {
854 udf_warning(sb, __func__, "metadata inode efe not found, "
855 "will try mirror inode.");
856 fe_error = 1;
857 } else if (UDF_I(mdata->s_metadata_fe)->i_alloc_type !=
858 ICBTAG_FLAG_AD_SHORT) {
859 udf_warning(sb, __func__, "metadata inode efe does not have "
860 "short allocation descriptors!");
861 fe_error = 1;
862 iput(mdata->s_metadata_fe);
863 mdata->s_metadata_fe = NULL;
864 }
865
866 /* mirror file entry */
867 addr.logicalBlockNum = mdata->s_mirror_file_loc;
868 addr.partitionReferenceNum = map->s_partition_num;
869
870 udf_debug("Mirror metadata file location: block = %d part = %d\n",
871 addr.logicalBlockNum, addr.partitionReferenceNum);
872
97e961fd 873 mdata->s_mirror_fe = udf_iget(sb, &addr);
bfb257a5
JK
874
875 if (mdata->s_mirror_fe == NULL) {
876 if (fe_error) {
877 udf_error(sb, __func__, "mirror inode efe not found "
878 "and metadata inode is missing too, exiting...");
879 goto error_exit;
880 } else
881 udf_warning(sb, __func__, "mirror inode efe not found,"
882 " but metadata inode is OK");
883 } else if (UDF_I(mdata->s_mirror_fe)->i_alloc_type !=
884 ICBTAG_FLAG_AD_SHORT) {
885 udf_warning(sb, __func__, "mirror inode efe does not have "
886 "short allocation descriptors!");
887 iput(mdata->s_mirror_fe);
888 mdata->s_mirror_fe = NULL;
889 if (fe_error)
890 goto error_exit;
891 }
892
893 /*
894 * bitmap file entry
895 * Note:
896 * Load only if bitmap file location differs from 0xFFFFFFFF (DCN-5102)
897 */
898 if (mdata->s_bitmap_file_loc != 0xFFFFFFFF) {
899 addr.logicalBlockNum = mdata->s_bitmap_file_loc;
900 addr.partitionReferenceNum = map->s_partition_num;
901
902 udf_debug("Bitmap file location: block = %d part = %d\n",
903 addr.logicalBlockNum, addr.partitionReferenceNum);
904
97e961fd 905 mdata->s_bitmap_fe = udf_iget(sb, &addr);
bfb257a5
JK
906
907 if (mdata->s_bitmap_fe == NULL) {
908 if (sb->s_flags & MS_RDONLY)
909 udf_warning(sb, __func__, "bitmap inode efe "
910 "not found but it's ok since the disc"
911 " is mounted read-only");
912 else {
913 udf_error(sb, __func__, "bitmap inode efe not "
914 "found and attempted read-write mount");
915 goto error_exit;
916 }
917 }
918 }
919
920 udf_debug("udf_load_metadata_files Ok\n");
921
922 return 0;
923
924error_exit:
925 return 1;
926}
927
28de7948 928static void udf_load_fileset(struct super_block *sb, struct buffer_head *bh,
5ca4e4be 929 struct kernel_lb_addr *root)
1da177e4
LT
930{
931 struct fileSetDesc *fset;
932
933 fset = (struct fileSetDesc *)bh->b_data;
934
935 *root = lelb_to_cpu(fset->rootDirectoryICB.extLocation);
936
6c79e987 937 UDF_SB(sb)->s_serial_number = le16_to_cpu(fset->descTag.tagSerialNum);
1da177e4 938
cb00ea35
CG
939 udf_debug("Rootdir at block=%d, partition=%d\n",
940 root->logicalBlockNum, root->partitionReferenceNum);
1da177e4
LT
941}
942
883cb9d1
MS
943int udf_compute_nr_groups(struct super_block *sb, u32 partition)
944{
945 struct udf_part_map *map = &UDF_SB(sb)->s_partmaps[partition];
8dee00bb
JL
946 return DIV_ROUND_UP(map->s_partition_len +
947 (sizeof(struct spaceBitmapDesc) << 3),
948 sb->s_blocksize * 8);
883cb9d1
MS
949}
950
66e1da3f
MS
951static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
952{
66e1da3f
MS
953 struct udf_bitmap *bitmap;
954 int nr_groups;
955 int size;
956
883cb9d1 957 nr_groups = udf_compute_nr_groups(sb, index);
66e1da3f
MS
958 size = sizeof(struct udf_bitmap) +
959 (sizeof(struct buffer_head *) * nr_groups);
960
961 if (size <= PAGE_SIZE)
ed2ae6f6 962 bitmap = kzalloc(size, GFP_KERNEL);
66e1da3f 963 else
ed2ae6f6 964 bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
66e1da3f
MS
965
966 if (bitmap == NULL) {
8e24eea7 967 udf_error(sb, __func__,
66e1da3f
MS
968 "Unable to allocate space for bitmap "
969 "and %d buffer_head pointers", nr_groups);
970 return NULL;
971 }
972
66e1da3f
MS
973 bitmap->s_block_bitmap = (struct buffer_head **)(bitmap + 1);
974 bitmap->s_nr_groups = nr_groups;
975 return bitmap;
976}
977
3fb38dfa
JK
978static int udf_fill_partdesc_info(struct super_block *sb,
979 struct partitionDesc *p, int p_index)
1da177e4 980{
6c79e987 981 struct udf_part_map *map;
165923fa 982 struct udf_sb_info *sbi = UDF_SB(sb);
3fb38dfa 983 struct partitionHeaderDesc *phd;
165923fa 984
3fb38dfa 985 map = &sbi->s_partmaps[p_index];
165923fa
MS
986
987 map->s_partition_len = le32_to_cpu(p->partitionLength); /* blocks */
988 map->s_partition_root = le32_to_cpu(p->partitionStartingLocation);
989
990 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_READ_ONLY))
991 map->s_partition_flags |= UDF_PART_FLAG_READ_ONLY;
992 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_WRITE_ONCE))
993 map->s_partition_flags |= UDF_PART_FLAG_WRITE_ONCE;
994 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_REWRITABLE))
995 map->s_partition_flags |= UDF_PART_FLAG_REWRITABLE;
996 if (p->accessType == cpu_to_le32(PD_ACCESS_TYPE_OVERWRITABLE))
997 map->s_partition_flags |= UDF_PART_FLAG_OVERWRITABLE;
998
706047a7
SM
999 udf_debug("Partition (%d type %x) starts at physical %d, "
1000 "block length %d\n", p_index,
165923fa
MS
1001 map->s_partition_type, map->s_partition_root,
1002 map->s_partition_len);
1003
1004 if (strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR02) &&
1005 strcmp(p->partitionContents.ident, PD_PARTITION_CONTENTS_NSR03))
3fb38dfa 1006 return 0;
165923fa
MS
1007
1008 phd = (struct partitionHeaderDesc *)p->partitionContentsUse;
1009 if (phd->unallocSpaceTable.extLength) {
5ca4e4be 1010 struct kernel_lb_addr loc = {
165923fa
MS
1011 .logicalBlockNum = le32_to_cpu(
1012 phd->unallocSpaceTable.extPosition),
3fb38dfa 1013 .partitionReferenceNum = p_index,
165923fa
MS
1014 };
1015
97e961fd 1016 map->s_uspace.s_table = udf_iget(sb, &loc);
165923fa
MS
1017 if (!map->s_uspace.s_table) {
1018 udf_debug("cannot load unallocSpaceTable (part %d)\n",
3fb38dfa
JK
1019 p_index);
1020 return 1;
165923fa
MS
1021 }
1022 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE;
1023 udf_debug("unallocSpaceTable (part %d) @ %ld\n",
3fb38dfa 1024 p_index, map->s_uspace.s_table->i_ino);
165923fa
MS
1025 }
1026
1027 if (phd->unallocSpaceBitmap.extLength) {
3fb38dfa
JK
1028 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1029 if (!bitmap)
1030 return 1;
165923fa 1031 map->s_uspace.s_bitmap = bitmap;
2e0838fd 1032 bitmap->s_extLength = le32_to_cpu(
165923fa 1033 phd->unallocSpaceBitmap.extLength);
2e0838fd 1034 bitmap->s_extPosition = le32_to_cpu(
165923fa 1035 phd->unallocSpaceBitmap.extPosition);
2e0838fd 1036 map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_BITMAP;
3fb38dfa 1037 udf_debug("unallocSpaceBitmap (part %d) @ %d\n", p_index,
2e0838fd 1038 bitmap->s_extPosition);
165923fa
MS
1039 }
1040
1041 if (phd->partitionIntegrityTable.extLength)
3fb38dfa 1042 udf_debug("partitionIntegrityTable (part %d)\n", p_index);
165923fa
MS
1043
1044 if (phd->freedSpaceTable.extLength) {
5ca4e4be 1045 struct kernel_lb_addr loc = {
165923fa
MS
1046 .logicalBlockNum = le32_to_cpu(
1047 phd->freedSpaceTable.extPosition),
3fb38dfa 1048 .partitionReferenceNum = p_index,
165923fa
MS
1049 };
1050
97e961fd 1051 map->s_fspace.s_table = udf_iget(sb, &loc);
165923fa 1052 if (!map->s_fspace.s_table) {
3fb38dfa
JK
1053 udf_debug("cannot load freedSpaceTable (part %d)\n",
1054 p_index);
1055 return 1;
165923fa
MS
1056 }
1057
1058 map->s_partition_flags |= UDF_PART_FLAG_FREED_TABLE;
1059 udf_debug("freedSpaceTable (part %d) @ %ld\n",
3fb38dfa 1060 p_index, map->s_fspace.s_table->i_ino);
165923fa
MS
1061 }
1062
1063 if (phd->freedSpaceBitmap.extLength) {
3fb38dfa
JK
1064 struct udf_bitmap *bitmap = udf_sb_alloc_bitmap(sb, p_index);
1065 if (!bitmap)
1066 return 1;
165923fa 1067 map->s_fspace.s_bitmap = bitmap;
2e0838fd 1068 bitmap->s_extLength = le32_to_cpu(
165923fa 1069 phd->freedSpaceBitmap.extLength);
2e0838fd 1070 bitmap->s_extPosition = le32_to_cpu(
165923fa 1071 phd->freedSpaceBitmap.extPosition);
2e0838fd 1072 map->s_partition_flags |= UDF_PART_FLAG_FREED_BITMAP;
3fb38dfa 1073 udf_debug("freedSpaceBitmap (part %d) @ %d\n", p_index,
2e0838fd 1074 bitmap->s_extPosition);
165923fa 1075 }
3fb38dfa
JK
1076 return 0;
1077}
1078
e971b0b9
JK
1079static void udf_find_vat_block(struct super_block *sb, int p_index,
1080 int type1_index, sector_t start_block)
38b74a53
JK
1081{
1082 struct udf_sb_info *sbi = UDF_SB(sb);
1083 struct udf_part_map *map = &sbi->s_partmaps[p_index];
e971b0b9 1084 sector_t vat_block;
5ca4e4be 1085 struct kernel_lb_addr ino;
e971b0b9
JK
1086
1087 /*
1088 * VAT file entry is in the last recorded block. Some broken disks have
1089 * it a few blocks before so try a bit harder...
1090 */
1091 ino.partitionReferenceNum = type1_index;
1092 for (vat_block = start_block;
1093 vat_block >= map->s_partition_root &&
1094 vat_block >= start_block - 3 &&
1095 !sbi->s_vat_inode; vat_block--) {
1096 ino.logicalBlockNum = vat_block - map->s_partition_root;
1097 sbi->s_vat_inode = udf_iget(sb, &ino);
1098 }
1099}
1100
1101static int udf_load_vat(struct super_block *sb, int p_index, int type1_index)
1102{
1103 struct udf_sb_info *sbi = UDF_SB(sb);
1104 struct udf_part_map *map = &sbi->s_partmaps[p_index];
fa5e0815
JK
1105 struct buffer_head *bh = NULL;
1106 struct udf_inode_info *vati;
1107 uint32_t pos;
1108 struct virtualAllocationTable20 *vat20;
4bf17af0 1109 sector_t blocks = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
38b74a53 1110
e971b0b9 1111 udf_find_vat_block(sb, p_index, type1_index, sbi->s_last_block);
4bf17af0
JK
1112 if (!sbi->s_vat_inode &&
1113 sbi->s_last_block != blocks - 1) {
1114 printk(KERN_NOTICE "UDF-fs: Failed to read VAT inode from the"
1115 " last recorded block (%lu), retrying with the last "
1116 "block of the device (%lu).\n",
1117 (unsigned long)sbi->s_last_block,
1118 (unsigned long)blocks - 1);
e971b0b9 1119 udf_find_vat_block(sb, p_index, type1_index, blocks - 1);
4bf17af0 1120 }
38b74a53
JK
1121 if (!sbi->s_vat_inode)
1122 return 1;
1123
1124 if (map->s_partition_type == UDF_VIRTUAL_MAP15) {
47c9358a 1125 map->s_type_specific.s_virtual.s_start_offset = 0;
38b74a53
JK
1126 map->s_type_specific.s_virtual.s_num_entries =
1127 (sbi->s_vat_inode->i_size - 36) >> 2;
1128 } else if (map->s_partition_type == UDF_VIRTUAL_MAP20) {
fa5e0815
JK
1129 vati = UDF_I(sbi->s_vat_inode);
1130 if (vati->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
1131 pos = udf_block_map(sbi->s_vat_inode, 0);
1132 bh = sb_bread(sb, pos);
1133 if (!bh)
1134 return 1;
1135 vat20 = (struct virtualAllocationTable20 *)bh->b_data;
1136 } else {
1137 vat20 = (struct virtualAllocationTable20 *)
1138 vati->i_ext.i_data;
1139 }
38b74a53 1140
38b74a53 1141 map->s_type_specific.s_virtual.s_start_offset =
47c9358a 1142 le16_to_cpu(vat20->lengthHeader);
38b74a53
JK
1143 map->s_type_specific.s_virtual.s_num_entries =
1144 (sbi->s_vat_inode->i_size -
1145 map->s_type_specific.s_virtual.
1146 s_start_offset) >> 2;
1147 brelse(bh);
1148 }
1149 return 0;
1150}
1151
3fb38dfa
JK
1152static int udf_load_partdesc(struct super_block *sb, sector_t block)
1153{
1154 struct buffer_head *bh;
1155 struct partitionDesc *p;
1156 struct udf_part_map *map;
1157 struct udf_sb_info *sbi = UDF_SB(sb);
38b74a53 1158 int i, type1_idx;
3fb38dfa
JK
1159 uint16_t partitionNumber;
1160 uint16_t ident;
1161 int ret = 0;
1162
1163 bh = udf_read_tagged(sb, block, block, &ident);
1164 if (!bh)
1165 return 1;
1166 if (ident != TAG_IDENT_PD)
1167 goto out_bh;
1168
1169 p = (struct partitionDesc *)bh->b_data;
1170 partitionNumber = le16_to_cpu(p->partitionNumber);
38b74a53 1171
bfb257a5 1172 /* First scan for TYPE1, SPARABLE and METADATA partitions */
3fb38dfa
JK
1173 for (i = 0; i < sbi->s_partitions; i++) {
1174 map = &sbi->s_partmaps[i];
1175 udf_debug("Searching map: (%d == %d)\n",
1176 map->s_partition_num, partitionNumber);
38b74a53
JK
1177 if (map->s_partition_num == partitionNumber &&
1178 (map->s_partition_type == UDF_TYPE1_MAP15 ||
1179 map->s_partition_type == UDF_SPARABLE_MAP15))
3fb38dfa
JK
1180 break;
1181 }
1182
38b74a53 1183 if (i >= sbi->s_partitions) {
3fb38dfa
JK
1184 udf_debug("Partition (%d) not found in partition map\n",
1185 partitionNumber);
1186 goto out_bh;
1187 }
165923fa 1188
3fb38dfa 1189 ret = udf_fill_partdesc_info(sb, p, i);
38b74a53
JK
1190
1191 /*
bfb257a5
JK
1192 * Now rescan for VIRTUAL or METADATA partitions when SPARABLE and
1193 * PHYSICAL partitions are already set up
38b74a53
JK
1194 */
1195 type1_idx = i;
1196 for (i = 0; i < sbi->s_partitions; i++) {
1197 map = &sbi->s_partmaps[i];
1198
1199 if (map->s_partition_num == partitionNumber &&
1200 (map->s_partition_type == UDF_VIRTUAL_MAP15 ||
bfb257a5
JK
1201 map->s_partition_type == UDF_VIRTUAL_MAP20 ||
1202 map->s_partition_type == UDF_METADATA_MAP25))
38b74a53
JK
1203 break;
1204 }
1205
1206 if (i >= sbi->s_partitions)
1207 goto out_bh;
1208
1209 ret = udf_fill_partdesc_info(sb, p, i);
1210 if (ret)
1211 goto out_bh;
1212
bfb257a5
JK
1213 if (map->s_partition_type == UDF_METADATA_MAP25) {
1214 ret = udf_load_metadata_files(sb, i);
1215 if (ret) {
1216 printk(KERN_ERR "UDF-fs: error loading MetaData "
1217 "partition map %d\n", i);
1218 goto out_bh;
1219 }
1220 } else {
1221 ret = udf_load_vat(sb, i, type1_idx);
1222 if (ret)
1223 goto out_bh;
1224 /*
1225 * Mark filesystem read-only if we have a partition with
1226 * virtual map since we don't handle writing to it (we
1227 * overwrite blocks instead of relocating them).
1228 */
1229 sb->s_flags |= MS_RDONLY;
1230 printk(KERN_NOTICE "UDF-fs: Filesystem marked read-only "
1231 "because writing to pseudooverwrite partition is "
1232 "not implemented.\n");
1233 }
c0eb31ed 1234out_bh:
2e0838fd 1235 /* In case loading failed, we handle cleanup in udf_fill_super */
c0eb31ed
JK
1236 brelse(bh);
1237 return ret;
1da177e4
LT
1238}
1239
c0eb31ed 1240static int udf_load_logicalvol(struct super_block *sb, sector_t block,
5ca4e4be 1241 struct kernel_lb_addr *fileset)
1da177e4
LT
1242{
1243 struct logicalVolDesc *lvd;
1244 int i, j, offset;
1245 uint8_t type;
6c79e987 1246 struct udf_sb_info *sbi = UDF_SB(sb);
4b11111a 1247 struct genericPartitionMap *gpm;
c0eb31ed
JK
1248 uint16_t ident;
1249 struct buffer_head *bh;
1250 int ret = 0;
1da177e4 1251
c0eb31ed
JK
1252 bh = udf_read_tagged(sb, block, block, &ident);
1253 if (!bh)
1254 return 1;
1255 BUG_ON(ident != TAG_IDENT_LVD);
1da177e4
LT
1256 lvd = (struct logicalVolDesc *)bh->b_data;
1257
dc5d39be 1258 i = udf_sb_alloc_partition_maps(sb, le32_to_cpu(lvd->numPartitionMaps));
c0eb31ed
JK
1259 if (i != 0) {
1260 ret = i;
1261 goto out_bh;
1262 }
1da177e4 1263
cb00ea35 1264 for (i = 0, offset = 0;
6c79e987 1265 i < sbi->s_partitions && offset < le32_to_cpu(lvd->mapTableLength);
4b11111a
MS
1266 i++, offset += gpm->partitionMapLength) {
1267 struct udf_part_map *map = &sbi->s_partmaps[i];
1268 gpm = (struct genericPartitionMap *)
1269 &(lvd->partitionMaps[offset]);
1270 type = gpm->partitionMapType;
cb00ea35 1271 if (type == 1) {
4b11111a
MS
1272 struct genericPartitionMap1 *gpm1 =
1273 (struct genericPartitionMap1 *)gpm;
6c79e987
MS
1274 map->s_partition_type = UDF_TYPE1_MAP15;
1275 map->s_volumeseqnum = le16_to_cpu(gpm1->volSeqNum);
1276 map->s_partition_num = le16_to_cpu(gpm1->partitionNum);
1277 map->s_partition_func = NULL;
cb00ea35 1278 } else if (type == 2) {
4b11111a
MS
1279 struct udfPartitionMap2 *upm2 =
1280 (struct udfPartitionMap2 *)gpm;
1281 if (!strncmp(upm2->partIdent.ident, UDF_ID_VIRTUAL,
1282 strlen(UDF_ID_VIRTUAL))) {
1283 u16 suf =
1284 le16_to_cpu(((__le16 *)upm2->partIdent.
1285 identSuffix)[0]);
c82a1275 1286 if (suf < 0x0200) {
4b11111a
MS
1287 map->s_partition_type =
1288 UDF_VIRTUAL_MAP15;
1289 map->s_partition_func =
1290 udf_get_pblock_virt15;
c82a1275 1291 } else {
4b11111a
MS
1292 map->s_partition_type =
1293 UDF_VIRTUAL_MAP20;
1294 map->s_partition_func =
1295 udf_get_pblock_virt20;
1da177e4 1296 }
4b11111a
MS
1297 } else if (!strncmp(upm2->partIdent.ident,
1298 UDF_ID_SPARABLE,
1299 strlen(UDF_ID_SPARABLE))) {
1da177e4 1300 uint32_t loc;
1da177e4 1301 struct sparingTable *st;
4b11111a
MS
1302 struct sparablePartitionMap *spm =
1303 (struct sparablePartitionMap *)gpm;
28de7948 1304
6c79e987 1305 map->s_partition_type = UDF_SPARABLE_MAP15;
4b11111a
MS
1306 map->s_type_specific.s_sparing.s_packet_len =
1307 le16_to_cpu(spm->packetLength);
cb00ea35 1308 for (j = 0; j < spm->numSparingTables; j++) {
4b11111a
MS
1309 struct buffer_head *bh2;
1310
1311 loc = le32_to_cpu(
1312 spm->locSparingTable[j]);
1313 bh2 = udf_read_tagged(sb, loc, loc,
1314 &ident);
1315 map->s_type_specific.s_sparing.
1316 s_spar_map[j] = bh2;
1317
165923fa
MS
1318 if (bh2 == NULL)
1319 continue;
1320
1321 st = (struct sparingTable *)bh2->b_data;
1322 if (ident != 0 || strncmp(
1323 st->sparingIdent.ident,
1324 UDF_ID_SPARING,
1325 strlen(UDF_ID_SPARING))) {
1326 brelse(bh2);
1327 map->s_type_specific.s_sparing.
1328 s_spar_map[j] = NULL;
1da177e4
LT
1329 }
1330 }
6c79e987 1331 map->s_partition_func = udf_get_pblock_spar15;
bfb257a5
JK
1332 } else if (!strncmp(upm2->partIdent.ident,
1333 UDF_ID_METADATA,
1334 strlen(UDF_ID_METADATA))) {
1335 struct udf_meta_data *mdata =
1336 &map->s_type_specific.s_metadata;
1337 struct metadataPartitionMap *mdm =
1338 (struct metadataPartitionMap *)
1339 &(lvd->partitionMaps[offset]);
1340 udf_debug("Parsing Logical vol part %d "
1341 "type %d id=%s\n", i, type,
1342 UDF_ID_METADATA);
1343
1344 map->s_partition_type = UDF_METADATA_MAP25;
1345 map->s_partition_func = udf_get_pblock_meta25;
1346
1347 mdata->s_meta_file_loc =
1348 le32_to_cpu(mdm->metadataFileLoc);
1349 mdata->s_mirror_file_loc =
1350 le32_to_cpu(mdm->metadataMirrorFileLoc);
1351 mdata->s_bitmap_file_loc =
1352 le32_to_cpu(mdm->metadataBitmapFileLoc);
1353 mdata->s_alloc_unit_size =
1354 le32_to_cpu(mdm->allocUnitSize);
1355 mdata->s_align_unit_size =
1356 le16_to_cpu(mdm->alignUnitSize);
1357 mdata->s_dup_md_flag =
1358 mdm->flags & 0x01;
1359
1360 udf_debug("Metadata Ident suffix=0x%x\n",
1361 (le16_to_cpu(
1362 ((__le16 *)
1363 mdm->partIdent.identSuffix)[0])));
1364 udf_debug("Metadata part num=%d\n",
1365 le16_to_cpu(mdm->partitionNum));
1366 udf_debug("Metadata part alloc unit size=%d\n",
1367 le32_to_cpu(mdm->allocUnitSize));
1368 udf_debug("Metadata file loc=%d\n",
1369 le32_to_cpu(mdm->metadataFileLoc));
1370 udf_debug("Mirror file loc=%d\n",
1371 le32_to_cpu(mdm->metadataMirrorFileLoc));
1372 udf_debug("Bitmap file loc=%d\n",
1373 le32_to_cpu(mdm->metadataBitmapFileLoc));
1374 udf_debug("Duplicate Flag: %d %d\n",
1375 mdata->s_dup_md_flag, mdm->flags);
cb00ea35 1376 } else {
3a71fc5d
MS
1377 udf_debug("Unknown ident: %s\n",
1378 upm2->partIdent.ident);
1da177e4
LT
1379 continue;
1380 }
6c79e987
MS
1381 map->s_volumeseqnum = le16_to_cpu(upm2->volSeqNum);
1382 map->s_partition_num = le16_to_cpu(upm2->partitionNum);
1da177e4
LT
1383 }
1384 udf_debug("Partition (%d:%d) type %d on volume %d\n",
6c79e987
MS
1385 i, map->s_partition_num, type,
1386 map->s_volumeseqnum);
1da177e4
LT
1387 }
1388
cb00ea35 1389 if (fileset) {
5ca4e4be 1390 struct long_ad *la = (struct long_ad *)&(lvd->logicalVolContentsUse[0]);
1da177e4
LT
1391
1392 *fileset = lelb_to_cpu(la->extLocation);
3a71fc5d
MS
1393 udf_debug("FileSet found in LogicalVolDesc at block=%d, "
1394 "partition=%d\n", fileset->logicalBlockNum,
28de7948 1395 fileset->partitionReferenceNum);
1da177e4
LT
1396 }
1397 if (lvd->integritySeqExt.extLength)
1398 udf_load_logicalvolint(sb, leea_to_cpu(lvd->integritySeqExt));
28de7948 1399
c0eb31ed
JK
1400out_bh:
1401 brelse(bh);
1402 return ret;
1da177e4
LT
1403}
1404
1405/*
1406 * udf_load_logicalvolint
1407 *
1408 */
5ca4e4be 1409static void udf_load_logicalvolint(struct super_block *sb, struct kernel_extent_ad loc)
1da177e4
LT
1410{
1411 struct buffer_head *bh = NULL;
1412 uint16_t ident;
6c79e987
MS
1413 struct udf_sb_info *sbi = UDF_SB(sb);
1414 struct logicalVolIntegrityDesc *lvid;
1da177e4
LT
1415
1416 while (loc.extLength > 0 &&
cb00ea35
CG
1417 (bh = udf_read_tagged(sb, loc.extLocation,
1418 loc.extLocation, &ident)) &&
1419 ident == TAG_IDENT_LVID) {
6c79e987
MS
1420 sbi->s_lvid_bh = bh;
1421 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
cb00ea35 1422
6c79e987 1423 if (lvid->nextIntegrityExt.extLength)
3a71fc5d 1424 udf_load_logicalvolint(sb,
6c79e987 1425 leea_to_cpu(lvid->nextIntegrityExt));
cb00ea35 1426
6c79e987 1427 if (sbi->s_lvid_bh != bh)
3bf25cb4 1428 brelse(bh);
1da177e4 1429 loc.extLength -= sb->s_blocksize;
cb00ea35 1430 loc.extLocation++;
1da177e4 1431 }
6c79e987 1432 if (sbi->s_lvid_bh != bh)
3bf25cb4 1433 brelse(bh);
1da177e4
LT
1434}
1435
1436/*
1437 * udf_process_sequence
1438 *
1439 * PURPOSE
1440 * Process a main/reserve volume descriptor sequence.
1441 *
1442 * PRE-CONDITIONS
1443 * sb Pointer to _locked_ superblock.
1444 * block First block of first extent of the sequence.
1445 * lastblock Lastblock of first extent of the sequence.
1446 *
1447 * HISTORY
1448 * July 1, 1997 - Andrew E. Mileski
1449 * Written, tested, and released.
1450 */
200a3592 1451static noinline int udf_process_sequence(struct super_block *sb, long block,
5ca4e4be 1452 long lastblock, struct kernel_lb_addr *fileset)
1da177e4
LT
1453{
1454 struct buffer_head *bh = NULL;
1455 struct udf_vds_record vds[VDS_POS_LENGTH];
4b11111a 1456 struct udf_vds_record *curr;
1da177e4
LT
1457 struct generic_desc *gd;
1458 struct volDescPtr *vdp;
cb00ea35 1459 int done = 0;
1da177e4
LT
1460 uint32_t vdsn;
1461 uint16_t ident;
1462 long next_s = 0, next_e = 0;
1463
1464 memset(vds, 0, sizeof(struct udf_vds_record) * VDS_POS_LENGTH);
1465
c0eb31ed
JK
1466 /*
1467 * Read the main descriptor sequence and find which descriptors
1468 * are in it.
1469 */
cb00ea35 1470 for (; (!done && block <= lastblock); block++) {
1da177e4
LT
1471
1472 bh = udf_read_tagged(sb, block, block, &ident);
c0eb31ed
JK
1473 if (!bh) {
1474 printk(KERN_ERR "udf: Block %Lu of volume descriptor "
1475 "sequence is corrupted or we could not read "
1476 "it.\n", (unsigned long long)block);
1477 return 1;
1478 }
1da177e4
LT
1479
1480 /* Process each descriptor (ISO 13346 3/8.3-8.4) */
1481 gd = (struct generic_desc *)bh->b_data;
1482 vdsn = le32_to_cpu(gd->volDescSeqNum);
cb00ea35 1483 switch (ident) {
28de7948 1484 case TAG_IDENT_PVD: /* ISO 13346 3/10.1 */
4b11111a
MS
1485 curr = &vds[VDS_POS_PRIMARY_VOL_DESC];
1486 if (vdsn >= curr->volDescSeqNum) {
1487 curr->volDescSeqNum = vdsn;
1488 curr->block = block;
cb00ea35
CG
1489 }
1490 break;
28de7948 1491 case TAG_IDENT_VDP: /* ISO 13346 3/10.3 */
4b11111a
MS
1492 curr = &vds[VDS_POS_VOL_DESC_PTR];
1493 if (vdsn >= curr->volDescSeqNum) {
1494 curr->volDescSeqNum = vdsn;
1495 curr->block = block;
cb00ea35
CG
1496
1497 vdp = (struct volDescPtr *)bh->b_data;
4b11111a
MS
1498 next_s = le32_to_cpu(
1499 vdp->nextVolDescSeqExt.extLocation);
1500 next_e = le32_to_cpu(
1501 vdp->nextVolDescSeqExt.extLength);
cb00ea35
CG
1502 next_e = next_e >> sb->s_blocksize_bits;
1503 next_e += next_s;
1504 }
1505 break;
28de7948 1506 case TAG_IDENT_IUVD: /* ISO 13346 3/10.4 */
4b11111a
MS
1507 curr = &vds[VDS_POS_IMP_USE_VOL_DESC];
1508 if (vdsn >= curr->volDescSeqNum) {
1509 curr->volDescSeqNum = vdsn;
1510 curr->block = block;
cb00ea35
CG
1511 }
1512 break;
28de7948 1513 case TAG_IDENT_PD: /* ISO 13346 3/10.5 */
4b11111a
MS
1514 curr = &vds[VDS_POS_PARTITION_DESC];
1515 if (!curr->block)
1516 curr->block = block;
cb00ea35 1517 break;
28de7948 1518 case TAG_IDENT_LVD: /* ISO 13346 3/10.6 */
4b11111a
MS
1519 curr = &vds[VDS_POS_LOGICAL_VOL_DESC];
1520 if (vdsn >= curr->volDescSeqNum) {
1521 curr->volDescSeqNum = vdsn;
1522 curr->block = block;
cb00ea35
CG
1523 }
1524 break;
28de7948 1525 case TAG_IDENT_USD: /* ISO 13346 3/10.8 */
4b11111a
MS
1526 curr = &vds[VDS_POS_UNALLOC_SPACE_DESC];
1527 if (vdsn >= curr->volDescSeqNum) {
1528 curr->volDescSeqNum = vdsn;
1529 curr->block = block;
cb00ea35
CG
1530 }
1531 break;
28de7948 1532 case TAG_IDENT_TD: /* ISO 13346 3/10.9 */
cb00ea35
CG
1533 vds[VDS_POS_TERMINATING_DESC].block = block;
1534 if (next_e) {
1535 block = next_s;
1536 lastblock = next_e;
1537 next_s = next_e = 0;
4b11111a 1538 } else
cb00ea35
CG
1539 done = 1;
1540 break;
1da177e4 1541 }
3bf25cb4 1542 brelse(bh);
1da177e4 1543 }
c0eb31ed
JK
1544 /*
1545 * Now read interesting descriptors again and process them
1546 * in a suitable order
1547 */
1548 if (!vds[VDS_POS_PRIMARY_VOL_DESC].block) {
1549 printk(KERN_ERR "udf: Primary Volume Descriptor not found!\n");
1550 return 1;
1551 }
1552 if (udf_load_pvoldesc(sb, vds[VDS_POS_PRIMARY_VOL_DESC].block))
1553 return 1;
165923fa 1554
c0eb31ed
JK
1555 if (vds[VDS_POS_LOGICAL_VOL_DESC].block && udf_load_logicalvol(sb,
1556 vds[VDS_POS_LOGICAL_VOL_DESC].block, fileset))
1557 return 1;
165923fa 1558
c0eb31ed
JK
1559 if (vds[VDS_POS_PARTITION_DESC].block) {
1560 /*
1561 * We rescan the whole descriptor sequence to find
1562 * partition descriptor blocks and process them.
1563 */
1564 for (block = vds[VDS_POS_PARTITION_DESC].block;
1565 block < vds[VDS_POS_TERMINATING_DESC].block;
1566 block++)
1567 if (udf_load_partdesc(sb, block))
165923fa 1568 return 1;
1da177e4
LT
1569 }
1570
1571 return 0;
1572}
1573
40346005
JK
1574static int udf_load_sequence(struct super_block *sb, struct buffer_head *bh,
1575 struct kernel_lb_addr *fileset)
1da177e4 1576{
40346005
JK
1577 struct anchorVolDescPtr *anchor;
1578 long main_s, main_e, reserve_s, reserve_e;
1da177e4 1579
40346005
JK
1580 anchor = (struct anchorVolDescPtr *)bh->b_data;
1581
1582 /* Locate the main sequence */
1583 main_s = le32_to_cpu(anchor->mainVolDescSeqExt.extLocation);
1584 main_e = le32_to_cpu(anchor->mainVolDescSeqExt.extLength);
1585 main_e = main_e >> sb->s_blocksize_bits;
1586 main_e += main_s;
1587
1588 /* Locate the reserve sequence */
1589 reserve_s = le32_to_cpu(anchor->reserveVolDescSeqExt.extLocation);
1590 reserve_e = le32_to_cpu(anchor->reserveVolDescSeqExt.extLength);
1591 reserve_e = reserve_e >> sb->s_blocksize_bits;
1592 reserve_e += reserve_s;
1593
1594 /* Process the main & reserve sequences */
1595 /* responsible for finding the PartitionDesc(s) */
1596 if (!udf_process_sequence(sb, main_s, main_e, fileset))
1597 return 1;
1598 return !udf_process_sequence(sb, reserve_s, reserve_e, fileset);
1da177e4
LT
1599}
1600
40346005
JK
1601/*
1602 * Check whether there is an anchor block in the given block and
1603 * load Volume Descriptor Sequence if so.
1604 */
1605static int udf_check_anchor_block(struct super_block *sb, sector_t block,
1606 struct kernel_lb_addr *fileset)
1197e4df 1607{
40346005
JK
1608 struct buffer_head *bh;
1609 uint16_t ident;
1610 int ret;
1197e4df 1611
40346005
JK
1612 if (UDF_QUERY_FLAG(sb, UDF_FLAG_VARCONV) &&
1613 udf_fixed_to_variable(block) >=
1614 sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits)
1197e4df 1615 return 0;
40346005
JK
1616
1617 bh = udf_read_tagged(sb, block, block, &ident);
1618 if (!bh)
1197e4df 1619 return 0;
40346005
JK
1620 if (ident != TAG_IDENT_AVDP) {
1621 brelse(bh);
1197e4df
CL
1622 return 0;
1623 }
40346005
JK
1624 ret = udf_load_sequence(sb, bh, fileset);
1625 brelse(bh);
1626 return ret;
1197e4df
CL
1627}
1628
40346005
JK
1629/* Search for an anchor volume descriptor pointer */
1630static sector_t udf_scan_anchors(struct super_block *sb, sector_t lastblock,
1631 struct kernel_lb_addr *fileset)
1da177e4 1632{
40346005 1633 sector_t last[6];
38b74a53 1634 int i;
40346005
JK
1635 struct udf_sb_info *sbi = UDF_SB(sb);
1636 int last_count = 0;
1da177e4 1637
40346005
JK
1638 /* First try user provided anchor */
1639 if (sbi->s_anchor) {
1640 if (udf_check_anchor_block(sb, sbi->s_anchor, fileset))
1641 return lastblock;
1642 }
1643 /*
1644 * according to spec, anchor is in either:
1645 * block 256
1646 * lastblock-256
1647 * lastblock
1648 * however, if the disc isn't closed, it could be 512.
1649 */
1650 if (udf_check_anchor_block(sb, sbi->s_session + 256, fileset))
1651 return lastblock;
1652 /*
1653 * The trouble is which block is the last one. Drives often misreport
1654 * this so we try various possibilities.
1655 */
1656 last[last_count++] = lastblock;
1657 if (lastblock >= 1)
1658 last[last_count++] = lastblock - 1;
1659 last[last_count++] = lastblock + 1;
1660 if (lastblock >= 2)
1661 last[last_count++] = lastblock - 2;
1662 if (lastblock >= 150)
1663 last[last_count++] = lastblock - 150;
1664 if (lastblock >= 152)
1665 last[last_count++] = lastblock - 152;
1da177e4 1666
40346005
JK
1667 for (i = 0; i < last_count; i++) {
1668 if (last[i] >= sb->s_bdev->bd_inode->i_size >>
1669 sb->s_blocksize_bits)
28f7c4d4 1670 continue;
40346005
JK
1671 if (udf_check_anchor_block(sb, last[i], fileset))
1672 return last[i];
1673 if (last[i] < 256)
28f7c4d4 1674 continue;
40346005
JK
1675 if (udf_check_anchor_block(sb, last[i] - 256, fileset))
1676 return last[i];
1677 }
28f7c4d4 1678
40346005
JK
1679 /* Finally try block 512 in case media is open */
1680 if (udf_check_anchor_block(sb, sbi->s_session + 512, fileset))
1681 return last[0];
1682 return 0;
1683}
28f7c4d4 1684
40346005
JK
1685/*
1686 * Find an anchor volume descriptor and load Volume Descriptor Sequence from
1687 * area specified by it. The function expects sbi->s_lastblock to be the last
1688 * block on the media.
1689 *
1690 * Return 1 if ok, 0 if not found.
1691 *
1692 */
1693static int udf_find_anchor(struct super_block *sb,
1694 struct kernel_lb_addr *fileset)
1695{
1696 sector_t lastblock;
1697 struct udf_sb_info *sbi = UDF_SB(sb);
28f7c4d4 1698
40346005
JK
1699 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1700 if (lastblock)
1701 goto out;
1da177e4 1702
40346005
JK
1703 /* No anchor found? Try VARCONV conversion of block numbers */
1704 UDF_SET_FLAG(sb, UDF_FLAG_VARCONV);
1705 /* Firstly, we try to not convert number of the last block */
1706 lastblock = udf_scan_anchors(sb,
1707 udf_variable_to_fixed(sbi->s_last_block),
1708 fileset);
1709 if (lastblock)
1710 goto out;
1da177e4 1711
40346005
JK
1712 /* Secondly, we try with converted number of the last block */
1713 lastblock = udf_scan_anchors(sb, sbi->s_last_block, fileset);
1714 if (!lastblock) {
1715 /* VARCONV didn't help. Clear it. */
1716 UDF_CLEAR_FLAG(sb, UDF_FLAG_VARCONV);
1717 return 0;
1da177e4 1718 }
40346005
JK
1719out:
1720 sbi->s_last_block = lastblock;
1721 return 1;
1722}
1da177e4 1723
40346005
JK
1724/*
1725 * Check Volume Structure Descriptor, find Anchor block and load Volume
1726 * Descriptor Sequence
1727 */
1728static int udf_load_vrs(struct super_block *sb, struct udf_options *uopt,
1729 int silent, struct kernel_lb_addr *fileset)
1730{
1731 struct udf_sb_info *sbi = UDF_SB(sb);
1732 loff_t nsr_off;
1733
1734 if (!sb_set_blocksize(sb, uopt->blocksize)) {
1735 if (!silent)
1736 printk(KERN_WARNING "UDF-fs: Bad block size\n");
1737 return 0;
1738 }
1739 sbi->s_last_block = uopt->lastblock;
1740 if (!uopt->novrs) {
1741 /* Check that it is NSR02 compliant */
1742 nsr_off = udf_check_vsd(sb);
1743 if (!nsr_off) {
1744 if (!silent)
1745 printk(KERN_WARNING "UDF-fs: No VRS found\n");
1746 return 0;
1747 }
1748 if (nsr_off == -1)
1749 udf_debug("Failed to read byte 32768. Assuming open "
1750 "disc. Skipping validity check\n");
1751 if (!sbi->s_last_block)
1752 sbi->s_last_block = udf_get_last_block(sb);
1753 } else {
1754 udf_debug("Validity check skipped because of novrs option\n");
28f7c4d4 1755 }
1da177e4 1756
40346005
JK
1757 /* Look for anchor block and load Volume Descriptor Sequence */
1758 sbi->s_anchor = uopt->anchor;
1759 if (!udf_find_anchor(sb, fileset)) {
1760 if (!silent)
1761 printk(KERN_WARNING "UDF-fs: No anchor found\n");
1762 return 0;
1763 }
1764 return 1;
1da177e4
LT
1765}
1766
1767static void udf_open_lvid(struct super_block *sb)
1768{
6c79e987
MS
1769 struct udf_sb_info *sbi = UDF_SB(sb);
1770 struct buffer_head *bh = sbi->s_lvid_bh;
165923fa
MS
1771 struct logicalVolIntegrityDesc *lvid;
1772 struct logicalVolIntegrityDescImpUse *lvidiu;
146bca72 1773
165923fa
MS
1774 if (!bh)
1775 return;
949f4a7c
JK
1776
1777 mutex_lock(&sbi->s_alloc_mutex);
165923fa
MS
1778 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1779 lvidiu = udf_sb_lvidiu(sbi);
1780
1781 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1782 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1783 udf_time_to_disk_stamp(&lvid->recordingDateAndTime,
1784 CURRENT_TIME);
146bca72 1785 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_OPEN);
165923fa
MS
1786
1787 lvid->descTag.descCRC = cpu_to_le16(
5ca4e4be 1788 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
f845fced 1789 le16_to_cpu(lvid->descTag.descCRCLength)));
165923fa
MS
1790
1791 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1792 mark_buffer_dirty(bh);
146bca72 1793 sbi->s_lvid_dirty = 0;
949f4a7c 1794 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
1795}
1796
1797static void udf_close_lvid(struct super_block *sb)
1798{
6c79e987
MS
1799 struct udf_sb_info *sbi = UDF_SB(sb);
1800 struct buffer_head *bh = sbi->s_lvid_bh;
1801 struct logicalVolIntegrityDesc *lvid;
165923fa 1802 struct logicalVolIntegrityDescImpUse *lvidiu;
28de7948 1803
6c79e987
MS
1804 if (!bh)
1805 return;
1806
949f4a7c 1807 mutex_lock(&sbi->s_alloc_mutex);
6c79e987 1808 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
165923fa
MS
1809 lvidiu = udf_sb_lvidiu(sbi);
1810 lvidiu->impIdent.identSuffix[0] = UDF_OS_CLASS_UNIX;
1811 lvidiu->impIdent.identSuffix[1] = UDF_OS_ID_LINUX;
1812 udf_time_to_disk_stamp(&lvid->recordingDateAndTime, CURRENT_TIME);
1813 if (UDF_MAX_WRITE_VERSION > le16_to_cpu(lvidiu->maxUDFWriteRev))
1814 lvidiu->maxUDFWriteRev = cpu_to_le16(UDF_MAX_WRITE_VERSION);
1815 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFReadRev))
1816 lvidiu->minUDFReadRev = cpu_to_le16(sbi->s_udfrev);
1817 if (sbi->s_udfrev > le16_to_cpu(lvidiu->minUDFWriteRev))
1818 lvidiu->minUDFWriteRev = cpu_to_le16(sbi->s_udfrev);
1819 lvid->integrityType = cpu_to_le32(LVID_INTEGRITY_TYPE_CLOSE);
1820
1821 lvid->descTag.descCRC = cpu_to_le16(
5ca4e4be 1822 crc_itu_t(0, (char *)lvid + sizeof(struct tag),
f845fced 1823 le16_to_cpu(lvid->descTag.descCRCLength)));
165923fa
MS
1824
1825 lvid->descTag.tagChecksum = udf_tag_checksum(&lvid->descTag);
1826 mark_buffer_dirty(bh);
146bca72 1827 sbi->s_lvid_dirty = 0;
949f4a7c 1828 mutex_unlock(&sbi->s_alloc_mutex);
1da177e4
LT
1829}
1830
d664b6af
JK
1831u64 lvid_get_unique_id(struct super_block *sb)
1832{
1833 struct buffer_head *bh;
1834 struct udf_sb_info *sbi = UDF_SB(sb);
1835 struct logicalVolIntegrityDesc *lvid;
1836 struct logicalVolHeaderDesc *lvhd;
1837 u64 uniqueID;
1838 u64 ret;
1839
1840 bh = sbi->s_lvid_bh;
1841 if (!bh)
1842 return 0;
1843
1844 lvid = (struct logicalVolIntegrityDesc *)bh->b_data;
1845 lvhd = (struct logicalVolHeaderDesc *)lvid->logicalVolContentsUse;
1846
1847 mutex_lock(&sbi->s_alloc_mutex);
1848 ret = uniqueID = le64_to_cpu(lvhd->uniqueID);
1849 if (!(++uniqueID & 0xFFFFFFFF))
1850 uniqueID += 16;
1851 lvhd->uniqueID = cpu_to_le64(uniqueID);
1852 mutex_unlock(&sbi->s_alloc_mutex);
1853 mark_buffer_dirty(bh);
1854
1855 return ret;
1856}
1857
66e1da3f
MS
1858static void udf_sb_free_bitmap(struct udf_bitmap *bitmap)
1859{
1860 int i;
1861 int nr_groups = bitmap->s_nr_groups;
4b11111a
MS
1862 int size = sizeof(struct udf_bitmap) + (sizeof(struct buffer_head *) *
1863 nr_groups);
66e1da3f
MS
1864
1865 for (i = 0; i < nr_groups; i++)
1866 if (bitmap->s_block_bitmap[i])
1867 brelse(bitmap->s_block_bitmap[i]);
1868
1869 if (size <= PAGE_SIZE)
1870 kfree(bitmap);
1871 else
1872 vfree(bitmap);
1873}
1874
2e0838fd
JK
1875static void udf_free_partition(struct udf_part_map *map)
1876{
1877 int i;
bfb257a5 1878 struct udf_meta_data *mdata;
2e0838fd
JK
1879
1880 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE)
1881 iput(map->s_uspace.s_table);
1882 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE)
1883 iput(map->s_fspace.s_table);
1884 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP)
1885 udf_sb_free_bitmap(map->s_uspace.s_bitmap);
1886 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP)
1887 udf_sb_free_bitmap(map->s_fspace.s_bitmap);
1888 if (map->s_partition_type == UDF_SPARABLE_MAP15)
1889 for (i = 0; i < 4; i++)
1890 brelse(map->s_type_specific.s_sparing.s_spar_map[i]);
bfb257a5
JK
1891 else if (map->s_partition_type == UDF_METADATA_MAP25) {
1892 mdata = &map->s_type_specific.s_metadata;
1893 iput(mdata->s_metadata_fe);
1894 mdata->s_metadata_fe = NULL;
1895
1896 iput(mdata->s_mirror_fe);
1897 mdata->s_mirror_fe = NULL;
1898
1899 iput(mdata->s_bitmap_fe);
1900 mdata->s_bitmap_fe = NULL;
1901 }
2e0838fd
JK
1902}
1903
1da177e4
LT
1904static int udf_fill_super(struct super_block *sb, void *options, int silent)
1905{
1906 int i;
40346005 1907 int ret;
cb00ea35 1908 struct inode *inode = NULL;
1da177e4 1909 struct udf_options uopt;
5ca4e4be 1910 struct kernel_lb_addr rootdir, fileset;
1da177e4
LT
1911 struct udf_sb_info *sbi;
1912
db719222
JB
1913 lock_kernel();
1914
1da177e4
LT
1915 uopt.flags = (1 << UDF_FLAG_USE_AD_IN_ICB) | (1 << UDF_FLAG_STRICT);
1916 uopt.uid = -1;
1917 uopt.gid = -1;
1918 uopt.umask = 0;
87bc730c
MS
1919 uopt.fmode = UDF_INVALID_MODE;
1920 uopt.dmode = UDF_INVALID_MODE;
1da177e4 1921
6c79e987 1922 sbi = kzalloc(sizeof(struct udf_sb_info), GFP_KERNEL);
db719222
JB
1923 if (!sbi) {
1924 unlock_kernel();
1da177e4 1925 return -ENOMEM;
db719222 1926 }
28de7948 1927
1da177e4 1928 sb->s_fs_info = sbi;
1da177e4 1929
1e7933de 1930 mutex_init(&sbi->s_alloc_mutex);
1da177e4 1931
6da80894 1932 if (!udf_parse_options((char *)options, &uopt, false))
1da177e4
LT
1933 goto error_out;
1934
1935 if (uopt.flags & (1 << UDF_FLAG_UTF8) &&
cb00ea35 1936 uopt.flags & (1 << UDF_FLAG_NLS_MAP)) {
1da177e4 1937 udf_error(sb, "udf_read_super",
cb00ea35 1938 "utf8 cannot be combined with iocharset\n");
1da177e4
LT
1939 goto error_out;
1940 }
1941#ifdef CONFIG_UDF_NLS
cb00ea35 1942 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) {
1da177e4
LT
1943 uopt.nls_map = load_nls_default();
1944 if (!uopt.nls_map)
1945 uopt.flags &= ~(1 << UDF_FLAG_NLS_MAP);
1946 else
1947 udf_debug("Using default NLS map\n");
1948 }
1949#endif
1950 if (!(uopt.flags & (1 << UDF_FLAG_NLS_MAP)))
1951 uopt.flags |= (1 << UDF_FLAG_UTF8);
1952
1953 fileset.logicalBlockNum = 0xFFFFFFFF;
1954 fileset.partitionReferenceNum = 0xFFFF;
1955
6c79e987
MS
1956 sbi->s_flags = uopt.flags;
1957 sbi->s_uid = uopt.uid;
1958 sbi->s_gid = uopt.gid;
1959 sbi->s_umask = uopt.umask;
7ac9bcd5
MS
1960 sbi->s_fmode = uopt.fmode;
1961 sbi->s_dmode = uopt.dmode;
6c79e987 1962 sbi->s_nls_map = uopt.nls_map;
c03cad24 1963 rwlock_init(&sbi->s_cred_lock);
1da177e4 1964
cb00ea35 1965 if (uopt.session == 0xFFFFFFFF)
6c79e987 1966 sbi->s_session = udf_get_last_session(sb);
1da177e4 1967 else
6c79e987 1968 sbi->s_session = uopt.session;
1da177e4 1969
6c79e987 1970 udf_debug("Multi-session=%d\n", sbi->s_session);
1da177e4 1971
40346005
JK
1972 /* Fill in the rest of the superblock */
1973 sb->s_op = &udf_sb_ops;
1974 sb->s_export_op = &udf_export_ops;
123e9caf 1975
40346005
JK
1976 sb->s_dirt = 0;
1977 sb->s_magic = UDF_SUPER_MAGIC;
1978 sb->s_time_gran = 1000;
1979
1197e4df 1980 if (uopt.flags & (1 << UDF_FLAG_BLOCKSIZE_SET)) {
40346005 1981 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1197e4df 1982 } else {
e1defc4f 1983 uopt.blocksize = bdev_logical_block_size(sb->s_bdev);
40346005
JK
1984 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1985 if (!ret && uopt.blocksize != UDF_DEFAULT_BLOCKSIZE) {
1197e4df
CL
1986 if (!silent)
1987 printk(KERN_NOTICE
1988 "UDF-fs: Rescanning with blocksize "
1989 "%d\n", UDF_DEFAULT_BLOCKSIZE);
1990 uopt.blocksize = UDF_DEFAULT_BLOCKSIZE;
40346005 1991 ret = udf_load_vrs(sb, &uopt, silent, &fileset);
1197e4df 1992 }
1da177e4 1993 }
40346005 1994 if (!ret) {
3a71fc5d 1995 printk(KERN_WARNING "UDF-fs: No partition found (1)\n");
1da177e4
LT
1996 goto error_out;
1997 }
1998
6c79e987 1999 udf_debug("Lastblock=%d\n", sbi->s_last_block);
1da177e4 2000
6c79e987 2001 if (sbi->s_lvid_bh) {
4b11111a
MS
2002 struct logicalVolIntegrityDescImpUse *lvidiu =
2003 udf_sb_lvidiu(sbi);
6c79e987
MS
2004 uint16_t minUDFReadRev = le16_to_cpu(lvidiu->minUDFReadRev);
2005 uint16_t minUDFWriteRev = le16_to_cpu(lvidiu->minUDFWriteRev);
4b11111a
MS
2006 /* uint16_t maxUDFWriteRev =
2007 le16_to_cpu(lvidiu->maxUDFWriteRev); */
1da177e4 2008
cb00ea35 2009 if (minUDFReadRev > UDF_MAX_READ_VERSION) {
4b11111a
MS
2010 printk(KERN_ERR "UDF-fs: minUDFReadRev=%x "
2011 "(max is %x)\n",
6c79e987 2012 le16_to_cpu(lvidiu->minUDFReadRev),
cb00ea35 2013 UDF_MAX_READ_VERSION);
1da177e4 2014 goto error_out;
4b11111a 2015 } else if (minUDFWriteRev > UDF_MAX_WRITE_VERSION)
1da177e4 2016 sb->s_flags |= MS_RDONLY;
1da177e4 2017
6c79e987 2018 sbi->s_udfrev = minUDFWriteRev;
1da177e4
LT
2019
2020 if (minUDFReadRev >= UDF_VERS_USE_EXTENDED_FE)
2021 UDF_SET_FLAG(sb, UDF_FLAG_USE_EXTENDED_FE);
2022 if (minUDFReadRev >= UDF_VERS_USE_STREAMS)
2023 UDF_SET_FLAG(sb, UDF_FLAG_USE_STREAMS);
2024 }
2025
6c79e987 2026 if (!sbi->s_partitions) {
3a71fc5d 2027 printk(KERN_WARNING "UDF-fs: No partition found (2)\n");
1da177e4
LT
2028 goto error_out;
2029 }
2030
4b11111a
MS
2031 if (sbi->s_partmaps[sbi->s_partition].s_partition_flags &
2032 UDF_PART_FLAG_READ_ONLY) {
2033 printk(KERN_NOTICE "UDF-fs: Partition marked readonly; "
2034 "forcing readonly mount\n");
39b3f6d6 2035 sb->s_flags |= MS_RDONLY;
c1a26e7d 2036 }
39b3f6d6 2037
cb00ea35 2038 if (udf_find_fileset(sb, &fileset, &rootdir)) {
3a71fc5d 2039 printk(KERN_WARNING "UDF-fs: No fileset found\n");
1da177e4
LT
2040 goto error_out;
2041 }
2042
cb00ea35 2043 if (!silent) {
5ca4e4be 2044 struct timestamp ts;
56774805 2045 udf_time_to_disk_stamp(&ts, sbi->s_record_time);
a9ca6635 2046 udf_info("UDF: Mounting volume '%s', "
28de7948 2047 "timestamp %04u/%02u/%02u %02u:%02u (%x)\n",
56774805
MS
2048 sbi->s_volume_ident, le16_to_cpu(ts.year), ts.month, ts.day,
2049 ts.hour, ts.minute, le16_to_cpu(ts.typeAndTimezone));
1da177e4
LT
2050 }
2051 if (!(sb->s_flags & MS_RDONLY))
2052 udf_open_lvid(sb);
2053
2054 /* Assign the root inode */
2055 /* assign inodes by physical block number */
2056 /* perhaps it's not extensible enough, but for now ... */
97e961fd 2057 inode = udf_iget(sb, &rootdir);
cb00ea35 2058 if (!inode) {
4b11111a
MS
2059 printk(KERN_ERR "UDF-fs: Error in udf_iget, block=%d, "
2060 "partition=%d\n",
cb00ea35 2061 rootdir.logicalBlockNum, rootdir.partitionReferenceNum);
1da177e4
LT
2062 goto error_out;
2063 }
2064
2065 /* Allocate a dentry for the root inode */
2066 sb->s_root = d_alloc_root(inode);
cb00ea35 2067 if (!sb->s_root) {
3a71fc5d 2068 printk(KERN_ERR "UDF-fs: Couldn't allocate root dentry\n");
1da177e4
LT
2069 iput(inode);
2070 goto error_out;
2071 }
31170b6a 2072 sb->s_maxbytes = MAX_LFS_FILESIZE;
db719222 2073 unlock_kernel();
1da177e4
LT
2074 return 0;
2075
28de7948 2076error_out:
6c79e987
MS
2077 if (sbi->s_vat_inode)
2078 iput(sbi->s_vat_inode);
2e0838fd
JK
2079 if (sbi->s_partitions)
2080 for (i = 0; i < sbi->s_partitions; i++)
2081 udf_free_partition(&sbi->s_partmaps[i]);
1da177e4
LT
2082#ifdef CONFIG_UDF_NLS
2083 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
6c79e987 2084 unload_nls(sbi->s_nls_map);
1da177e4
LT
2085#endif
2086 if (!(sb->s_flags & MS_RDONLY))
2087 udf_close_lvid(sb);
6c79e987
MS
2088 brelse(sbi->s_lvid_bh);
2089
2090 kfree(sbi->s_partmaps);
1da177e4
LT
2091 kfree(sbi);
2092 sb->s_fs_info = NULL;
28de7948 2093
db719222 2094 unlock_kernel();
1da177e4
LT
2095 return -EINVAL;
2096}
2097
b8145a76
AB
2098static void udf_error(struct super_block *sb, const char *function,
2099 const char *fmt, ...)
1da177e4
LT
2100{
2101 va_list args;
2102
cb00ea35 2103 if (!(sb->s_flags & MS_RDONLY)) {
1da177e4
LT
2104 /* mark sb error */
2105 sb->s_dirt = 1;
2106 }
2107 va_start(args, fmt);
4a6e617a 2108 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
1da177e4 2109 va_end(args);
3a71fc5d 2110 printk(KERN_CRIT "UDF-fs error (device %s): %s: %s\n",
28de7948 2111 sb->s_id, function, error_buf);
1da177e4
LT
2112}
2113
2114void udf_warning(struct super_block *sb, const char *function,
cb00ea35 2115 const char *fmt, ...)
1da177e4
LT
2116{
2117 va_list args;
2118
cb00ea35 2119 va_start(args, fmt);
4a6e617a 2120 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
1da177e4
LT
2121 va_end(args);
2122 printk(KERN_WARNING "UDF-fs warning (device %s): %s: %s\n",
cb00ea35 2123 sb->s_id, function, error_buf);
1da177e4
LT
2124}
2125
cb00ea35 2126static void udf_put_super(struct super_block *sb)
1da177e4
LT
2127{
2128 int i;
6c79e987 2129 struct udf_sb_info *sbi;
1da177e4 2130
6c79e987 2131 sbi = UDF_SB(sb);
6cfd0148 2132
6c79e987
MS
2133 if (sbi->s_vat_inode)
2134 iput(sbi->s_vat_inode);
2e0838fd
JK
2135 if (sbi->s_partitions)
2136 for (i = 0; i < sbi->s_partitions; i++)
2137 udf_free_partition(&sbi->s_partmaps[i]);
1da177e4
LT
2138#ifdef CONFIG_UDF_NLS
2139 if (UDF_QUERY_FLAG(sb, UDF_FLAG_NLS_MAP))
6c79e987 2140 unload_nls(sbi->s_nls_map);
1da177e4
LT
2141#endif
2142 if (!(sb->s_flags & MS_RDONLY))
2143 udf_close_lvid(sb);
6c79e987
MS
2144 brelse(sbi->s_lvid_bh);
2145 kfree(sbi->s_partmaps);
1da177e4
LT
2146 kfree(sb->s_fs_info);
2147 sb->s_fs_info = NULL;
2148}
2149
146bca72
JK
2150static int udf_sync_fs(struct super_block *sb, int wait)
2151{
2152 struct udf_sb_info *sbi = UDF_SB(sb);
2153
2154 mutex_lock(&sbi->s_alloc_mutex);
2155 if (sbi->s_lvid_dirty) {
2156 /*
2157 * Blockdevice will be synced later so we don't have to submit
2158 * the buffer for IO
2159 */
2160 mark_buffer_dirty(sbi->s_lvid_bh);
2161 sb->s_dirt = 0;
2162 sbi->s_lvid_dirty = 0;
2163 }
2164 mutex_unlock(&sbi->s_alloc_mutex);
2165
2166 return 0;
2167}
2168
cb00ea35 2169static int udf_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4 2170{
726c3342 2171 struct super_block *sb = dentry->d_sb;
6c79e987
MS
2172 struct udf_sb_info *sbi = UDF_SB(sb);
2173 struct logicalVolIntegrityDescImpUse *lvidiu;
557f5a14 2174 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
6c79e987
MS
2175
2176 if (sbi->s_lvid_bh != NULL)
2177 lvidiu = udf_sb_lvidiu(sbi);
2178 else
2179 lvidiu = NULL;
726c3342 2180
1da177e4
LT
2181 buf->f_type = UDF_SUPER_MAGIC;
2182 buf->f_bsize = sb->s_blocksize;
6c79e987 2183 buf->f_blocks = sbi->s_partmaps[sbi->s_partition].s_partition_len;
1da177e4
LT
2184 buf->f_bfree = udf_count_free(sb);
2185 buf->f_bavail = buf->f_bfree;
6c79e987
MS
2186 buf->f_files = (lvidiu != NULL ? (le32_to_cpu(lvidiu->numFiles) +
2187 le32_to_cpu(lvidiu->numDirs)) : 0)
2188 + buf->f_bfree;
1da177e4 2189 buf->f_ffree = buf->f_bfree;
cb00ea35 2190 buf->f_namelen = UDF_NAME_LEN - 2;
557f5a14
CL
2191 buf->f_fsid.val[0] = (u32)id;
2192 buf->f_fsid.val[1] = (u32)(id >> 32);
1da177e4
LT
2193
2194 return 0;
2195}
2196
4b11111a
MS
2197static unsigned int udf_count_free_bitmap(struct super_block *sb,
2198 struct udf_bitmap *bitmap)
1da177e4
LT
2199{
2200 struct buffer_head *bh = NULL;
2201 unsigned int accum = 0;
2202 int index;
2203 int block = 0, newblock;
5ca4e4be 2204 struct kernel_lb_addr loc;
1da177e4 2205 uint32_t bytes;
1da177e4
LT
2206 uint8_t *ptr;
2207 uint16_t ident;
2208 struct spaceBitmapDesc *bm;
2209
2210 lock_kernel();
2211
2212 loc.logicalBlockNum = bitmap->s_extPosition;
6c79e987 2213 loc.partitionReferenceNum = UDF_SB(sb)->s_partition;
97e961fd 2214 bh = udf_read_ptagged(sb, &loc, 0, &ident);
1da177e4 2215
cb00ea35 2216 if (!bh) {
1da177e4
LT
2217 printk(KERN_ERR "udf: udf_count_free failed\n");
2218 goto out;
cb00ea35 2219 } else if (ident != TAG_IDENT_SBD) {
3bf25cb4 2220 brelse(bh);
1da177e4
LT
2221 printk(KERN_ERR "udf: udf_count_free failed\n");
2222 goto out;
2223 }
2224
2225 bm = (struct spaceBitmapDesc *)bh->b_data;
2226 bytes = le32_to_cpu(bm->numOfBytes);
28de7948
CG
2227 index = sizeof(struct spaceBitmapDesc); /* offset in first block only */
2228 ptr = (uint8_t *)bh->b_data;
1da177e4 2229
cb00ea35 2230 while (bytes > 0) {
01b954a3
MS
2231 u32 cur_bytes = min_t(u32, bytes, sb->s_blocksize - index);
2232 accum += bitmap_weight((const unsigned long *)(ptr + index),
2233 cur_bytes * 8);
2234 bytes -= cur_bytes;
cb00ea35 2235 if (bytes) {
3bf25cb4 2236 brelse(bh);
97e961fd 2237 newblock = udf_get_lb_pblock(sb, &loc, ++block);
1da177e4 2238 bh = udf_tread(sb, newblock);
cb00ea35 2239 if (!bh) {
1da177e4
LT
2240 udf_debug("read failed\n");
2241 goto out;
2242 }
2243 index = 0;
28de7948 2244 ptr = (uint8_t *)bh->b_data;
1da177e4
LT
2245 }
2246 }
3bf25cb4 2247 brelse(bh);
1da177e4 2248
28de7948 2249out:
1da177e4
LT
2250 unlock_kernel();
2251
2252 return accum;
2253}
2254
4b11111a
MS
2255static unsigned int udf_count_free_table(struct super_block *sb,
2256 struct inode *table)
1da177e4
LT
2257{
2258 unsigned int accum = 0;
ff116fc8 2259 uint32_t elen;
5ca4e4be 2260 struct kernel_lb_addr eloc;
1da177e4 2261 int8_t etype;
ff116fc8 2262 struct extent_position epos;
1da177e4
LT
2263
2264 lock_kernel();
2265
c0b34438 2266 epos.block = UDF_I(table)->i_location;
ff116fc8
JK
2267 epos.offset = sizeof(struct unallocSpaceEntry);
2268 epos.bh = NULL;
1da177e4 2269
3a71fc5d 2270 while ((etype = udf_next_aext(table, &epos, &eloc, &elen, 1)) != -1)
1da177e4 2271 accum += (elen >> table->i_sb->s_blocksize_bits);
3a71fc5d 2272
3bf25cb4 2273 brelse(epos.bh);
1da177e4
LT
2274
2275 unlock_kernel();
2276
2277 return accum;
2278}
cb00ea35
CG
2279
2280static unsigned int udf_count_free(struct super_block *sb)
1da177e4
LT
2281{
2282 unsigned int accum = 0;
6c79e987
MS
2283 struct udf_sb_info *sbi;
2284 struct udf_part_map *map;
1da177e4 2285
6c79e987
MS
2286 sbi = UDF_SB(sb);
2287 if (sbi->s_lvid_bh) {
4b11111a
MS
2288 struct logicalVolIntegrityDesc *lvid =
2289 (struct logicalVolIntegrityDesc *)
2290 sbi->s_lvid_bh->b_data;
6c79e987 2291 if (le32_to_cpu(lvid->numOfPartitions) > sbi->s_partition) {
4b11111a
MS
2292 accum = le32_to_cpu(
2293 lvid->freeSpaceTable[sbi->s_partition]);
1da177e4
LT
2294 if (accum == 0xFFFFFFFF)
2295 accum = 0;
2296 }
2297 }
2298
2299 if (accum)
2300 return accum;
2301
6c79e987
MS
2302 map = &sbi->s_partmaps[sbi->s_partition];
2303 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_BITMAP) {
28de7948 2304 accum += udf_count_free_bitmap(sb,
6c79e987 2305 map->s_uspace.s_bitmap);
1da177e4 2306 }
6c79e987 2307 if (map->s_partition_flags & UDF_PART_FLAG_FREED_BITMAP) {
28de7948 2308 accum += udf_count_free_bitmap(sb,
6c79e987 2309 map->s_fspace.s_bitmap);
1da177e4
LT
2310 }
2311 if (accum)
2312 return accum;
2313
6c79e987 2314 if (map->s_partition_flags & UDF_PART_FLAG_UNALLOC_TABLE) {
28de7948 2315 accum += udf_count_free_table(sb,
6c79e987 2316 map->s_uspace.s_table);
1da177e4 2317 }
6c79e987 2318 if (map->s_partition_flags & UDF_PART_FLAG_FREED_TABLE) {
28de7948 2319 accum += udf_count_free_table(sb,
6c79e987 2320 map->s_fspace.s_table);
1da177e4
LT
2321 }
2322
2323 return accum;
2324}