blob: 3b5d2e6df25a71c8475c0553d9f819971697735c [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
Theodore Ts'o9abd2ce1998-02-16 22:00:37 +000012#ifndef _EXT2FS_EXT2FS_H
13#define _EXT2FS_EXT2FS_H
14
Theodore Ts'ofa7ef712000-05-19 02:11:41 +000015#ifdef __cplusplus
16extern "C" {
17#endif
18
Theodore Ts'o3839e651997-04-26 13:21:57 +000019/*
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000020 * Non-GNU C compilers won't necessarily understand inline
21 */
Theodore Ts'o76f875d1998-04-27 01:41:13 +000022#if (!defined(__GNUC__) && !defined(__WATCOMC__))
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000023#define NO_INLINE_FUNCS
24#endif
25
26/*
Theodore Ts'o3839e651997-04-26 13:21:57 +000027 * Where the master copy of the superblock is located, and how big
28 * superblocks are supposed to be. We define SUPERBLOCK_SIZE because
29 * the size of the superblock structure is not necessarily trustworthy
30 * (some versions have the padding set up so that the superblock is
31 * 1032 bytes long).
32 */
33#define SUPERBLOCK_OFFSET 1024
34#define SUPERBLOCK_SIZE 1024
35
Theodore Ts'of3db3561997-04-26 13:34:30 +000036/*
37 * The last ext2fs revision level that this version of the library is
38 * able to support.
39 */
Theodore Ts'oe5b38a52001-01-01 16:17:12 +000040#define EXT2_LIB_CURRENT_REV EXT2_DYNAMIC_REV
Theodore Ts'of3db3561997-04-26 13:34:30 +000041
Theodore Ts'od40259f1997-10-20 00:44:26 +000042#ifdef HAVE_SYS_TYPES_H
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000043#include <sys/types.h>
Theodore Ts'od40259f1997-10-20 00:44:26 +000044#endif
45
Theodore Ts'o5be8dc21997-12-01 18:24:10 +000046#include <stdlib.h>
Theodore Ts'o5953b9d1998-02-01 13:23:02 +000047
48#if EXT2_FLAT_INCLUDES
49#include "e2_types.h"
50#else
Theodore Ts'o76f875d1998-04-27 01:41:13 +000051#include <asm/types.h>
Theodore Ts'oe589f672000-04-03 13:45:40 +000052#if !defined(__GNUC__) || defined(__STRICT_ANSI__) /* asm/types.h already defines __s64 and __u64 otherwise */
53#if SIZEOF_LONG == 8
54typedef __signed__ long __s64;
55typedef unsigned long __u64;
56#elif SIZEOF_LONG_LONG == 8 || \
57 defined(__GNUC__) && (((~0UL) == 0xffffffff) || defined(__i386__))
Theodore Ts'o4a31c481998-03-30 01:27:25 +000058typedef __signed__ long long __s64;
59typedef unsigned long long __u64;
Theodore Ts'oe589f672000-04-03 13:45:40 +000060#endif /* SIZEOF_LONG == 8 */
Theodore Ts'o4a31c481998-03-30 01:27:25 +000061#endif
Theodore Ts'oe589f672000-04-03 13:45:40 +000062#endif /* EXT2_FLAT_INCLUDES */
Theodore Ts'o50e1e101997-04-26 13:58:21 +000063
Theodore Ts'o31dbecd2001-01-11 04:54:39 +000064typedef __u32 ext2_ino_t;
Theodore Ts'o50e1e101997-04-26 13:58:21 +000065typedef __u32 blk_t;
Theodore Ts'o2eb374c1998-09-03 01:22:57 +000066typedef __u32 dgrp_t;
Theodore Ts'o30fab291997-10-25 22:37:42 +000067typedef __u32 ext2_off_t;
Theodore Ts'o03673db1998-06-10 20:39:43 +000068typedef __s64 e2_blkcnt_t;
Theodore Ts'o3839e651997-04-26 13:21:57 +000069
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000070#if EXT2_FLAT_INCLUDES
71#include "com_err.h"
72#include "ext2_io.h"
73#include "ext2_err.h"
74#else
Theodore Ts'o3839e651997-04-26 13:21:57 +000075#include "et/com_err.h"
Theodore Ts'od40259f1997-10-20 00:44:26 +000076#include "ext2fs/ext2_io.h"
Theodore Ts'o3839e651997-04-26 13:21:57 +000077#include "ext2fs/ext2_err.h"
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000078#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000079
Theodore Ts'o4c77fe51998-04-30 17:35:59 +000080/*
81 * Portability help for Microsoft Visual C++
82 */
83#ifdef _MSC_VER
84#define EXT2_QSORT_TYPE int __cdecl
85#else
86#define EXT2_QSORT_TYPE int
87#endif
88
Theodore Ts'of3db3561997-04-26 13:34:30 +000089typedef struct struct_ext2_filsys *ext2_filsys;
90
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000091struct ext2fs_struct_generic_bitmap {
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +000092 errcode_t magic;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000093 ext2_filsys fs;
94 __u32 start, end;
95 __u32 real_end;
96 char * description;
97 char * bitmap;
98 errcode_t base_error_code;
99 __u32 reserved[7];
Theodore Ts'of3db3561997-04-26 13:34:30 +0000100};
101
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000102#define EXT2FS_MARK_ERROR 0
103#define EXT2FS_UNMARK_ERROR 1
104#define EXT2FS_TEST_ERROR 2
Theodore Ts'of3db3561997-04-26 13:34:30 +0000105
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000106typedef struct ext2fs_struct_generic_bitmap *ext2fs_generic_bitmap;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000107typedef struct ext2fs_struct_generic_bitmap *ext2fs_inode_bitmap;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000108typedef struct ext2fs_struct_generic_bitmap *ext2fs_block_bitmap;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000109
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000110#ifdef EXT2_DYNAMIC_REV
111#define EXT2_FIRST_INODE(s) EXT2_FIRST_INO(s)
112#else
113#define EXT2_FIRST_INODE(s) EXT2_FIRST_INO
114#define EXT2_INODE_SIZE(s) sizeof(struct ext2_inode)
115#endif
116
Theodore Ts'o3839e651997-04-26 13:21:57 +0000117/*
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000118 * badblocks list definitions
119 */
120
121typedef struct ext2_struct_badblocks_list *ext2_badblocks_list;
122typedef struct ext2_struct_badblocks_iterate *ext2_badblocks_iterate;
123
124/* old */
125typedef struct ext2_struct_badblocks_list *badblocks_list;
126typedef struct ext2_struct_badblocks_iterate *badblocks_iterate;
127
128#define BADBLOCKS_FLAG_DIRTY 1
129
130/*
131 * ext2_dblist structure and abstractions (see dblist.c)
132 */
133struct ext2_db_entry {
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000134 ext2_ino_t ino;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000135 blk_t blk;
136 int blockcnt;
137};
138
139typedef struct ext2_struct_dblist *ext2_dblist;
140
141#define DBLIST_ABORT 1
142
143/*
Theodore Ts'o30fab291997-10-25 22:37:42 +0000144 * ext2_fileio definitions
145 */
146
147#define EXT2_FILE_WRITE 0x0001
148#define EXT2_FILE_CREATE 0x0002
149
150#define EXT2_FILE_MASK 0x00FF
151
152#define EXT2_FILE_BUF_DIRTY 0x4000
153#define EXT2_FILE_BUF_VALID 0x2000
154
155typedef struct ext2_file *ext2_file_t;
156
157#define EXT2_SEEK_SET 0
158#define EXT2_SEEK_CUR 1
159#define EXT2_SEEK_END 2
160
161/*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000162 * Flags for the ext2_filsys structure
163 */
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000164#define EXT2_FLAG_RW 0x01
165#define EXT2_FLAG_CHANGED 0x02
166#define EXT2_FLAG_DIRTY 0x04
167#define EXT2_FLAG_VALID 0x08
168#define EXT2_FLAG_IB_DIRTY 0x10
169#define EXT2_FLAG_BB_DIRTY 0x20
Theodore Ts'o5c576471997-04-29 15:29:49 +0000170#define EXT2_FLAG_SWAP_BYTES 0x40
171#define EXT2_FLAG_SWAP_BYTES_READ 0x80
172#define EXT2_FLAG_SWAP_BYTES_WRITE 0x100
173#define EXT2_FLAG_MASTER_SB_ONLY 0x200
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000174#define EXT2_FLAG_FORCE 0x400
Theodore Ts'o43ec8732001-01-03 14:56:46 +0000175#define EXT2_FLAG_SUPER_ONLY 0x800
Theodore Ts'o3839e651997-04-26 13:21:57 +0000176
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000177/*
178 * Special flag in the ext2 inode i_flag field that means that this is
179 * a new inode. (So that ext2_write_inode() can clear extra fields.)
180 */
181#define EXT2_NEW_INODE_FL 0x80000000
182
Theodore Ts'o4e246702000-12-09 14:39:16 +0000183/*
184 * Flags for mkjournal
185 *
186 * EXT2_MKJOURNAL_V1_SUPER Make a (deprecated) V1 journal superblock
187 */
188#define EXT2_MKJOURNAL_V1_SUPER 0x0000001
189
Theodore Ts'o3839e651997-04-26 13:21:57 +0000190struct struct_ext2_filsys {
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +0000191 errcode_t magic;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000192 io_channel io;
193 int flags;
194 char * device_name;
195 struct ext2_super_block * super;
196 int blocksize;
197 int fragsize;
Theodore Ts'o2eb374c1998-09-03 01:22:57 +0000198 dgrp_t group_desc_count;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000199 unsigned long desc_blocks;
200 struct ext2_group_desc * group_desc;
201 int inode_blocks_per_group;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000202 ext2fs_inode_bitmap inode_map;
203 ext2fs_block_bitmap block_map;
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000204 errcode_t (*get_blocks)(ext2_filsys fs, ext2_ino_t ino, blk_t *blocks);
205 errcode_t (*check_directory)(ext2_filsys fs, ext2_ino_t ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000206 errcode_t (*write_bitmaps)(ext2_filsys fs);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000207 errcode_t (*read_inode)(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000208 struct ext2_inode *inode);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000209 errcode_t (*write_inode)(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000210 struct ext2_inode *inode);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000211 badblocks_list badblocks;
212 ext2_dblist dblist;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000213 __u32 stride; /* for mke2fs */
Theodore Ts'oc180ac82000-10-26 20:24:43 +0000214 struct ext2_super_block * orig_super;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000215 /*
216 * Reserved for future expansion
217 */
Theodore Ts'oc180ac82000-10-26 20:24:43 +0000218 __u32 reserved[10];
Theodore Ts'o3839e651997-04-26 13:21:57 +0000219
220 /*
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000221 * Reserved for the use of the calling application.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000222 */
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000223 void * priv_data;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000224
225 /*
226 * Inode cache
227 */
228 struct ext2_inode_cache *icache;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000229};
230
Theodore Ts'o5953b9d1998-02-01 13:23:02 +0000231#if EXT2_FLAT_INCLUDES
232#include "e2_bitops.h"
233#else
Theodore Ts'of3db3561997-04-26 13:34:30 +0000234#include "ext2fs/bitops.h"
Theodore Ts'o5953b9d1998-02-01 13:23:02 +0000235#endif
Theodore Ts'od40259f1997-10-20 00:44:26 +0000236
Theodore Ts'o3839e651997-04-26 13:21:57 +0000237/*
238 * Return flags for the block iterator functions
239 */
240#define BLOCK_CHANGED 1
241#define BLOCK_ABORT 2
242#define BLOCK_ERROR 4
243
244/*
245 * Block interate flags
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000246 *
247 * BLOCK_FLAG_APPEND, or BLOCK_FLAG_HOLE, indicates that the interator
248 * function should be called on blocks where the block number is zero.
249 * This is used by ext2fs_expand_dir() to be able to add a new block
250 * to an inode. It can also be used for programs that want to be able
251 * to deal with files that contain "holes".
252 *
253 * BLOCK_FLAG_TRAVERSE indicates that the iterator function for the
254 * indirect, doubly indirect, etc. blocks should be called after all
255 * of the blocks containined in the indirect blocks are processed.
256 * This is useful if you are going to be deallocating blocks from an
257 * inode.
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000258 *
259 * BLOCK_FLAG_DATA_ONLY indicates that the iterator function should be
260 * called for data blocks only.
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000261 *
262 * BLOCK_FLAG_NO_LARGE is for internal use only. It informs
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000263 * ext2fs_block_iterate2 that large files won't be accepted.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000264 */
265#define BLOCK_FLAG_APPEND 1
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000266#define BLOCK_FLAG_HOLE 1
Theodore Ts'o3839e651997-04-26 13:21:57 +0000267#define BLOCK_FLAG_DEPTH_TRAVERSE 2
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000268#define BLOCK_FLAG_DATA_ONLY 4
269
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000270#define BLOCK_FLAG_NO_LARGE 0x1000
271
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000272/*
273 * Magic "block count" return values for the block iterator function.
274 */
275#define BLOCK_COUNT_IND (-1)
276#define BLOCK_COUNT_DIND (-2)
277#define BLOCK_COUNT_TIND (-3)
278#define BLOCK_COUNT_TRANSLATOR (-4)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000279
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000280#if 0
Theodore Ts'o3839e651997-04-26 13:21:57 +0000281/*
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000282 * Flags for ext2fs_move_blocks
283 */
284#define EXT2_BMOVE_GET_DBLIST 0x0001
Theodore Ts'o36f21431997-06-14 07:25:40 +0000285#define EXT2_BMOVE_DEBUG 0x0002
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000286#endif
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000287
288/*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000289 * Return flags for the directory iterator functions
290 */
291#define DIRENT_CHANGED 1
292#define DIRENT_ABORT 2
293#define DIRENT_ERROR 3
294
295/*
296 * Directory iterator flags
297 */
298
299#define DIRENT_FLAG_INCLUDE_EMPTY 1
300
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000301
302#define DIRENT_DOT_FILE 1
303#define DIRENT_DOT_DOT_FILE 2
304#define DIRENT_OTHER_FILE 3
305
Theodore Ts'o3839e651997-04-26 13:21:57 +0000306/*
307 * Inode scan definitions
308 */
Theodore Ts'of3db3561997-04-26 13:34:30 +0000309typedef struct ext2_struct_inode_scan *ext2_inode_scan;
310
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000311/*
312 * ext2fs_scan flags
313 */
314#define EXT2_SF_CHK_BADBLOCKS 0x0001
315#define EXT2_SF_BAD_INODE_BLK 0x0002
316#define EXT2_SF_BAD_EXTRA_BYTES 0x0004
317#define EXT2_SF_SKIP_MISSING_ITABLE 0x0008
Theodore Ts'o3839e651997-04-26 13:21:57 +0000318
Theodore Ts'of3db3561997-04-26 13:34:30 +0000319/*
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000320 * ext2fs_check_if_mounted flags
321 */
322#define EXT2_MF_MOUNTED 1
323#define EXT2_MF_ISROOT 2
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000324#define EXT2_MF_READONLY 4
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000325
326/*
327 * Ext2/linux mode flags. We define them here so that we don't need
328 * to depend on the OS's sys/stat.h, since we may be compiling on a
329 * non-Linux system.
330 */
331#define LINUX_S_IFMT 00170000
332#define LINUX_S_IFSOCK 0140000
333#define LINUX_S_IFLNK 0120000
334#define LINUX_S_IFREG 0100000
335#define LINUX_S_IFBLK 0060000
336#define LINUX_S_IFDIR 0040000
337#define LINUX_S_IFCHR 0020000
338#define LINUX_S_IFIFO 0010000
339#define LINUX_S_ISUID 0004000
340#define LINUX_S_ISGID 0002000
341#define LINUX_S_ISVTX 0001000
342
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000343#define LINUX_S_IRWXU 00700
344#define LINUX_S_IRUSR 00400
345#define LINUX_S_IWUSR 00200
346#define LINUX_S_IXUSR 00100
347
348#define LINUX_S_IRWXG 00070
349#define LINUX_S_IRGRP 00040
350#define LINUX_S_IWGRP 00020
351#define LINUX_S_IXGRP 00010
352
353#define LINUX_S_IRWXO 00007
354#define LINUX_S_IROTH 00004
355#define LINUX_S_IWOTH 00002
356#define LINUX_S_IXOTH 00001
357
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000358#define LINUX_S_ISLNK(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFLNK)
359#define LINUX_S_ISREG(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFREG)
360#define LINUX_S_ISDIR(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFDIR)
361#define LINUX_S_ISCHR(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFCHR)
362#define LINUX_S_ISBLK(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFBLK)
363#define LINUX_S_ISFIFO(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFIFO)
364#define LINUX_S_ISSOCK(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFSOCK)
365
366/*
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000367 * ext2_icount_t abstraction
368 */
369#define EXT2_ICOUNT_OPT_INCREMENT 0x01
370
371typedef struct ext2_icount *ext2_icount_t;
372
373/*
Theodore Ts'o30fab291997-10-25 22:37:42 +0000374 * Flags for ext2fs_bmap
375 */
376#define BMAP_ALLOC 1
377
378/*
Theodore Ts'o72ed1262000-11-12 19:32:20 +0000379 * Flags for imager.c functions
380 */
381#define IMAGER_FLAG_INODEMAP 1
382#define IMAGER_FLAG_SPARSEWRITE 2
383
384/*
Theodore Ts'of3db3561997-04-26 13:34:30 +0000385 * For checking structure magic numbers...
386 */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000387
Theodore Ts'of3db3561997-04-26 13:34:30 +0000388#define EXT2_CHECK_MAGIC(struct, code) \
389 if ((struct)->magic != (code)) return (code)
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000390
391
392/*
Theodore Ts'oe5b38a52001-01-01 16:17:12 +0000393 * For ext2 compression support
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000394 */
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000395#define EXT2FS_COMPRESSED_BLKADDR ((blk_t) 0xffffffff)
396#define HOLE_BLKADDR(_b) ((_b) == 0 || (_b) == EXT2FS_COMPRESSED_BLKADDR)
397
Theodore Ts'o521e3681997-04-29 17:48:10 +0000398/*
Theodore Ts'o426d7342001-01-13 01:29:05 +0000399 * Features supported by this version of the library
Theodore Ts'o521e3681997-04-29 17:48:10 +0000400 */
Theodore Ts'o3a5f8ea1999-09-14 20:21:26 +0000401#define EXT2_LIB_FEATURE_COMPAT_SUPP (EXT2_FEATURE_COMPAT_DIR_PREALLOC|\
402 EXT2_FEATURE_COMPAT_IMAGIC_INODES|\
403 EXT3_FEATURE_COMPAT_HAS_JOURNAL)
Theodore Ts'o2fe1efe2000-12-31 13:39:17 +0000404
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000405/* This #ifdef is temporary until compression is fully supported */
406#ifdef ENABLE_COMPRESSION
Theodore Ts'oe589f672000-04-03 13:45:40 +0000407#ifndef I_KNOW_THAT_COMPRESSION_IS_EXPERIMENTAL
408/* If the below warning bugs you, then have
409 `CPPFLAGS=-DI_KNOW_THAT_COMPRESSION_IS_EXPERIMENTAL' in your
410 environment at configure time. */
Theodore Ts'ocdaf1fa2001-01-05 22:23:22 +0000411 #warning "Compression support is experimental"
Theodore Ts'oe589f672000-04-03 13:45:40 +0000412#endif
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000413#define EXT2_LIB_FEATURE_INCOMPAT_SUPP (EXT2_FEATURE_INCOMPAT_FILETYPE|\
Theodore Ts'oab146762000-07-07 04:37:35 +0000414 EXT2_FEATURE_INCOMPAT_COMPRESSION|\
415 EXT3_FEATURE_INCOMPAT_RECOVER)
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000416#else
Theodore Ts'oab146762000-07-07 04:37:35 +0000417#define EXT2_LIB_FEATURE_INCOMPAT_SUPP (EXT2_FEATURE_INCOMPAT_FILETYPE|\
418 EXT3_FEATURE_INCOMPAT_RECOVER)
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000419#endif
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000420#define EXT2_LIB_FEATURE_RO_COMPAT_SUPP (EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER|\
421 EXT2_FEATURE_RO_COMPAT_LARGE_FILE)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000422/*
423 * function prototypes
424 */
425
426/* alloc.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000427extern errcode_t ext2fs_new_inode(ext2_filsys fs, ext2_ino_t dir, int mode,
428 ext2fs_inode_bitmap map, ext2_ino_t *ret);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000429extern errcode_t ext2fs_new_block(ext2_filsys fs, blk_t goal,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000430 ext2fs_block_bitmap map, blk_t *ret);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000431extern errcode_t ext2fs_get_free_blocks(ext2_filsys fs, blk_t start,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000432 blk_t finish, int num,
433 ext2fs_block_bitmap map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000434 blk_t *ret);
Theodore Ts'o30fab291997-10-25 22:37:42 +0000435extern errcode_t ext2fs_alloc_block(ext2_filsys fs, blk_t goal,
436 char *block_buf, blk_t *ret);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000437
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000438/* alloc_tables.c */
439extern errcode_t ext2fs_allocate_tables(ext2_filsys fs);
Theodore Ts'o2eb374c1998-09-03 01:22:57 +0000440extern errcode_t ext2fs_allocate_group_table(ext2_filsys fs, dgrp_t group,
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000441 ext2fs_block_bitmap bmap);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000442
Theodore Ts'o3839e651997-04-26 13:21:57 +0000443/* badblocks.c */
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000444extern errcode_t ext2fs_badblocks_list_create(ext2_badblocks_list *ret,
445 int size);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000446extern errcode_t ext2fs_badblocks_list_add(ext2_badblocks_list bb,
447 blk_t blk);
448extern int ext2fs_badblocks_list_test(ext2_badblocks_list bb,
449 blk_t blk);
450extern errcode_t
451 ext2fs_badblocks_list_iterate_begin(ext2_badblocks_list bb,
452 ext2_badblocks_iterate *ret);
453extern int ext2fs_badblocks_list_iterate(ext2_badblocks_iterate iter,
454 blk_t *blk);
455extern void ext2fs_badblocks_list_iterate_end(ext2_badblocks_iterate iter);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000456extern errcode_t ext2fs_badblocks_copy(ext2_badblocks_list src,
457 ext2_badblocks_list *dest);
Theodore Ts'o57dca852000-07-04 19:20:25 +0000458extern int ext2fs_badblocks_equal(ext2_badblocks_list bb1,
459 ext2_badblocks_list bb2);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000460
461/* bb_compat */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000462extern errcode_t badblocks_list_create(badblocks_list *ret, int size);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000463extern errcode_t badblocks_list_add(badblocks_list bb, blk_t blk);
464extern int badblocks_list_test(badblocks_list bb, blk_t blk);
465extern errcode_t badblocks_list_iterate_begin(badblocks_list bb,
466 badblocks_iterate *ret);
467extern int badblocks_list_iterate(badblocks_iterate iter, blk_t *blk);
468extern void badblocks_list_iterate_end(badblocks_iterate iter);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000469extern void badblocks_list_free(badblocks_list bb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000470
471/* bb_inode.c */
472extern errcode_t ext2fs_update_bb_inode(ext2_filsys fs,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000473 ext2_badblocks_list bb_list);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000474
475/* bitmaps.c */
476extern errcode_t ext2fs_write_inode_bitmap(ext2_filsys fs);
477extern errcode_t ext2fs_write_block_bitmap (ext2_filsys fs);
478extern errcode_t ext2fs_read_inode_bitmap (ext2_filsys fs);
479extern errcode_t ext2fs_read_block_bitmap(ext2_filsys fs);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000480extern errcode_t ext2fs_allocate_generic_bitmap(__u32 start,
481 __u32 end,
482 __u32 real_end,
483 const char *descr,
484 ext2fs_generic_bitmap *ret);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000485extern errcode_t ext2fs_allocate_block_bitmap(ext2_filsys fs,
486 const char *descr,
487 ext2fs_block_bitmap *ret);
488extern errcode_t ext2fs_allocate_inode_bitmap(ext2_filsys fs,
489 const char *descr,
490 ext2fs_inode_bitmap *ret);
491extern errcode_t ext2fs_fudge_inode_bitmap_end(ext2fs_inode_bitmap bitmap,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000492 ext2_ino_t end, ext2_ino_t *oend);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000493extern errcode_t ext2fs_fudge_block_bitmap_end(ext2fs_block_bitmap bitmap,
494 blk_t end, blk_t *oend);
495extern void ext2fs_clear_inode_bitmap(ext2fs_inode_bitmap bitmap);
496extern void ext2fs_clear_block_bitmap(ext2fs_block_bitmap bitmap);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000497extern errcode_t ext2fs_read_bitmaps(ext2_filsys fs);
498extern errcode_t ext2fs_write_bitmaps(ext2_filsys fs);
499
500/* block.c */
501extern errcode_t ext2fs_block_iterate(ext2_filsys fs,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000502 ext2_ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000503 int flags,
504 char *block_buf,
505 int (*func)(ext2_filsys fs,
506 blk_t *blocknr,
507 int blockcnt,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000508 void *priv_data),
509 void *priv_data);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000510errcode_t ext2fs_block_iterate2(ext2_filsys fs,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000511 ext2_ino_t ino,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000512 int flags,
513 char *block_buf,
514 int (*func)(ext2_filsys fs,
515 blk_t *blocknr,
Theodore Ts'o03673db1998-06-10 20:39:43 +0000516 e2_blkcnt_t blockcnt,
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000517 blk_t ref_blk,
518 int ref_offset,
519 void *priv_data),
520 void *priv_data);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000521
Theodore Ts'o30fab291997-10-25 22:37:42 +0000522/* bmap.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000523extern errcode_t ext2fs_bmap(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o30fab291997-10-25 22:37:42 +0000524 struct ext2_inode *inode,
525 char *block_buf, int bmap_flags,
526 blk_t block, blk_t *phys_blk);
527
528
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000529#if 0
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000530/* bmove.c */
531extern errcode_t ext2fs_move_blocks(ext2_filsys fs,
532 ext2fs_block_bitmap reserve,
Theodore Ts'o9941fb71997-06-11 22:27:41 +0000533 ext2fs_block_bitmap alloc_map,
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000534 int flags);
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000535#endif
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000536
Theodore Ts'of3db3561997-04-26 13:34:30 +0000537/* check_desc.c */
538extern errcode_t ext2fs_check_desc(ext2_filsys fs);
539
Theodore Ts'o3839e651997-04-26 13:21:57 +0000540/* closefs.c */
541extern errcode_t ext2fs_close(ext2_filsys fs);
542extern errcode_t ext2fs_flush(ext2_filsys fs);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000543extern int ext2fs_bg_has_super(ext2_filsys fs, int group_block);
Theodore Ts'oa917d1c2000-12-13 18:36:23 +0000544extern void ext2fs_update_dynamic_rev(ext2_filsys fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000545
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000546/* cmp_bitmaps.c */
547extern errcode_t ext2fs_compare_block_bitmap(ext2fs_block_bitmap bm1,
548 ext2fs_block_bitmap bm2);
549extern errcode_t ext2fs_compare_inode_bitmap(ext2fs_inode_bitmap bm1,
550 ext2fs_inode_bitmap bm2);
551
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000552/* dblist.c */
553
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000554extern errcode_t ext2fs_get_num_dirs(ext2_filsys fs, ext2_ino_t *ret_num_dirs);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000555extern errcode_t ext2fs_init_dblist(ext2_filsys fs, ext2_dblist *ret_dblist);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000556extern errcode_t ext2fs_add_dir_block(ext2_dblist dblist, ext2_ino_t ino,
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000557 blk_t blk, int blockcnt);
558extern errcode_t ext2fs_dblist_iterate(ext2_dblist dblist,
559 int (*func)(ext2_filsys fs, struct ext2_db_entry *db_info,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000560 void *priv_data),
561 void *priv_data);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000562extern errcode_t ext2fs_set_dir_block(ext2_dblist dblist, ext2_ino_t ino,
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000563 blk_t blk, int blockcnt);
564extern errcode_t ext2fs_copy_dblist(ext2_dblist src,
565 ext2_dblist *dest);
Theodore Ts'o549860c1997-06-17 03:55:00 +0000566extern int ext2fs_dblist_count(ext2_dblist dblist);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000567
568/* dblist_dir.c */
569extern errcode_t
570 ext2fs_dblist_dir_iterate(ext2_dblist dblist,
571 int flags,
572 char *block_buf,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000573 int (*func)(ext2_ino_t dir,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000574 int entry,
575 struct ext2_dir_entry *dirent,
576 int offset,
577 int blocksize,
578 char *buf,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000579 void *priv_data),
580 void *priv_data);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000581
582/* dirblock.c */
583extern errcode_t ext2fs_read_dir_block(ext2_filsys fs, blk_t block,
584 void *buf);
585extern errcode_t ext2fs_write_dir_block(ext2_filsys fs, blk_t block,
586 void *buf);
587
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000588/* dir_iterate.c */
589extern errcode_t ext2fs_dir_iterate(ext2_filsys fs,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000590 ext2_ino_t dir,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000591 int flags,
592 char *block_buf,
593 int (*func)(struct ext2_dir_entry *dirent,
594 int offset,
595 int blocksize,
596 char *buf,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000597 void *priv_data),
598 void *priv_data);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000599
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000600/* dupfs.c */
601extern errcode_t ext2fs_dup_handle(ext2_filsys src, ext2_filsys *dest);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000602
Theodore Ts'o3839e651997-04-26 13:21:57 +0000603/* expanddir.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000604extern errcode_t ext2fs_expand_dir(ext2_filsys fs, ext2_ino_t dir);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000605
Theodore Ts'o30fab291997-10-25 22:37:42 +0000606/* fileio.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000607extern errcode_t ext2fs_file_open(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o30fab291997-10-25 22:37:42 +0000608 int flags, ext2_file_t *ret);
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000609extern ext2_filsys ext2fs_file_get_fs(ext2_file_t file);
Theodore Ts'o30fab291997-10-25 22:37:42 +0000610extern errcode_t ext2fs_file_close(ext2_file_t file);
611extern errcode_t ext2fs_file_read(ext2_file_t file, void *buf,
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000612 unsigned int wanted, unsigned int *got);
Theodore Ts'o30fab291997-10-25 22:37:42 +0000613extern errcode_t ext2fs_file_write(ext2_file_t file, void *buf,
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000614 unsigned int nbytes, unsigned int *written);
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000615extern errcode_t ext2fs_file_lseek(ext2_file_t file, ext2_off_t offset,
616 int whence, ext2_off_t *ret_pos);
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000617extern ext2_off_t ext2fs_file_get_size(ext2_file_t file);
618extern errcode_t ext2fs_file_set_size(ext2_file_t file, ext2_off_t size);
Theodore Ts'o30fab291997-10-25 22:37:42 +0000619
Theodore Ts'ode23aa12000-08-19 17:00:47 +0000620/* finddev.c */
621extern char *ext2fs_find_block_device(dev_t device);
622
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +0000623/* flushb.c */
624extern errcode_t ext2fs_sync_device(int fd, int flushb);
625
Theodore Ts'o3839e651997-04-26 13:21:57 +0000626/* freefs.c */
627extern void ext2fs_free(ext2_filsys fs);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000628extern void ext2fs_free_generic_bitmap(ext2fs_inode_bitmap bitmap);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000629extern void ext2fs_free_block_bitmap(ext2fs_block_bitmap bitmap);
630extern void ext2fs_free_inode_bitmap(ext2fs_inode_bitmap bitmap);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000631extern void ext2fs_free_dblist(ext2_dblist dblist);
632extern void ext2fs_badblocks_list_free(badblocks_list bb);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000633
634/* getsize.c */
635extern errcode_t ext2fs_get_device_size(const char *file, int blocksize,
636 blk_t *retblocks);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000637
Theodore Ts'o72ed1262000-11-12 19:32:20 +0000638/* imager.c */
639extern errcode_t ext2fs_image_inode_write(ext2_filsys fs, int fd, int flags);
640extern errcode_t ext2fs_image_inode_read(ext2_filsys fs, int fd, int flags);
641extern errcode_t ext2fs_image_super_write(ext2_filsys fs, int fd, int flags);
642extern errcode_t ext2fs_image_super_read(ext2_filsys fs, int fd, int flags);
643extern errcode_t ext2fs_image_bitmap_write(ext2_filsys fs, int fd, int flags);
644extern errcode_t ext2fs_image_bitmap_read(ext2_filsys fs, int fd, int flags);
645
Theodore Ts'o3839e651997-04-26 13:21:57 +0000646/* initialize.c */
647extern errcode_t ext2fs_initialize(const char *name, int flags,
648 struct ext2_super_block *param,
649 io_manager manager, ext2_filsys *ret_fs);
650
651/* inode.c */
Theodore Ts'o72ed1262000-11-12 19:32:20 +0000652extern errcode_t ext2fs_flush_icache(ext2_filsys fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000653extern errcode_t ext2fs_open_inode_scan(ext2_filsys fs, int buffer_blocks,
654 ext2_inode_scan *ret_scan);
655extern void ext2fs_close_inode_scan(ext2_inode_scan scan);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000656extern errcode_t ext2fs_get_next_inode(ext2_inode_scan scan, ext2_ino_t *ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000657 struct ext2_inode *inode);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000658extern errcode_t ext2fs_inode_scan_goto_blockgroup(ext2_inode_scan scan,
659 int group);
660extern void ext2fs_set_inode_callback
661 (ext2_inode_scan scan,
662 errcode_t (*done_group)(ext2_filsys fs,
663 ext2_inode_scan scan,
664 dgrp_t group,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000665 void * priv_data),
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000666 void *done_group_data);
667extern int ext2fs_inode_scan_flags(ext2_inode_scan scan, int set_flags,
668 int clear_flags);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000669extern errcode_t ext2fs_read_inode (ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000670 struct ext2_inode * inode);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000671extern errcode_t ext2fs_write_inode(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000672 struct ext2_inode * inode);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000673extern errcode_t ext2fs_get_blocks(ext2_filsys fs, ext2_ino_t ino, blk_t *blocks);
674extern errcode_t ext2fs_check_directory(ext2_filsys fs, ext2_ino_t ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000675
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000676/* icount.c */
677extern void ext2fs_free_icount(ext2_icount_t icount);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000678extern errcode_t ext2fs_create_icount2(ext2_filsys fs, int flags, int size,
679 ext2_icount_t hint, ext2_icount_t *ret);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000680extern errcode_t ext2fs_create_icount(ext2_filsys fs, int flags, int size,
681 ext2_icount_t *ret);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000682extern errcode_t ext2fs_icount_fetch(ext2_icount_t icount, ext2_ino_t ino,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000683 __u16 *ret);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000684extern errcode_t ext2fs_icount_increment(ext2_icount_t icount, ext2_ino_t ino,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000685 __u16 *ret);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000686extern errcode_t ext2fs_icount_decrement(ext2_icount_t icount, ext2_ino_t ino,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000687 __u16 *ret);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000688extern errcode_t ext2fs_icount_store(ext2_icount_t icount, ext2_ino_t ino,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000689 __u16 count);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000690extern ext2_ino_t ext2fs_get_icount_size(ext2_icount_t icount);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000691errcode_t ext2fs_icount_validate(ext2_icount_t icount, FILE *);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000692
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000693/* ismounted.c */
694extern errcode_t ext2fs_check_if_mounted(const char *file, int *mount_flags);
Theodore Ts'o43ec8732001-01-03 14:56:46 +0000695extern errcode_t ext2fs_check_mount_point(const char *device, int *mount_flags,
696 char *mtpt, int mtlen);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000697
Theodore Ts'o3839e651997-04-26 13:21:57 +0000698/* namei.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000699extern errcode_t ext2fs_lookup(ext2_filsys fs, ext2_ino_t dir, const char *name,
700 int namelen, char *buf, ext2_ino_t *inode);
701extern errcode_t ext2fs_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
702 const char *name, ext2_ino_t *inode);
703errcode_t ext2fs_namei_follow(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
704 const char *name, ext2_ino_t *inode);
705extern errcode_t ext2fs_follow_link(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
706 ext2_ino_t inode, ext2_ino_t *res_inode);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000707
708/* native.c */
709int ext2fs_native_flag(void);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000710
711/* newdir.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000712extern errcode_t ext2fs_new_dir_block(ext2_filsys fs, ext2_ino_t dir_ino,
713 ext2_ino_t parent_ino, char **block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000714
715/* mkdir.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000716extern errcode_t ext2fs_mkdir(ext2_filsys fs, ext2_ino_t parent, ext2_ino_t inum,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000717 const char *name);
718
Theodore Ts'od3cd93c2000-10-24 18:33:16 +0000719/* mkjournal.c */
720extern errcode_t ext2fs_add_journal_device(ext2_filsys fs, char *device,
Theodore Ts'o4e246702000-12-09 14:39:16 +0000721 blk_t size, int flags);
Theodore Ts'o31a17b32001-01-03 13:04:12 +0000722extern errcode_t ext2fs_add_journal_inode(ext2_filsys fs, blk_t size,
723 int flags);
Theodore Ts'od3cd93c2000-10-24 18:33:16 +0000724
Theodore Ts'o3839e651997-04-26 13:21:57 +0000725/* openfs.c */
726extern errcode_t ext2fs_open(const char *name, int flags, int superblock,
727 int block_size, io_manager manager,
728 ext2_filsys *ret_fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000729
730/* get_pathname.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000731extern errcode_t ext2fs_get_pathname(ext2_filsys fs, ext2_ino_t dir, ext2_ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000732 char **name);
733
734/* link.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000735errcode_t ext2fs_link(ext2_filsys fs, ext2_ino_t dir, const char *name,
736 ext2_ino_t ino, int flags);
737errcode_t ext2fs_unlink(ext2_filsys fs, ext2_ino_t dir, const char *name,
738 ext2_ino_t ino, int flags);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000739
740/* read_bb.c */
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000741extern errcode_t ext2fs_read_bb_inode(ext2_filsys fs,
742 ext2_badblocks_list *bb_list);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000743
744/* read_bb_file.c */
Theodore Ts'o57dca852000-07-04 19:20:25 +0000745extern errcode_t ext2fs_read_bb_FILE2(ext2_filsys fs, FILE *f,
746 ext2_badblocks_list *bb_list,
747 void *private,
748 void (*invalid)(ext2_filsys fs,
749 blk_t blk,
750 char *badstr,
751 void *private));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000752extern errcode_t ext2fs_read_bb_FILE(ext2_filsys fs, FILE *f,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000753 ext2_badblocks_list *bb_list,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000754 void (*invalid)(ext2_filsys fs,
755 blk_t blk));
756
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000757/* rs_bitmap.c */
758extern errcode_t ext2fs_resize_generic_bitmap(__u32 new_end,
759 __u32 new_real_end,
760 ext2fs_generic_bitmap bmap);
761extern errcode_t ext2fs_resize_inode_bitmap(__u32 new_end, __u32 new_real_end,
762 ext2fs_inode_bitmap bmap);
763extern errcode_t ext2fs_resize_block_bitmap(__u32 new_end, __u32 new_real_end,
764 ext2fs_block_bitmap bmap);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000765extern errcode_t ext2fs_copy_bitmap(ext2fs_generic_bitmap src,
766 ext2fs_generic_bitmap *dest);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000767
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000768/* swapfs.c */
769extern void ext2fs_swap_super(struct ext2_super_block * super);
770extern void ext2fs_swap_group_desc(struct ext2_group_desc *gdp);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000771extern void ext2fs_swap_inode(ext2_filsys fs,struct ext2_inode *t,
772 struct ext2_inode *f, int hostorder);
773
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000774/* valid_blk.c */
Theodore Ts'o521e3681997-04-29 17:48:10 +0000775extern int ext2fs_inode_has_valid_blocks(struct ext2_inode *inode);
776
777/* version.c */
778extern int ext2fs_parse_version_string(const char *ver_string);
779extern int ext2fs_get_library_version(const char **ver_string,
780 const char **date_string);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000781
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000782/* write_bb_file.c */
783extern errcode_t ext2fs_write_bb_FILE(ext2_badblocks_list bb_list,
784 unsigned int flags,
785 FILE *f);
786
787
Theodore Ts'o3839e651997-04-26 13:21:57 +0000788/* inline functions */
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000789extern errcode_t ext2fs_get_mem(unsigned long size, void **ptr);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000790extern errcode_t ext2fs_free_mem(void **ptr);
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000791extern errcode_t ext2fs_resize_mem(unsigned long old_size,
792 unsigned long size, void **ptr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000793extern void ext2fs_mark_super_dirty(ext2_filsys fs);
794extern void ext2fs_mark_changed(ext2_filsys fs);
795extern int ext2fs_test_changed(ext2_filsys fs);
796extern void ext2fs_mark_valid(ext2_filsys fs);
797extern void ext2fs_unmark_valid(ext2_filsys fs);
798extern int ext2fs_test_valid(ext2_filsys fs);
799extern void ext2fs_mark_ib_dirty(ext2_filsys fs);
800extern void ext2fs_mark_bb_dirty(ext2_filsys fs);
801extern int ext2fs_test_ib_dirty(ext2_filsys fs);
802extern int ext2fs_test_bb_dirty(ext2_filsys fs);
803extern int ext2fs_group_of_blk(ext2_filsys fs, blk_t blk);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000804extern int ext2fs_group_of_ino(ext2_filsys fs, ext2_ino_t ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000805
806/*
807 * The actual inlined functions definitions themselves...
808 *
809 * If NO_INLINE_FUNCS is defined, then we won't try to do inline
810 * functions at all!
811 */
812#if (defined(INCLUDE_INLINE_FUNCS) || !defined(NO_INLINE_FUNCS))
813#ifdef INCLUDE_INLINE_FUNCS
814#define _INLINE_ extern
815#else
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000816#ifdef __GNUC__
Theodore Ts'o3839e651997-04-26 13:21:57 +0000817#define _INLINE_ extern __inline__
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000818#else /* For Watcom C */
819#define _INLINE_ extern inline
820#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000821#endif
822
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000823#ifndef EXT2_CUSTOM_MEMORY_ROUTINES
824/*
825 * Allocate memory
826 */
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000827_INLINE_ errcode_t ext2fs_get_mem(unsigned long size, void **ptr)
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000828{
829 *ptr = malloc(size);
830 if (!*ptr)
Theodore Ts'o291c9041997-10-31 06:17:08 +0000831 return EXT2_ET_NO_MEMORY;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000832 return 0;
833}
834
835/*
836 * Free memory
837 */
838_INLINE_ errcode_t ext2fs_free_mem(void **ptr)
839{
840 free(*ptr);
841 *ptr = 0;
842 return 0;
843}
844
845/*
846 * Resize memory
847 */
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000848_INLINE_ errcode_t ext2fs_resize_mem(unsigned long old_size,
849 unsigned long size, void **ptr)
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000850{
851 void *p;
852
853 p = realloc(*ptr, size);
854 if (!p)
Theodore Ts'o291c9041997-10-31 06:17:08 +0000855 return EXT2_ET_NO_MEMORY;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000856 *ptr = p;
857 return 0;
858}
859#endif /* Custom memory routines */
860
Theodore Ts'o3839e651997-04-26 13:21:57 +0000861/*
862 * Mark a filesystem superblock as dirty
863 */
864_INLINE_ void ext2fs_mark_super_dirty(ext2_filsys fs)
865{
866 fs->flags |= EXT2_FLAG_DIRTY | EXT2_FLAG_CHANGED;
867}
868
869/*
870 * Mark a filesystem as changed
871 */
872_INLINE_ void ext2fs_mark_changed(ext2_filsys fs)
873{
874 fs->flags |= EXT2_FLAG_CHANGED;
875}
876
877/*
878 * Check to see if a filesystem has changed
879 */
880_INLINE_ int ext2fs_test_changed(ext2_filsys fs)
881{
882 return (fs->flags & EXT2_FLAG_CHANGED);
883}
884
885/*
886 * Mark a filesystem as valid
887 */
888_INLINE_ void ext2fs_mark_valid(ext2_filsys fs)
889{
890 fs->flags |= EXT2_FLAG_VALID;
891}
892
893/*
894 * Mark a filesystem as NOT valid
895 */
896_INLINE_ void ext2fs_unmark_valid(ext2_filsys fs)
897{
898 fs->flags &= ~EXT2_FLAG_VALID;
899}
900
901/*
902 * Check to see if a filesystem is valid
903 */
904_INLINE_ int ext2fs_test_valid(ext2_filsys fs)
905{
906 return (fs->flags & EXT2_FLAG_VALID);
907}
908
909/*
910 * Mark the inode bitmap as dirty
911 */
912_INLINE_ void ext2fs_mark_ib_dirty(ext2_filsys fs)
913{
914 fs->flags |= EXT2_FLAG_IB_DIRTY | EXT2_FLAG_CHANGED;
915}
916
917/*
918 * Mark the block bitmap as dirty
919 */
920_INLINE_ void ext2fs_mark_bb_dirty(ext2_filsys fs)
921{
922 fs->flags |= EXT2_FLAG_BB_DIRTY | EXT2_FLAG_CHANGED;
923}
924
925/*
926 * Check to see if a filesystem's inode bitmap is dirty
927 */
928_INLINE_ int ext2fs_test_ib_dirty(ext2_filsys fs)
929{
930 return (fs->flags & EXT2_FLAG_IB_DIRTY);
931}
932
933/*
934 * Check to see if a filesystem's block bitmap is dirty
935 */
936_INLINE_ int ext2fs_test_bb_dirty(ext2_filsys fs)
937{
938 return (fs->flags & EXT2_FLAG_BB_DIRTY);
939}
940
941/*
942 * Return the group # of a block
943 */
944_INLINE_ int ext2fs_group_of_blk(ext2_filsys fs, blk_t blk)
945{
946 return (blk - fs->super->s_first_data_block) /
947 fs->super->s_blocks_per_group;
948}
949
950/*
951 * Return the group # of an inode number
952 */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000953_INLINE_ int ext2fs_group_of_ino(ext2_filsys fs, ext2_ino_t ino)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000954{
955 return (ino - 1) / fs->super->s_inodes_per_group;
956}
957#undef _INLINE_
958#endif
959
Theodore Ts'ofa7ef712000-05-19 02:11:41 +0000960#ifdef __cplusplus
961}
962#endif
963
Theodore Ts'o9abd2ce1998-02-16 22:00:37 +0000964#endif /* _EXT2FS_EXT2FS_H */