blob: 2e68c4c73d8aa5786c6b1309e64cdae9e25f94a9 [file] [log] [blame]
Theodore Ts'o3839e651997-04-26 13:21:57 +00001/*
2 * ext2fs.h --- ext2fs
3 *
Theodore Ts'o19c78dc1997-04-29 16:17:09 +00004 * Copyright (C) 1993, 1994, 1995, 1996 Theodore Ts'o.
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
Theodore Ts'o3839e651997-04-26 13:21:57 +000010 */
11
12/*
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000013 * Non-GNU C compilers won't necessarily understand inline
14 */
15#ifndef __GNUC__
16#define NO_INLINE_FUNCS
17#endif
18
19/*
Theodore Ts'o3839e651997-04-26 13:21:57 +000020 * Where the master copy of the superblock is located, and how big
21 * superblocks are supposed to be. We define SUPERBLOCK_SIZE because
22 * the size of the superblock structure is not necessarily trustworthy
23 * (some versions have the padding set up so that the superblock is
24 * 1032 bytes long).
25 */
26#define SUPERBLOCK_OFFSET 1024
27#define SUPERBLOCK_SIZE 1024
28
Theodore Ts'of3db3561997-04-26 13:34:30 +000029/*
30 * The last ext2fs revision level that this version of the library is
31 * able to support.
32 */
33#define EXT2_LIB_CURRENT_REV 0
34
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000035#include <sys/types.h>
Theodore Ts'o50e1e101997-04-26 13:58:21 +000036#include <linux/types.h>
37
38typedef __u32 blk_t;
Theodore Ts'o3839e651997-04-26 13:21:57 +000039typedef unsigned int dgrp_t;
40
41#include "et/com_err.h"
42#include "ext2fs/io.h"
43#include "ext2fs/ext2_err.h"
44
Theodore Ts'of3db3561997-04-26 13:34:30 +000045typedef struct struct_ext2_filsys *ext2_filsys;
46
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000047struct ext2fs_struct_generic_bitmap {
48 int magic;
49 ext2_filsys fs;
50 __u32 start, end;
51 __u32 real_end;
52 char * description;
53 char * bitmap;
54 errcode_t base_error_code;
55 __u32 reserved[7];
Theodore Ts'of3db3561997-04-26 13:34:30 +000056};
57
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000058#define EXT2FS_MARK_ERROR 0
59#define EXT2FS_UNMARK_ERROR 1
60#define EXT2FS_TEST_ERROR 2
Theodore Ts'of3db3561997-04-26 13:34:30 +000061
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000062typedef struct ext2fs_struct_generic_bitmap *ext2fs_generic_bitmap;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000063typedef struct ext2fs_struct_generic_bitmap *ext2fs_inode_bitmap;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000064typedef struct ext2fs_struct_generic_bitmap *ext2fs_block_bitmap;
Theodore Ts'of3db3561997-04-26 13:34:30 +000065
Theodore Ts'o7f88b041997-04-26 14:48:50 +000066#ifdef EXT2_DYNAMIC_REV
67#define EXT2_FIRST_INODE(s) EXT2_FIRST_INO(s)
68#else
69#define EXT2_FIRST_INODE(s) EXT2_FIRST_INO
70#define EXT2_INODE_SIZE(s) sizeof(struct ext2_inode)
71#endif
72
Theodore Ts'o3839e651997-04-26 13:21:57 +000073/*
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000074 * badblocks list definitions
75 */
76
77typedef struct ext2_struct_badblocks_list *ext2_badblocks_list;
78typedef struct ext2_struct_badblocks_iterate *ext2_badblocks_iterate;
79
80/* old */
81typedef struct ext2_struct_badblocks_list *badblocks_list;
82typedef struct ext2_struct_badblocks_iterate *badblocks_iterate;
83
84#define BADBLOCKS_FLAG_DIRTY 1
85
86/*
87 * ext2_dblist structure and abstractions (see dblist.c)
88 */
89struct ext2_db_entry {
90 ino_t ino;
91 blk_t blk;
92 int blockcnt;
93};
94
95typedef struct ext2_struct_dblist *ext2_dblist;
96
97#define DBLIST_ABORT 1
98
99/*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000100 * Flags for the ext2_filsys structure
101 */
102
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000103#define EXT2_FLAG_RW 0x01
104#define EXT2_FLAG_CHANGED 0x02
105#define EXT2_FLAG_DIRTY 0x04
106#define EXT2_FLAG_VALID 0x08
107#define EXT2_FLAG_IB_DIRTY 0x10
108#define EXT2_FLAG_BB_DIRTY 0x20
Theodore Ts'o5c576471997-04-29 15:29:49 +0000109#define EXT2_FLAG_SWAP_BYTES 0x40
110#define EXT2_FLAG_SWAP_BYTES_READ 0x80
111#define EXT2_FLAG_SWAP_BYTES_WRITE 0x100
112#define EXT2_FLAG_MASTER_SB_ONLY 0x200
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000113#define EXT2_FLAG_FORCE 0x400
Theodore Ts'o3839e651997-04-26 13:21:57 +0000114
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000115/*
116 * Special flag in the ext2 inode i_flag field that means that this is
117 * a new inode. (So that ext2_write_inode() can clear extra fields.)
118 */
119#define EXT2_NEW_INODE_FL 0x80000000
120
Theodore Ts'o3839e651997-04-26 13:21:57 +0000121struct struct_ext2_filsys {
Theodore Ts'of3db3561997-04-26 13:34:30 +0000122 int magic;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000123 io_channel io;
124 int flags;
125 char * device_name;
126 struct ext2_super_block * super;
127 int blocksize;
128 int fragsize;
129 unsigned long group_desc_count;
130 unsigned long desc_blocks;
131 struct ext2_group_desc * group_desc;
132 int inode_blocks_per_group;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000133 ext2fs_inode_bitmap inode_map;
134 ext2fs_block_bitmap block_map;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000135 errcode_t (*get_blocks)(ext2_filsys fs, ino_t ino, blk_t *blocks);
136 errcode_t (*check_directory)(ext2_filsys fs, ino_t ino);
137 errcode_t (*write_bitmaps)(ext2_filsys fs);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000138 errcode_t (*read_inode)(ext2_filsys fs, ino_t ino,
139 struct ext2_inode *inode);
140 errcode_t (*write_inode)(ext2_filsys fs, ino_t ino,
141 struct ext2_inode *inode);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000142 badblocks_list badblocks;
143 ext2_dblist dblist;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000144 __u32 stride; /* for mke2fs */
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000145 /*
146 * Reserved for future expansion
147 */
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000148 __u32 reserved[11];
Theodore Ts'o3839e651997-04-26 13:21:57 +0000149
150 /*
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000151 * Reserved for the use of the calling application.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000152 */
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000153 void * private;
154
155 /*
156 * Inode cache
157 */
158 struct ext2_inode_cache *icache;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000159};
160
Theodore Ts'of3db3561997-04-26 13:34:30 +0000161#include "ext2fs/bitops.h"
162
Theodore Ts'o3839e651997-04-26 13:21:57 +0000163/*
164 * Return flags for the block iterator functions
165 */
166#define BLOCK_CHANGED 1
167#define BLOCK_ABORT 2
168#define BLOCK_ERROR 4
169
170/*
171 * Block interate flags
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000172 *
173 * BLOCK_FLAG_APPEND, or BLOCK_FLAG_HOLE, indicates that the interator
174 * function should be called on blocks where the block number is zero.
175 * This is used by ext2fs_expand_dir() to be able to add a new block
176 * to an inode. It can also be used for programs that want to be able
177 * to deal with files that contain "holes".
178 *
179 * BLOCK_FLAG_TRAVERSE indicates that the iterator function for the
180 * indirect, doubly indirect, etc. blocks should be called after all
181 * of the blocks containined in the indirect blocks are processed.
182 * This is useful if you are going to be deallocating blocks from an
183 * inode.
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000184 *
185 * BLOCK_FLAG_DATA_ONLY indicates that the iterator function should be
186 * called for data blocks only.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000187 */
188#define BLOCK_FLAG_APPEND 1
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000189#define BLOCK_FLAG_HOLE 1
Theodore Ts'o3839e651997-04-26 13:21:57 +0000190#define BLOCK_FLAG_DEPTH_TRAVERSE 2
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000191#define BLOCK_FLAG_DATA_ONLY 4
192
193/*
194 * Magic "block count" return values for the block iterator function.
195 */
196#define BLOCK_COUNT_IND (-1)
197#define BLOCK_COUNT_DIND (-2)
198#define BLOCK_COUNT_TIND (-3)
199#define BLOCK_COUNT_TRANSLATOR (-4)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000200
201/*
202 * Return flags for the directory iterator functions
203 */
204#define DIRENT_CHANGED 1
205#define DIRENT_ABORT 2
206#define DIRENT_ERROR 3
207
208/*
209 * Directory iterator flags
210 */
211
212#define DIRENT_FLAG_INCLUDE_EMPTY 1
213
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000214
215#define DIRENT_DOT_FILE 1
216#define DIRENT_DOT_DOT_FILE 2
217#define DIRENT_OTHER_FILE 3
218
Theodore Ts'o3839e651997-04-26 13:21:57 +0000219/*
220 * Inode scan definitions
221 */
Theodore Ts'of3db3561997-04-26 13:34:30 +0000222typedef struct ext2_struct_inode_scan *ext2_inode_scan;
223
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000224/*
225 * ext2fs_scan flags
226 */
227#define EXT2_SF_CHK_BADBLOCKS 0x0001
228#define EXT2_SF_BAD_INODE_BLK 0x0002
229#define EXT2_SF_BAD_EXTRA_BYTES 0x0004
230#define EXT2_SF_SKIP_MISSING_ITABLE 0x0008
Theodore Ts'o3839e651997-04-26 13:21:57 +0000231
Theodore Ts'of3db3561997-04-26 13:34:30 +0000232/*
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000233 * ext2fs_check_if_mounted flags
234 */
235#define EXT2_MF_MOUNTED 1
236#define EXT2_MF_ISROOT 2
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000237#define EXT2_MF_READONLY 4
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000238
239/*
240 * Ext2/linux mode flags. We define them here so that we don't need
241 * to depend on the OS's sys/stat.h, since we may be compiling on a
242 * non-Linux system.
243 */
244#define LINUX_S_IFMT 00170000
245#define LINUX_S_IFSOCK 0140000
246#define LINUX_S_IFLNK 0120000
247#define LINUX_S_IFREG 0100000
248#define LINUX_S_IFBLK 0060000
249#define LINUX_S_IFDIR 0040000
250#define LINUX_S_IFCHR 0020000
251#define LINUX_S_IFIFO 0010000
252#define LINUX_S_ISUID 0004000
253#define LINUX_S_ISGID 0002000
254#define LINUX_S_ISVTX 0001000
255
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000256#define LINUX_S_IRWXU 00700
257#define LINUX_S_IRUSR 00400
258#define LINUX_S_IWUSR 00200
259#define LINUX_S_IXUSR 00100
260
261#define LINUX_S_IRWXG 00070
262#define LINUX_S_IRGRP 00040
263#define LINUX_S_IWGRP 00020
264#define LINUX_S_IXGRP 00010
265
266#define LINUX_S_IRWXO 00007
267#define LINUX_S_IROTH 00004
268#define LINUX_S_IWOTH 00002
269#define LINUX_S_IXOTH 00001
270
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000271#define LINUX_S_ISLNK(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFLNK)
272#define LINUX_S_ISREG(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFREG)
273#define LINUX_S_ISDIR(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFDIR)
274#define LINUX_S_ISCHR(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFCHR)
275#define LINUX_S_ISBLK(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFBLK)
276#define LINUX_S_ISFIFO(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFIFO)
277#define LINUX_S_ISSOCK(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFSOCK)
278
279/*
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000280 * ext2_icount_t abstraction
281 */
282#define EXT2_ICOUNT_OPT_INCREMENT 0x01
283
284typedef struct ext2_icount *ext2_icount_t;
285
286/*
Theodore Ts'of3db3561997-04-26 13:34:30 +0000287 * For checking structure magic numbers...
288 */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000289
Theodore Ts'of3db3561997-04-26 13:34:30 +0000290#define EXT2_CHECK_MAGIC(struct, code) \
291 if ((struct)->magic != (code)) return (code)
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000292
293
294/*
295 * The ext2fs library private definition of the ext2 superblock, so we
296 * don't have to depend on the kernel's definition of the superblock,
297 * which might not have the latest features.
298 */
299struct ext2fs_sb {
300 __u32 s_inodes_count; /* Inodes count */
301 __u32 s_blocks_count; /* Blocks count */
302 __u32 s_r_blocks_count; /* Reserved blocks count */
303 __u32 s_free_blocks_count; /* Free blocks count */
304 __u32 s_free_inodes_count; /* Free inodes count */
305 __u32 s_first_data_block; /* First Data Block */
306 __u32 s_log_block_size; /* Block size */
307 __s32 s_log_frag_size; /* Fragment size */
308 __u32 s_blocks_per_group; /* # Blocks per group */
309 __u32 s_frags_per_group; /* # Fragments per group */
310 __u32 s_inodes_per_group; /* # Inodes per group */
311 __u32 s_mtime; /* Mount time */
312 __u32 s_wtime; /* Write time */
313 __u16 s_mnt_count; /* Mount count */
314 __s16 s_max_mnt_count; /* Maximal mount count */
315 __u16 s_magic; /* Magic signature */
316 __u16 s_state; /* File system state */
317 __u16 s_errors; /* Behaviour when detecting errors */
318 __u16 s_minor_rev_level; /* minor revision level */
319 __u32 s_lastcheck; /* time of last check */
320 __u32 s_checkinterval; /* max. time between checks */
321 __u32 s_creator_os; /* OS */
322 __u32 s_rev_level; /* Revision level */
323 __u16 s_def_resuid; /* Default uid for reserved blocks */
324 __u16 s_def_resgid; /* Default gid for reserved blocks */
325 /*
326 * These fields are for EXT2_DYNAMIC_REV superblocks only.
327 *
328 * Note: the difference between the compatible feature set and
329 * the incompatible feature set is that if there is a bit set
330 * in the incompatible feature set that the kernel doesn't
331 * know about, it should refuse to mount the filesystem.
332 *
333 * e2fsck's requirements are more strict; if it doesn't know
334 * about a feature in either the compatible or incompatible
335 * feature set, it must abort and not try to meddle with
336 * things it doesn't understand...
337 */
338 __u32 s_first_ino; /* First non-reserved inode */
339 __u16 s_inode_size; /* size of inode structure */
340 __u16 s_block_group_nr; /* block group # of this superblock */
341 __u32 s_feature_compat; /* compatible feature set */
342 __u32 s_feature_incompat; /* incompatible feature set */
343 __u32 s_feature_ro_compat; /* readonly-compatible feature set */
344 __u8 s_uuid[16]; /* 128-bit uuid for volume */
345 char s_volume_name[16]; /* volume name */
346 char s_last_mounted[64]; /* directory where last mounted */
347 __u32 s_reserved[206]; /* Padding to the end of the block */
348};
Theodore Ts'o521e3681997-04-29 17:48:10 +0000349
350/*
351 * Feature set definitions (that might not be in ext2_fs.h
352 * (was EXT2_COMPAT_SPARSE_SUPER)
353 */
354#ifndef EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER
355#define EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER 0x0001
356#endif
357
358#define EXT2_LIB_FEATURE_COMPAT_SUPP 0
359#define EXT2_LIB_FEATURE_INCOMPAT_SUPP 0
360#define EXT2_LIB_FEATURE_RO_COMPAT_SUPP EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER
361
Theodore Ts'o3839e651997-04-26 13:21:57 +0000362/*
363 * function prototypes
364 */
365
366/* alloc.c */
367extern errcode_t ext2fs_new_inode(ext2_filsys fs, ino_t dir, int mode,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000368 ext2fs_inode_bitmap map, ino_t *ret);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000369extern errcode_t ext2fs_new_block(ext2_filsys fs, blk_t goal,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000370 ext2fs_block_bitmap map, blk_t *ret);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000371extern errcode_t ext2fs_get_free_blocks(ext2_filsys fs, blk_t start,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000372 blk_t finish, int num,
373 ext2fs_block_bitmap map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000374 blk_t *ret);
375
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000376/* allocate_tables.c */
377errcode_t ext2fs_allocate_tables(ext2_filsys fs);
378
Theodore Ts'o3839e651997-04-26 13:21:57 +0000379/* badblocks.c */
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000380extern errcode_t ext2fs_badblocks_list_create(ext2_badblocks_list *ret,
381 int size);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000382extern errcode_t ext2fs_badblocks_list_add(ext2_badblocks_list bb,
383 blk_t blk);
384extern int ext2fs_badblocks_list_test(ext2_badblocks_list bb,
385 blk_t blk);
386extern errcode_t
387 ext2fs_badblocks_list_iterate_begin(ext2_badblocks_list bb,
388 ext2_badblocks_iterate *ret);
389extern int ext2fs_badblocks_list_iterate(ext2_badblocks_iterate iter,
390 blk_t *blk);
391extern void ext2fs_badblocks_list_iterate_end(ext2_badblocks_iterate iter);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000392extern errcode_t ext2fs_badblocks_copy(ext2_badblocks_list src,
393 ext2_badblocks_list *dest);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000394
395/* bb_compat */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000396extern errcode_t badblocks_list_create(badblocks_list *ret, int size);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000397extern errcode_t badblocks_list_add(badblocks_list bb, blk_t blk);
398extern int badblocks_list_test(badblocks_list bb, blk_t blk);
399extern errcode_t badblocks_list_iterate_begin(badblocks_list bb,
400 badblocks_iterate *ret);
401extern int badblocks_list_iterate(badblocks_iterate iter, blk_t *blk);
402extern void badblocks_list_iterate_end(badblocks_iterate iter);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000403extern void badblocks_list_free(badblocks_list bb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000404
405/* bb_inode.c */
406extern errcode_t ext2fs_update_bb_inode(ext2_filsys fs,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000407 ext2_badblocks_list bb_list);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000408
409/* bitmaps.c */
410extern errcode_t ext2fs_write_inode_bitmap(ext2_filsys fs);
411extern errcode_t ext2fs_write_block_bitmap (ext2_filsys fs);
412extern errcode_t ext2fs_read_inode_bitmap (ext2_filsys fs);
413extern errcode_t ext2fs_read_block_bitmap(ext2_filsys fs);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000414extern errcode_t ext2fs_allocate_generic_bitmap(__u32 start,
415 __u32 end,
416 __u32 real_end,
417 const char *descr,
418 ext2fs_generic_bitmap *ret);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000419extern errcode_t ext2fs_allocate_block_bitmap(ext2_filsys fs,
420 const char *descr,
421 ext2fs_block_bitmap *ret);
422extern errcode_t ext2fs_allocate_inode_bitmap(ext2_filsys fs,
423 const char *descr,
424 ext2fs_inode_bitmap *ret);
425extern errcode_t ext2fs_fudge_inode_bitmap_end(ext2fs_inode_bitmap bitmap,
426 ino_t end, ino_t *oend);
427extern errcode_t ext2fs_fudge_block_bitmap_end(ext2fs_block_bitmap bitmap,
428 blk_t end, blk_t *oend);
429extern void ext2fs_clear_inode_bitmap(ext2fs_inode_bitmap bitmap);
430extern void ext2fs_clear_block_bitmap(ext2fs_block_bitmap bitmap);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000431extern errcode_t ext2fs_read_bitmaps(ext2_filsys fs);
432extern errcode_t ext2fs_write_bitmaps(ext2_filsys fs);
433
434/* block.c */
435extern errcode_t ext2fs_block_iterate(ext2_filsys fs,
436 ino_t ino,
437 int flags,
438 char *block_buf,
439 int (*func)(ext2_filsys fs,
440 blk_t *blocknr,
441 int blockcnt,
442 void *private),
443 void *private);
444
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000445errcode_t ext2fs_block_iterate2(ext2_filsys fs,
446 ino_t ino,
447 int flags,
448 char *block_buf,
449 int (*func)(ext2_filsys fs,
450 blk_t *blocknr,
451 int blockcnt,
452 blk_t ref_blk,
453 int ref_offset,
454 void *private),
455 void *private);
456
Theodore Ts'of3db3561997-04-26 13:34:30 +0000457/* check_desc.c */
458extern errcode_t ext2fs_check_desc(ext2_filsys fs);
459
Theodore Ts'o3839e651997-04-26 13:21:57 +0000460/* closefs.c */
461extern errcode_t ext2fs_close(ext2_filsys fs);
462extern errcode_t ext2fs_flush(ext2_filsys fs);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000463extern int ext2fs_bg_has_super(ext2_filsys fs, int group_block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000464
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000465/* cmp_bitmaps.c */
466extern errcode_t ext2fs_compare_block_bitmap(ext2fs_block_bitmap bm1,
467 ext2fs_block_bitmap bm2);
468extern errcode_t ext2fs_compare_inode_bitmap(ext2fs_inode_bitmap bm1,
469 ext2fs_inode_bitmap bm2);
470
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000471/* dblist.c */
472
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000473extern errcode_t ext2fs_get_num_dirs(ext2_filsys fs, ino_t *ret_num_dirs);
474extern errcode_t ext2fs_init_dblist(ext2_filsys fs, ext2_dblist *ret_dblist);
475extern errcode_t ext2fs_add_dir_block(ext2_dblist dblist, ino_t ino,
476 blk_t blk, int blockcnt);
477extern errcode_t ext2fs_dblist_iterate(ext2_dblist dblist,
478 int (*func)(ext2_filsys fs, struct ext2_db_entry *db_info,
479 void *private),
480 void *private);
481extern errcode_t ext2fs_set_dir_block(ext2_dblist dblist, ino_t ino,
482 blk_t blk, int blockcnt);
483extern errcode_t ext2fs_copy_dblist(ext2_dblist src,
484 ext2_dblist *dest);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000485
486/* dblist_dir.c */
487extern errcode_t
488 ext2fs_dblist_dir_iterate(ext2_dblist dblist,
489 int flags,
490 char *block_buf,
491 int (*func)(ino_t dir,
492 int entry,
493 struct ext2_dir_entry *dirent,
494 int offset,
495 int blocksize,
496 char *buf,
497 void *private),
498 void *private);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000499
500/* dirblock.c */
501extern errcode_t ext2fs_read_dir_block(ext2_filsys fs, blk_t block,
502 void *buf);
503extern errcode_t ext2fs_write_dir_block(ext2_filsys fs, blk_t block,
504 void *buf);
505
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000506/* dir_iterate.c */
507extern errcode_t ext2fs_dir_iterate(ext2_filsys fs,
508 ino_t dir,
509 int flags,
510 char *block_buf,
511 int (*func)(struct ext2_dir_entry *dirent,
512 int offset,
513 int blocksize,
514 char *buf,
515 void *private),
516 void *private);
517 /* private to library */
518extern int ext2fs_process_dir_block(ext2_filsys fs,
519 blk_t *blocknr,
520 int blockcnt,
521 void *private);
522
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000523/* dupfs.c */
524extern errcode_t ext2fs_dup_handle(ext2_filsys src, ext2_filsys *dest);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000525
Theodore Ts'o3839e651997-04-26 13:21:57 +0000526/* expanddir.c */
527extern errcode_t ext2fs_expand_dir(ext2_filsys fs, ino_t dir);
528
529/* freefs.c */
530extern void ext2fs_free(ext2_filsys fs);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000531extern void ext2fs_free_generic_bitmap(ext2fs_inode_bitmap bitmap);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000532extern void ext2fs_free_block_bitmap(ext2fs_block_bitmap bitmap);
533extern void ext2fs_free_inode_bitmap(ext2fs_inode_bitmap bitmap);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000534extern void ext2fs_free_dblist(ext2_dblist dblist);
535extern void ext2fs_badblocks_list_free(badblocks_list bb);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000536
537/* getsize.c */
538extern errcode_t ext2fs_get_device_size(const char *file, int blocksize,
539 blk_t *retblocks);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000540
541/* initialize.c */
542extern errcode_t ext2fs_initialize(const char *name, int flags,
543 struct ext2_super_block *param,
544 io_manager manager, ext2_filsys *ret_fs);
545
546/* inode.c */
547extern errcode_t ext2fs_open_inode_scan(ext2_filsys fs, int buffer_blocks,
548 ext2_inode_scan *ret_scan);
549extern void ext2fs_close_inode_scan(ext2_inode_scan scan);
550extern errcode_t ext2fs_get_next_inode(ext2_inode_scan scan, ino_t *ino,
551 struct ext2_inode *inode);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000552extern errcode_t ext2fs_inode_scan_goto_blockgroup(ext2_inode_scan scan,
553 int group);
554extern void ext2fs_set_inode_callback
555 (ext2_inode_scan scan,
556 errcode_t (*done_group)(ext2_filsys fs,
557 ext2_inode_scan scan,
558 dgrp_t group,
559 void * private),
560 void *done_group_data);
561extern int ext2fs_inode_scan_flags(ext2_inode_scan scan, int set_flags,
562 int clear_flags);
563extern errcode_t ext2fs_read_inode (ext2_filsys fs, ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000564 struct ext2_inode * inode);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000565extern errcode_t ext2fs_write_inode(ext2_filsys fs, ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000566 struct ext2_inode * inode);
567extern errcode_t ext2fs_get_blocks(ext2_filsys fs, ino_t ino, blk_t *blocks);
568extern errcode_t ext2fs_check_directory(ext2_filsys fs, ino_t ino);
569
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000570/* icount.c */
571extern void ext2fs_free_icount(ext2_icount_t icount);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000572extern errcode_t ext2fs_create_icount2(ext2_filsys fs, int flags, int size,
573 ext2_icount_t hint, ext2_icount_t *ret);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000574extern errcode_t ext2fs_create_icount(ext2_filsys fs, int flags, int size,
575 ext2_icount_t *ret);
576extern errcode_t ext2fs_icount_fetch(ext2_icount_t icount, ino_t ino,
577 __u16 *ret);
578extern errcode_t ext2fs_icount_increment(ext2_icount_t icount, ino_t ino,
579 __u16 *ret);
580extern errcode_t ext2fs_icount_decrement(ext2_icount_t icount, ino_t ino,
581 __u16 *ret);
582extern errcode_t ext2fs_icount_store(ext2_icount_t icount, ino_t ino,
583 __u16 count);
584extern ino_t ext2fs_get_icount_size(ext2_icount_t icount);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000585errcode_t ext2fs_icount_validate(ext2_icount_t icount, FILE *);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000586
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000587/* ismounted.c */
588extern errcode_t ext2fs_check_if_mounted(const char *file, int *mount_flags);
589
Theodore Ts'o3839e651997-04-26 13:21:57 +0000590/* namei.c */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000591extern errcode_t ext2fs_lookup(ext2_filsys fs, ino_t dir, const char *name,
592 int namelen, char *buf, ino_t *inode);
593extern errcode_t ext2fs_namei(ext2_filsys fs, ino_t root, ino_t cwd,
594 const char *name, ino_t *inode);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000595errcode_t ext2fs_namei_follow(ext2_filsys fs, ino_t root, ino_t cwd,
596 const char *name, ino_t *inode);
597extern errcode_t ext2fs_follow_link(ext2_filsys fs, ino_t root, ino_t cwd,
598 ino_t inode, ino_t *res_inode);
599
600/* native.c */
601int ext2fs_native_flag(void);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000602
603/* newdir.c */
604extern errcode_t ext2fs_new_dir_block(ext2_filsys fs, ino_t dir_ino,
605 ino_t parent_ino, char **block);
606
607/* mkdir.c */
608extern errcode_t ext2fs_mkdir(ext2_filsys fs, ino_t parent, ino_t inum,
609 const char *name);
610
611/* openfs.c */
612extern errcode_t ext2fs_open(const char *name, int flags, int superblock,
613 int block_size, io_manager manager,
614 ext2_filsys *ret_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000615
616/* get_pathname.c */
617extern errcode_t ext2fs_get_pathname(ext2_filsys fs, ino_t dir, ino_t ino,
618 char **name);
619
620/* link.c */
621errcode_t ext2fs_link(ext2_filsys fs, ino_t dir, const char *name,
622 ino_t ino, int flags);
623errcode_t ext2fs_unlink(ext2_filsys fs, ino_t dir, const char *name,
624 ino_t ino, int flags);
625
626/* read_bb.c */
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000627extern errcode_t ext2fs_read_bb_inode(ext2_filsys fs,
628 ext2_badblocks_list *bb_list);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000629
630/* read_bb_file.c */
631extern errcode_t ext2fs_read_bb_FILE(ext2_filsys fs, FILE *f,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000632 ext2_badblocks_list *bb_list,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000633 void (*invalid)(ext2_filsys fs,
634 blk_t blk));
635
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000636/* rs_bitmap.c */
637extern errcode_t ext2fs_resize_generic_bitmap(__u32 new_end,
638 __u32 new_real_end,
639 ext2fs_generic_bitmap bmap);
640extern errcode_t ext2fs_resize_inode_bitmap(__u32 new_end, __u32 new_real_end,
641 ext2fs_inode_bitmap bmap);
642extern errcode_t ext2fs_resize_block_bitmap(__u32 new_end, __u32 new_real_end,
643 ext2fs_block_bitmap bmap);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000644extern errcode_t ext2fs_copy_bitmap(ext2fs_generic_bitmap src,
645 ext2fs_generic_bitmap *dest);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000646
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000647/* swapfs.c */
648extern void ext2fs_swap_super(struct ext2_super_block * super);
649extern void ext2fs_swap_group_desc(struct ext2_group_desc *gdp);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000650extern void ext2fs_swap_inode(ext2_filsys fs,struct ext2_inode *t,
651 struct ext2_inode *f, int hostorder);
652
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000653/* valid_blk.c */
Theodore Ts'o521e3681997-04-29 17:48:10 +0000654extern int ext2fs_inode_has_valid_blocks(struct ext2_inode *inode);
655
656/* version.c */
657extern int ext2fs_parse_version_string(const char *ver_string);
658extern int ext2fs_get_library_version(const char **ver_string,
659 const char **date_string);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000660
Theodore Ts'o3839e651997-04-26 13:21:57 +0000661/* inline functions */
662extern void ext2fs_mark_super_dirty(ext2_filsys fs);
663extern void ext2fs_mark_changed(ext2_filsys fs);
664extern int ext2fs_test_changed(ext2_filsys fs);
665extern void ext2fs_mark_valid(ext2_filsys fs);
666extern void ext2fs_unmark_valid(ext2_filsys fs);
667extern int ext2fs_test_valid(ext2_filsys fs);
668extern void ext2fs_mark_ib_dirty(ext2_filsys fs);
669extern void ext2fs_mark_bb_dirty(ext2_filsys fs);
670extern int ext2fs_test_ib_dirty(ext2_filsys fs);
671extern int ext2fs_test_bb_dirty(ext2_filsys fs);
672extern int ext2fs_group_of_blk(ext2_filsys fs, blk_t blk);
673extern int ext2fs_group_of_ino(ext2_filsys fs, ino_t ino);
674
675/*
676 * The actual inlined functions definitions themselves...
677 *
678 * If NO_INLINE_FUNCS is defined, then we won't try to do inline
679 * functions at all!
680 */
681#if (defined(INCLUDE_INLINE_FUNCS) || !defined(NO_INLINE_FUNCS))
682#ifdef INCLUDE_INLINE_FUNCS
683#define _INLINE_ extern
684#else
685#define _INLINE_ extern __inline__
686#endif
687
688/*
689 * Mark a filesystem superblock as dirty
690 */
691_INLINE_ void ext2fs_mark_super_dirty(ext2_filsys fs)
692{
693 fs->flags |= EXT2_FLAG_DIRTY | EXT2_FLAG_CHANGED;
694}
695
696/*
697 * Mark a filesystem as changed
698 */
699_INLINE_ void ext2fs_mark_changed(ext2_filsys fs)
700{
701 fs->flags |= EXT2_FLAG_CHANGED;
702}
703
704/*
705 * Check to see if a filesystem has changed
706 */
707_INLINE_ int ext2fs_test_changed(ext2_filsys fs)
708{
709 return (fs->flags & EXT2_FLAG_CHANGED);
710}
711
712/*
713 * Mark a filesystem as valid
714 */
715_INLINE_ void ext2fs_mark_valid(ext2_filsys fs)
716{
717 fs->flags |= EXT2_FLAG_VALID;
718}
719
720/*
721 * Mark a filesystem as NOT valid
722 */
723_INLINE_ void ext2fs_unmark_valid(ext2_filsys fs)
724{
725 fs->flags &= ~EXT2_FLAG_VALID;
726}
727
728/*
729 * Check to see if a filesystem is valid
730 */
731_INLINE_ int ext2fs_test_valid(ext2_filsys fs)
732{
733 return (fs->flags & EXT2_FLAG_VALID);
734}
735
736/*
737 * Mark the inode bitmap as dirty
738 */
739_INLINE_ void ext2fs_mark_ib_dirty(ext2_filsys fs)
740{
741 fs->flags |= EXT2_FLAG_IB_DIRTY | EXT2_FLAG_CHANGED;
742}
743
744/*
745 * Mark the block bitmap as dirty
746 */
747_INLINE_ void ext2fs_mark_bb_dirty(ext2_filsys fs)
748{
749 fs->flags |= EXT2_FLAG_BB_DIRTY | EXT2_FLAG_CHANGED;
750}
751
752/*
753 * Check to see if a filesystem's inode bitmap is dirty
754 */
755_INLINE_ int ext2fs_test_ib_dirty(ext2_filsys fs)
756{
757 return (fs->flags & EXT2_FLAG_IB_DIRTY);
758}
759
760/*
761 * Check to see if a filesystem's block bitmap is dirty
762 */
763_INLINE_ int ext2fs_test_bb_dirty(ext2_filsys fs)
764{
765 return (fs->flags & EXT2_FLAG_BB_DIRTY);
766}
767
768/*
769 * Return the group # of a block
770 */
771_INLINE_ int ext2fs_group_of_blk(ext2_filsys fs, blk_t blk)
772{
773 return (blk - fs->super->s_first_data_block) /
774 fs->super->s_blocks_per_group;
775}
776
777/*
778 * Return the group # of an inode number
779 */
780_INLINE_ int ext2fs_group_of_ino(ext2_filsys fs, ino_t ino)
781{
782 return (ino - 1) / fs->super->s_inodes_per_group;
783}
784#undef _INLINE_
785#endif
786