1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 #ifndef _LINUX_EXT2_FS_H
17 #define _LINUX_EXT2_FS_H
18
19 #include <linux/types.h>
20
21
22
23
24
25
26
27
28 #undef EXT2FS_DEBUG
29
30
31
32
33 #define EXT2_PREALLOCATE
34
35
36
37
38 #define EXT2FS_DATE "95/08/09"
39 #define EXT2FS_VERSION "0.5b"
40
41
42
43
44 #ifdef EXT2FS_DEBUG
45 # define ext2_debug(f, a...) { \
46 printk ("EXT2-fs DEBUG (%s, %d): %s:", \
47 __FILE__, __LINE__, __FUNCTION__); \
48 printk (f, ## a); \
49 }
50 #else
51 # define ext2_debug(f, a...)
52 #endif
53
54
55
56
57 #define EXT2_BAD_INO 1
58 #define EXT2_ROOT_INO 2
59 #define EXT2_ACL_IDX_INO 3
60 #define EXT2_ACL_DATA_INO 4
61 #define EXT2_BOOT_LOADER_INO 5
62 #define EXT2_UNDEL_DIR_INO 6
63
64
65 #define EXT2_GOOD_OLD_FIRST_INO 11
66
67
68
69
70 #define EXT2_SUPER_MAGIC 0xEF53
71
72
73
74
75 #define EXT2_LINK_MAX 32000
76
77
78
79
80 #define EXT2_MIN_BLOCK_SIZE 1024
81 #define EXT2_MAX_BLOCK_SIZE 4096
82 #define EXT2_MIN_BLOCK_LOG_SIZE 10
83 #ifdef __KERNEL__
84 # define EXT2_BLOCK_SIZE(s) ((s)->s_blocksize)
85 #else
86 # define EXT2_BLOCK_SIZE(s) (EXT2_MIN_BLOCK_SIZE << (s)->s_log_block_size)
87 #endif
88 #define EXT2_ACLE_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / sizeof (struct ext2_acl_entry))
89 #define EXT2_ADDR_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / sizeof (__u32))
90 #ifdef __KERNEL__
91 # define EXT2_BLOCK_SIZE_BITS(s) ((s)->s_blocksize_bits)
92 #else
93 # define EXT2_BLOCK_SIZE_BITS(s) ((s)->s_log_block_size + 10)
94 #endif
95 #ifdef __KERNEL__
96 #define EXT2_ADDR_PER_BLOCK_BITS(s) ((s)->u.ext2_sb.s_addr_per_block_bits)
97 #define EXT2_INODE_SIZE(s) ((s)->u.ext2_sb.s_inode_size)
98 #define EXT2_FIRST_INO(s) ((s)->u.ext2_sb.s_first_ino)
99 #else
100 #define EXT2_INODE_SIZE(s) (((s)->s_rev_level == EXT2_GOOD_OLD_REV) ? \
101 EXT2_GOOD_OLD_INODE_SIZE : \
102 (s)->s_inode_size)
103 #define EXT2_FIRST_INO(s) (((s)->s_rev_level == EXT2_GOOD_OLD_REV) ? \
104 EXT2_GOOD_OLD_FIRST_INO : \
105 (s)->s_first_ino)
106 #endif
107
108
109
110
111 #define EXT2_MIN_FRAG_SIZE 1024
112 #define EXT2_MAX_FRAG_SIZE 4096
113 #define EXT2_MIN_FRAG_LOG_SIZE 10
114 #ifdef __KERNEL__
115 # define EXT2_FRAG_SIZE(s) ((s)->u.ext2_sb.s_frag_size)
116 # define EXT2_FRAGS_PER_BLOCK(s) ((s)->u.ext2_sb.s_frags_per_block)
117 #else
118 # define EXT2_FRAG_SIZE(s) (EXT2_MIN_FRAG_SIZE << (s)->s_log_frag_size)
119 # define EXT2_FRAGS_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / EXT2_FRAG_SIZE(s))
120 #endif
121
122
123
124
125 struct ext2_acl_header
126 {
127 __u32 aclh_size;
128 __u32 aclh_file_count;
129 __u32 aclh_acle_count;
130 __u32 aclh_first_acle;
131 };
132
133 struct ext2_acl_entry
134 {
135 __u32 acle_size;
136 __u16 acle_perms;
137 __u16 acle_type;
138 __u16 acle_tag;
139 __u16 acle_pad1;
140 __u32 acle_next;
141
142 };
143
144
145
146
147 struct ext2_group_desc
148 {
149 __u32 bg_block_bitmap;
150 __u32 bg_inode_bitmap;
151 __u32 bg_inode_table;
152 __u16 bg_free_blocks_count;
153 __u16 bg_free_inodes_count;
154 __u16 bg_used_dirs_count;
155 __u16 bg_pad;
156 __u32 bg_reserved[3];
157 };
158
159
160
161
162 #ifdef __KERNEL__
163 # define EXT2_BLOCKS_PER_GROUP(s) ((s)->u.ext2_sb.s_blocks_per_group)
164 # define EXT2_DESC_PER_BLOCK(s) ((s)->u.ext2_sb.s_desc_per_block)
165 # define EXT2_INODES_PER_GROUP(s) ((s)->u.ext2_sb.s_inodes_per_group)
166 # define EXT2_DESC_PER_BLOCK_BITS(s) ((s)->u.ext2_sb.s_desc_per_block_bits)
167 #else
168 # define EXT2_BLOCKS_PER_GROUP(s) ((s)->s_blocks_per_group)
169 # define EXT2_DESC_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / sizeof (struct ext2_group_desc))
170 # define EXT2_INODES_PER_GROUP(s) ((s)->s_inodes_per_group)
171 #endif
172
173
174
175
176 #define EXT2_NDIR_BLOCKS 12
177 #define EXT2_IND_BLOCK EXT2_NDIR_BLOCKS
178 #define EXT2_DIND_BLOCK (EXT2_IND_BLOCK + 1)
179 #define EXT2_TIND_BLOCK (EXT2_DIND_BLOCK + 1)
180 #define EXT2_N_BLOCKS (EXT2_TIND_BLOCK + 1)
181
182
183
184
185 #define EXT2_SECRM_FL 0x00000001
186 #define EXT2_UNRM_FL 0x00000002
187 #define EXT2_COMPR_FL 0x00000004
188 #define EXT2_SYNC_FL 0x00000008
189 #define EXT2_IMMUTABLE_FL 0x00000010
190 #define EXT2_APPEND_FL 0x00000020
191 #define EXT2_NODUMP_FL 0x00000040
192 #define EXT2_RESERVED_FL 0x80000000
193
194
195
196
197 #define EXT2_IOC_GETFLAGS _IOR('f', 1, long)
198 #define EXT2_IOC_SETFLAGS _IOW('f', 2, long)
199 #define EXT2_IOC_GETVERSION _IOR('v', 1, long)
200 #define EXT2_IOC_SETVERSION _IOW('v', 2, long)
201
202
203
204
205 struct ext2_inode {
206 __u16 i_mode;
207 __u16 i_uid;
208 __u32 i_size;
209 __u32 i_atime;
210 __u32 i_ctime;
211 __u32 i_mtime;
212 __u32 i_dtime;
213 __u16 i_gid;
214 __u16 i_links_count;
215 __u32 i_blocks;
216 __u32 i_flags;
217 union {
218 struct {
219 __u32 l_i_reserved1;
220 } linux1;
221 struct {
222 __u32 h_i_translator;
223 } hurd1;
224 struct {
225 __u32 m_i_reserved1;
226 } masix1;
227 } osd1;
228 __u32 i_block[EXT2_N_BLOCKS];
229 __u32 i_version;
230 __u32 i_file_acl;
231 __u32 i_dir_acl;
232 __u32 i_faddr;
233 union {
234 struct {
235 __u8 l_i_frag;
236 __u8 l_i_fsize;
237 __u16 i_pad1;
238 __u32 l_i_reserved2[2];
239 } linux2;
240 struct {
241 __u8 h_i_frag;
242 __u8 h_i_fsize;
243 __u16 h_i_mode_high;
244 __u16 h_i_uid_high;
245 __u16 h_i_gid_high;
246 __u32 h_i_author;
247 } hurd2;
248 struct {
249 __u8 m_i_frag;
250 __u8 m_i_fsize;
251 __u16 m_pad1;
252 __u32 m_i_reserved2[2];
253 } masix2;
254 } osd2;
255 };
256
257 #if defined(__KERNEL__) || defined(__linux__)
258 #define i_reserved1 osd1.linux1.l_i_reserved1
259 #define i_frag osd2.linux2.l_i_frag
260 #define i_fsize osd2.linux2.l_i_fsize
261 #define i_reserved2 osd2.linux2.l_i_reserved2
262 #endif
263
264 #ifdef __hurd__
265 #define i_translator osd1.hurd1.h_i_translator
266 #define i_frag osd2.hurd2.h_i_frag;
267 #define i_fsize osd2.hurd2.h_i_fsize;
268 #define i_uid_high osd2.hurd2.h_i_uid_high
269 #define i_gid_high osd2.hurd2.h_i_gid_high
270 #define i_author osd2.hurd2.h_i_author
271 #endif
272
273 #ifdef __masix__
274 #define i_reserved1 osd1.masix1.m_i_reserved1
275 #define i_frag osd2.masix2.m_i_frag
276 #define i_fsize osd2.masix2.m_i_fsize
277 #define i_reserved2 osd2.masix2.m_i_reserved2
278 #endif
279
280
281
282
283 #define EXT2_VALID_FS 0x0001
284 #define EXT2_ERROR_FS 0x0002
285
286
287
288
289 #define EXT2_MOUNT_CHECK_NORMAL 0x0001
290 #define EXT2_MOUNT_CHECK_STRICT 0x0002
291 #define EXT2_MOUNT_CHECK (EXT2_MOUNT_CHECK_NORMAL | \
292 EXT2_MOUNT_CHECK_STRICT)
293 #define EXT2_MOUNT_GRPID 0x0004
294 #define EXT2_MOUNT_DEBUG 0x0008
295 #define EXT2_MOUNT_ERRORS_CONT 0x0010
296 #define EXT2_MOUNT_ERRORS_RO 0x0020
297 #define EXT2_MOUNT_ERRORS_PANIC 0x0040
298 #define EXT2_MOUNT_MINIX_DF 0x0080
299
300 #define clear_opt(o, opt) o &= ~EXT2_MOUNT_##opt
301 #define set_opt(o, opt) o |= EXT2_MOUNT_##opt
302 #define test_opt(sb, opt) ((sb)->u.ext2_sb.s_mount_opt & \
303 EXT2_MOUNT_##opt)
304
305
306
307 #define EXT2_DFL_MAX_MNT_COUNT 20
308 #define EXT2_DFL_CHECKINTERVAL 0
309
310
311
312
313 #define EXT2_ERRORS_CONTINUE 1
314 #define EXT2_ERRORS_RO 2
315 #define EXT2_ERRORS_PANIC 3
316 #define EXT2_ERRORS_DEFAULT EXT2_ERRORS_CONTINUE
317
318
319
320
321 struct ext2_super_block {
322 __u32 s_inodes_count;
323 __u32 s_blocks_count;
324 __u32 s_r_blocks_count;
325 __u32 s_free_blocks_count;
326 __u32 s_free_inodes_count;
327 __u32 s_first_data_block;
328 __u32 s_log_block_size;
329 __s32 s_log_frag_size;
330 __u32 s_blocks_per_group;
331 __u32 s_frags_per_group;
332 __u32 s_inodes_per_group;
333 __u32 s_mtime;
334 __u32 s_wtime;
335 __u16 s_mnt_count;
336 __s16 s_max_mnt_count;
337 __u16 s_magic;
338 __u16 s_state;
339 __u16 s_errors;
340 __u16 s_minor_rev_level;
341 __u32 s_lastcheck;
342 __u32 s_checkinterval;
343 __u32 s_creator_os;
344 __u32 s_rev_level;
345 __u16 s_def_resuid;
346 __u16 s_def_resgid;
347
348
349
350
351
352
353
354
355
356
357
358
359
360 __u32 s_first_ino;
361 __u16 s_inode_size;
362 __u16 s_block_group_nr;
363 __u32 s_feature_compat;
364 __u32 s_feature_incompat;
365 __u32 s_reserved[231];
366 };
367
368
369
370
371 #define EXT2_OS_LINUX 0
372 #define EXT2_OS_HURD 1
373 #define EXT2_OS_MASIX 2
374 #define EXT2_OS_FREEBSD 3
375 #define EXT2_OS_LITES 4
376
377
378
379
380 #define EXT2_GOOD_OLD_REV 0
381 #define EXT2_DYNAMIC_REV 1
382
383 #define EXT2_CURRENT_REV EXT2_GOOD_OLD_REV
384 #define EXT2_MAX_SUPP_REV EXT2_DYNAMIC_REV
385
386 #define EXT2_GOOD_OLD_INODE_SIZE 128
387
388
389
390
391 #define EXT2_DEF_RESUID 0
392 #define EXT2_DEF_RESGID 0
393
394
395
396
397 #define EXT2_NAME_LEN 255
398
399 struct ext2_dir_entry {
400 __u32 inode;
401 __u16 rec_len;
402 __u16 name_len;
403 char name[EXT2_NAME_LEN];
404 };
405
406
407
408
409
410
411 #define EXT2_DIR_PAD 4
412 #define EXT2_DIR_ROUND (EXT2_DIR_PAD - 1)
413 #define EXT2_DIR_REC_LEN(name_len) (((name_len) + 8 + EXT2_DIR_ROUND) & \
414 ~EXT2_DIR_ROUND)
415
416
417
418
419 #define EXT2_FEATURE_COMPAT_SUPP 0
420 #define EXT2_FEATURE_INCOMPAT_SUPP 0
421
422 #ifdef __KERNEL__
423
424
425
426
427
428
429
430
431 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
432 # define NORET_TYPE __volatile__
433 # define ATTRIB_NORET
434 # define NORET_AND
435 #else
436 # define NORET_TYPE
437 # define ATTRIB_NORET __attribute__((noreturn))
438 # define NORET_AND noreturn,
439 #endif
440
441
442 extern int ext2_permission (struct inode *, int);
443
444
445 extern int ext2_new_block (const struct inode *, unsigned long,
446 __u32 *, __u32 *, int *);
447 extern void ext2_free_blocks (const struct inode *, unsigned long,
448 unsigned long);
449 extern unsigned long ext2_count_free_blocks (struct super_block *);
450 extern void ext2_check_blocks_bitmap (struct super_block *);
451
452
453 extern unsigned long ext2_count_free (struct buffer_head *, unsigned);
454
455
456 extern int ext2_check_dir_entry (const char *, struct inode *,
457 struct ext2_dir_entry *, struct buffer_head *,
458 unsigned long);
459
460
461 extern int ext2_read (struct inode *, struct file *, char *, int);
462 extern int ext2_write (struct inode *, struct file *, char *, int);
463
464
465 extern int ext2_sync_file (struct inode *, struct file *);
466
467
468 extern struct inode * ext2_new_inode (const struct inode *, int, int *);
469 extern void ext2_free_inode (struct inode *);
470 extern unsigned long ext2_count_free_inodes (struct super_block *);
471 extern void ext2_check_inodes_bitmap (struct super_block *);
472
473
474 extern int ext2_bmap (struct inode *, int);
475
476 extern struct buffer_head * ext2_getblk (struct inode *, long, int, int *);
477 extern struct buffer_head * ext2_bread (struct inode *, int, int, int *);
478
479 extern int ext2_getcluster (struct inode * inode, long block);
480 extern void ext2_read_inode (struct inode *);
481 extern void ext2_write_inode (struct inode *);
482 extern void ext2_put_inode (struct inode *);
483 extern int ext2_sync_inode (struct inode *);
484 extern void ext2_discard_prealloc (struct inode *);
485
486
487 extern int ext2_ioctl (struct inode *, struct file *, unsigned int,
488 unsigned long);
489
490
491 extern void ext2_release (struct inode *, struct file *);
492 extern int ext2_lookup (struct inode *,const char *, int, struct inode **);
493 extern int ext2_create (struct inode *,const char *, int, int,
494 struct inode **);
495 extern int ext2_mkdir (struct inode *, const char *, int, int);
496 extern int ext2_rmdir (struct inode *, const char *, int);
497 extern int ext2_unlink (struct inode *, const char *, int);
498 extern int ext2_symlink (struct inode *, const char *, int, const char *);
499 extern int ext2_link (struct inode *, struct inode *, const char *, int);
500 extern int ext2_mknod (struct inode *, const char *, int, int, int);
501 extern int ext2_rename (struct inode *, const char *, int,
502 struct inode *, const char *, int);
503
504
505 extern void ext2_error (struct super_block *, const char *, const char *, ...)
506 __attribute__ ((format (printf, 3, 4)));
507 extern NORET_TYPE void ext2_panic (struct super_block *, const char *,
508 const char *, ...)
509 __attribute__ ((NORET_AND format (printf, 3, 4)));
510 extern void ext2_warning (struct super_block *, const char *, const char *, ...)
511 __attribute__ ((format (printf, 3, 4)));
512 extern void ext2_put_super (struct super_block *);
513 extern void ext2_write_super (struct super_block *);
514 extern int ext2_remount (struct super_block *, int *, char *);
515 extern struct super_block * ext2_read_super (struct super_block *,void *,int);
516 extern int init_ext2_fs(void);
517 extern void ext2_statfs (struct super_block *, struct statfs *, int);
518
519
520 extern void ext2_truncate (struct inode *);
521
522
523
524
525
526
527 extern struct inode_operations ext2_dir_inode_operations;
528
529
530 extern struct inode_operations ext2_file_inode_operations;
531
532
533 extern struct inode_operations ext2_symlink_inode_operations;
534
535 #endif
536
537 #endif