blob: 4fa620543d302db892b59a399b92619632e5aa56 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __LINUX_UDF_SB_H
3#define __LINUX_UDF_SB_H
4
Christoph Hellwig15aebd22008-02-22 12:39:12 +01005#include <linux/mutex.h>
Jan Karaf2a6cc12010-10-20 17:25:59 +02006#include <linux/bitops.h>
Jan Kara2a289002016-04-28 10:40:09 +02007#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Jan Karabfb257a2008-04-08 20:37:21 +02009#define UDF_MAX_READ_VERSION 0x0250
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#define UDF_MAX_WRITE_VERSION 0x0201
11
12#define UDF_FLAG_USE_EXTENDED_FE 0
13#define UDF_VERS_USE_EXTENDED_FE 0x0200
14#define UDF_FLAG_USE_STREAMS 1
15#define UDF_VERS_USE_STREAMS 0x0200
16#define UDF_FLAG_USE_SHORT_AD 2
17#define UDF_FLAG_USE_AD_IN_ICB 3
18#define UDF_FLAG_USE_FILE_CTIME_EA 4
19#define UDF_FLAG_STRICT 5
20#define UDF_FLAG_UNDELETE 6
21#define UDF_FLAG_UNHIDE 7
22#define UDF_FLAG_VARCONV 8
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070023#define UDF_FLAG_UID_FORGET 11 /* save -1 for uid to disk */
Jan Kara70260e42018-02-21 17:27:44 +010024#define UDF_FLAG_GID_FORGET 12
25#define UDF_FLAG_UID_SET 13
26#define UDF_FLAG_GID_SET 14
27#define UDF_FLAG_SESSION_SET 15
28#define UDF_FLAG_LASTBLOCK_SET 16
29#define UDF_FLAG_BLOCKSIZE_SET 17
Jan Karab72e6322018-02-27 18:55:31 +010030#define UDF_FLAG_INCONSISTENT 18
Jan Karaa9ad01b2018-09-06 15:56:10 +020031#define UDF_FLAG_RW_INCOMPAT 19 /* Set when we find RW incompatible
32 * feature */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#define UDF_PART_FLAG_UNALLOC_BITMAP 0x0001
35#define UDF_PART_FLAG_UNALLOC_TABLE 0x0002
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define UDF_PART_FLAG_READ_ONLY 0x0010
37#define UDF_PART_FLAG_WRITE_ONCE 0x0020
38#define UDF_PART_FLAG_REWRITABLE 0x0040
39#define UDF_PART_FLAG_OVERWRITABLE 0x0080
40
Christoph Hellwig15aebd22008-02-22 12:39:12 +010041#define UDF_MAX_BLOCK_LOADED 8
42
43#define UDF_TYPE1_MAP15 0x1511U
44#define UDF_VIRTUAL_MAP15 0x1512U
45#define UDF_VIRTUAL_MAP20 0x2012U
46#define UDF_SPARABLE_MAP15 0x1522U
Jan Karabfb257a2008-04-08 20:37:21 +020047#define UDF_METADATA_MAP25 0x2511U
Christoph Hellwig15aebd22008-02-22 12:39:12 +010048
Al Virofaa17292011-07-26 03:18:29 -040049#define UDF_INVALID_MODE ((umode_t)-1)
Marcin Slusarz87bc7302008-12-02 13:40:11 +010050
Jan Karaed47a7d2011-10-24 16:47:48 +020051#define MF_DUPLICATE_MD 0x01
52#define MF_MIRROR_FE_LOADED 0x02
53
Jan Karabfb257a2008-04-08 20:37:21 +020054struct udf_meta_data {
55 __u32 s_meta_file_loc;
56 __u32 s_mirror_file_loc;
57 __u32 s_bitmap_file_loc;
58 __u32 s_alloc_unit_size;
59 __u16 s_align_unit_size;
Alden Tondettar78888242016-05-18 14:09:19 -070060 /*
61 * Partition Reference Number of the associated physical / sparable
62 * partition
63 */
64 __u16 s_phys_partition_ref;
Jan Karaed47a7d2011-10-24 16:47:48 +020065 int s_flags;
Jan Karabfb257a2008-04-08 20:37:21 +020066 struct inode *s_metadata_fe;
67 struct inode *s_mirror_fe;
68 struct inode *s_bitmap_fe;
69};
70
Christoph Hellwig15aebd22008-02-22 12:39:12 +010071struct udf_sparing_data {
72 __u16 s_packet_len;
73 struct buffer_head *s_spar_map[4];
74};
75
76struct udf_virtual_data {
77 __u32 s_num_entries;
78 __u16 s_start_offset;
79};
80
81struct udf_bitmap {
Christoph Hellwig15aebd22008-02-22 12:39:12 +010082 __u32 s_extPosition;
Jan Kara89b1f392013-02-05 13:59:56 +010083 int s_nr_groups;
Gustavo A. R. Silva3fc13162020-03-09 15:27:15 -050084 struct buffer_head *s_block_bitmap[];
Christoph Hellwig15aebd22008-02-22 12:39:12 +010085};
86
87struct udf_part_map {
88 union {
89 struct udf_bitmap *s_bitmap;
90 struct inode *s_table;
91 } s_uspace;
Christoph Hellwig15aebd22008-02-22 12:39:12 +010092 __u32 s_partition_root;
93 __u32 s_partition_len;
94 __u16 s_partition_type;
95 __u16 s_partition_num;
96 union {
97 struct udf_sparing_data s_sparing;
98 struct udf_virtual_data s_virtual;
Jan Karabfb257a2008-04-08 20:37:21 +020099 struct udf_meta_data s_metadata;
Christoph Hellwig15aebd22008-02-22 12:39:12 +0100100 } s_type_specific;
101 __u32 (*s_partition_func)(struct super_block *, __u32, __u16, __u32);
102 __u16 s_volumeseqnum;
103 __u16 s_partition_flags;
104};
105
106#pragma pack()
107
108struct udf_sb_info {
109 struct udf_part_map *s_partmaps;
110 __u8 s_volume_ident[32];
111
112 /* Overall info */
113 __u16 s_partitions;
114 __u16 s_partition;
115
116 /* Sector headers */
117 __s32 s_session;
Jan Kara403460052009-03-19 16:21:38 +0100118 __u32 s_anchor;
Christoph Hellwig15aebd22008-02-22 12:39:12 +0100119 __u32 s_last_block;
120
121 struct buffer_head *s_lvid_bh;
122
123 /* Default permissions */
Al Virofaa17292011-07-26 03:18:29 -0400124 umode_t s_umask;
Eric W. Biedermanc2ba1382012-02-10 12:20:35 -0800125 kgid_t s_gid;
126 kuid_t s_uid;
Al Virofaa17292011-07-26 03:18:29 -0400127 umode_t s_fmode;
128 umode_t s_dmode;
Jan Karac03cad22010-10-20 22:17:28 +0200129 /* Lock protecting consistency of above permission settings */
130 rwlock_t s_cred_lock;
Christoph Hellwig15aebd22008-02-22 12:39:12 +0100131
132 /* Root Info */
Arnd Bergmannc3b9cec2018-06-20 10:15:13 +0200133 struct timespec64 s_record_time;
Christoph Hellwig15aebd22008-02-22 12:39:12 +0100134
135 /* Fileset Info */
136 __u16 s_serial_number;
137
138 /* highest UDF revision we have recorded to this media */
139 __u16 s_udfrev;
140
141 /* Miscellaneous flags */
Jan Karaf2a6cc12010-10-20 17:25:59 +0200142 unsigned long s_flags;
Christoph Hellwig15aebd22008-02-22 12:39:12 +0100143
144 /* Encoding info */
145 struct nls_table *s_nls_map;
146
147 /* VAT inode */
148 struct inode *s_vat_inode;
149
150 struct mutex s_alloc_mutex;
Jan Kara146bca72009-03-16 18:27:37 +0100151 /* Protected by s_alloc_mutex */
152 unsigned int s_lvid_dirty;
Christoph Hellwig15aebd22008-02-22 12:39:12 +0100153};
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static inline struct udf_sb_info *UDF_SB(struct super_block *sb)
156{
157 return sb->s_fs_info;
158}
159
Jan Kara69d75672013-09-12 22:00:15 +0200160struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Marcin Slusarz883cb9d12008-02-08 04:20:34 -0800162int udf_compute_nr_groups(struct super_block *sb, u32 partition);
163
Jan Karaf2a6cc12010-10-20 17:25:59 +0200164static inline int UDF_QUERY_FLAG(struct super_block *sb, int flag)
165{
166 return test_bit(flag, &UDF_SB(sb)->s_flags);
167}
168
169static inline void UDF_SET_FLAG(struct super_block *sb, int flag)
170{
171 set_bit(flag, &UDF_SB(sb)->s_flags);
172}
173
174static inline void UDF_CLEAR_FLAG(struct super_block *sb, int flag)
175{
176 clear_bit(flag, &UDF_SB(sb)->s_flags);
177}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700179#endif /* __LINUX_UDF_SB_H */