blob: 92f273ebd06920de02c0333175041492357fb133 [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'o54434922003-12-07 01:28:50 -050015#ifdef __GNUC__
16#define EXT2FS_ATTR(x) __attribute__(x)
17#else
18#define EXT2FS_ATTR(x)
19#endif
20
Theodore Ts'ofa7ef712000-05-19 02:11:41 +000021#ifdef __cplusplus
22extern "C" {
23#endif
24
Theodore Ts'o3839e651997-04-26 13:21:57 +000025/*
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000026 * Non-GNU C compilers won't necessarily understand inline
27 */
Theodore Ts'o76f875d1998-04-27 01:41:13 +000028#if (!defined(__GNUC__) && !defined(__WATCOMC__))
Theodore Ts'o19c78dc1997-04-29 16:17:09 +000029#define NO_INLINE_FUNCS
30#endif
31
32/*
Theodore Ts'o5df55d72001-06-11 07:00:04 +000033 * Build in support for byte-swapping filesystems if we the feature
34 * has been configured or if we're being built on a CPU architecture
35 * with a non-native byte order.
36 */
37#if defined(ENABLE_SWAPFS) || defined(WORDS_BIGENDIAN)
38#define EXT2FS_ENABLE_SWAPFS
39#endif
40
41/*
Theodore Ts'o3839e651997-04-26 13:21:57 +000042 * Where the master copy of the superblock is located, and how big
43 * superblocks are supposed to be. We define SUPERBLOCK_SIZE because
44 * the size of the superblock structure is not necessarily trustworthy
45 * (some versions have the padding set up so that the superblock is
46 * 1032 bytes long).
47 */
48#define SUPERBLOCK_OFFSET 1024
49#define SUPERBLOCK_SIZE 1024
50
Theodore Ts'of3db3561997-04-26 13:34:30 +000051/*
52 * The last ext2fs revision level that this version of the library is
53 * able to support.
54 */
Theodore Ts'oe5b38a52001-01-01 16:17:12 +000055#define EXT2_LIB_CURRENT_REV EXT2_DYNAMIC_REV
Theodore Ts'of3db3561997-04-26 13:34:30 +000056
Theodore Ts'od40259f1997-10-20 00:44:26 +000057#ifdef HAVE_SYS_TYPES_H
Theodore Ts'o1e3472c1997-04-29 14:53:37 +000058#include <sys/types.h>
Theodore Ts'od40259f1997-10-20 00:44:26 +000059#endif
60
Theodore Ts'o3e699062002-10-13 23:56:28 -040061#include <stdio.h>
Theodore Ts'o5be8dc21997-12-01 18:24:10 +000062#include <stdlib.h>
Theodore Ts'o5953b9d1998-02-01 13:23:02 +000063
64#if EXT2_FLAT_INCLUDES
65#include "e2_types.h"
Theodore Ts'o3e699062002-10-13 23:56:28 -040066#include "ext2_fs.h"
Theodore Ts'o5953b9d1998-02-01 13:23:02 +000067#else
Theodore Ts'o797f5ef2001-06-01 23:49:46 +000068#include <ext2fs/ext2_types.h>
Theodore Ts'o3e699062002-10-13 23:56:28 -040069#include <ext2fs/ext2_fs.h>
Theodore Ts'oe589f672000-04-03 13:45:40 +000070#endif /* EXT2_FLAT_INCLUDES */
Theodore Ts'o50e1e101997-04-26 13:58:21 +000071
Theodore Ts'o31dbecd2001-01-11 04:54:39 +000072typedef __u32 ext2_ino_t;
Theodore Ts'o50e1e101997-04-26 13:58:21 +000073typedef __u32 blk_t;
Theodore Ts'o2eb374c1998-09-03 01:22:57 +000074typedef __u32 dgrp_t;
Theodore Ts'o30fab291997-10-25 22:37:42 +000075typedef __u32 ext2_off_t;
Theodore Ts'o03673db1998-06-10 20:39:43 +000076typedef __s64 e2_blkcnt_t;
Theodore Ts'o52783e02002-03-11 15:04:45 -050077typedef __u32 ext2_dirhash_t;
Theodore Ts'o3839e651997-04-26 13:21:57 +000078
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000079#if EXT2_FLAT_INCLUDES
80#include "com_err.h"
81#include "ext2_io.h"
82#include "ext2_err.h"
83#else
Theodore Ts'o7c2d2562001-05-21 02:54:21 +000084#include <et/com_err.h>
85#include <ext2fs/ext2_io.h>
86#include <ext2fs/ext2_err.h>
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +000087#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +000088
Theodore Ts'o4c77fe51998-04-30 17:35:59 +000089/*
90 * Portability help for Microsoft Visual C++
91 */
92#ifdef _MSC_VER
93#define EXT2_QSORT_TYPE int __cdecl
94#else
95#define EXT2_QSORT_TYPE int
96#endif
97
Theodore Ts'of3db3561997-04-26 13:34:30 +000098typedef struct struct_ext2_filsys *ext2_filsys;
99
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000100struct ext2fs_struct_generic_bitmap {
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +0000101 errcode_t magic;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000102 ext2_filsys fs;
103 __u32 start, end;
104 __u32 real_end;
105 char * description;
106 char * bitmap;
107 errcode_t base_error_code;
108 __u32 reserved[7];
Theodore Ts'of3db3561997-04-26 13:34:30 +0000109};
110
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000111#define EXT2FS_MARK_ERROR 0
112#define EXT2FS_UNMARK_ERROR 1
113#define EXT2FS_TEST_ERROR 2
Theodore Ts'of3db3561997-04-26 13:34:30 +0000114
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000115typedef struct ext2fs_struct_generic_bitmap *ext2fs_generic_bitmap;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000116typedef struct ext2fs_struct_generic_bitmap *ext2fs_inode_bitmap;
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000117typedef struct ext2fs_struct_generic_bitmap *ext2fs_block_bitmap;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000118
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000119#ifdef EXT2_DYNAMIC_REV
120#define EXT2_FIRST_INODE(s) EXT2_FIRST_INO(s)
121#else
122#define EXT2_FIRST_INODE(s) EXT2_FIRST_INO
123#define EXT2_INODE_SIZE(s) sizeof(struct ext2_inode)
124#endif
125
Theodore Ts'o3839e651997-04-26 13:21:57 +0000126/*
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000127 * badblocks list definitions
128 */
129
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400130typedef struct ext2_struct_u32_list *ext2_badblocks_list;
131typedef struct ext2_struct_u32_iterate *ext2_badblocks_iterate;
132
133typedef struct ext2_struct_u32_list *ext2_u32_list;
134typedef struct ext2_struct_u32_iterate *ext2_u32_iterate;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000135
136/* old */
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400137typedef struct ext2_struct_u32_list *badblocks_list;
138typedef struct ext2_struct_u32_iterate *badblocks_iterate;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000139
140#define BADBLOCKS_FLAG_DIRTY 1
141
142/*
143 * ext2_dblist structure and abstractions (see dblist.c)
144 */
145struct ext2_db_entry {
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000146 ext2_ino_t ino;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000147 blk_t blk;
148 int blockcnt;
149};
150
151typedef struct ext2_struct_dblist *ext2_dblist;
152
153#define DBLIST_ABORT 1
154
155/*
Theodore Ts'o30fab291997-10-25 22:37:42 +0000156 * ext2_fileio definitions
157 */
158
159#define EXT2_FILE_WRITE 0x0001
160#define EXT2_FILE_CREATE 0x0002
161
162#define EXT2_FILE_MASK 0x00FF
163
164#define EXT2_FILE_BUF_DIRTY 0x4000
165#define EXT2_FILE_BUF_VALID 0x2000
166
167typedef struct ext2_file *ext2_file_t;
168
169#define EXT2_SEEK_SET 0
170#define EXT2_SEEK_CUR 1
171#define EXT2_SEEK_END 2
172
173/*
Theodore Ts'oa1128472001-01-16 06:56:14 +0000174 * Flags for the ext2_filsys structure and for ext2fs_open()
Theodore Ts'o3839e651997-04-26 13:21:57 +0000175 */
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000176#define EXT2_FLAG_RW 0x01
177#define EXT2_FLAG_CHANGED 0x02
178#define EXT2_FLAG_DIRTY 0x04
179#define EXT2_FLAG_VALID 0x08
180#define EXT2_FLAG_IB_DIRTY 0x10
181#define EXT2_FLAG_BB_DIRTY 0x20
Theodore Ts'o5c576471997-04-29 15:29:49 +0000182#define EXT2_FLAG_SWAP_BYTES 0x40
183#define EXT2_FLAG_SWAP_BYTES_READ 0x80
184#define EXT2_FLAG_SWAP_BYTES_WRITE 0x100
185#define EXT2_FLAG_MASTER_SB_ONLY 0x200
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000186#define EXT2_FLAG_FORCE 0x400
Theodore Ts'o43ec8732001-01-03 14:56:46 +0000187#define EXT2_FLAG_SUPER_ONLY 0x800
Theodore Ts'oa1128472001-01-16 06:56:14 +0000188#define EXT2_FLAG_JOURNAL_DEV_OK 0x1000
Theodore Ts'oa78926e2001-05-03 04:02:29 +0000189#define EXT2_FLAG_IMAGE_FILE 0x2000
Theodore Ts'o3839e651997-04-26 13:21:57 +0000190
Theodore Ts'o7f88b041997-04-26 14:48:50 +0000191/*
192 * Special flag in the ext2 inode i_flag field that means that this is
193 * a new inode. (So that ext2_write_inode() can clear extra fields.)
194 */
195#define EXT2_NEW_INODE_FL 0x80000000
196
Theodore Ts'o4e246702000-12-09 14:39:16 +0000197/*
198 * Flags for mkjournal
199 *
200 * EXT2_MKJOURNAL_V1_SUPER Make a (deprecated) V1 journal superblock
201 */
202#define EXT2_MKJOURNAL_V1_SUPER 0x0000001
203
Theodore Ts'o3839e651997-04-26 13:21:57 +0000204struct struct_ext2_filsys {
Theodore Ts'o4cbe8af1997-08-10 23:07:40 +0000205 errcode_t magic;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000206 io_channel io;
207 int flags;
208 char * device_name;
209 struct ext2_super_block * super;
Theodore Ts'o54434922003-12-07 01:28:50 -0500210 unsigned int blocksize;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000211 int fragsize;
Theodore Ts'o2eb374c1998-09-03 01:22:57 +0000212 dgrp_t group_desc_count;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000213 unsigned long desc_blocks;
214 struct ext2_group_desc * group_desc;
215 int inode_blocks_per_group;
Theodore Ts'of3db3561997-04-26 13:34:30 +0000216 ext2fs_inode_bitmap inode_map;
217 ext2fs_block_bitmap block_map;
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000218 errcode_t (*get_blocks)(ext2_filsys fs, ext2_ino_t ino, blk_t *blocks);
219 errcode_t (*check_directory)(ext2_filsys fs, ext2_ino_t ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000220 errcode_t (*write_bitmaps)(ext2_filsys fs);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000221 errcode_t (*read_inode)(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000222 struct ext2_inode *inode);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000223 errcode_t (*write_inode)(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000224 struct ext2_inode *inode);
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400225 ext2_badblocks_list badblocks;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000226 ext2_dblist dblist;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000227 __u32 stride; /* for mke2fs */
Theodore Ts'oc180ac82000-10-26 20:24:43 +0000228 struct ext2_super_block * orig_super;
Theodore Ts'oa78926e2001-05-03 04:02:29 +0000229 struct ext2_image_hdr * image_header;
Theodore Ts'o6a525062001-12-24 09:40:00 -0500230 __u32 umask;
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000231 /*
232 * Reserved for future expansion
233 */
Theodore Ts'o6a525062001-12-24 09:40:00 -0500234 __u32 reserved[8];
Theodore Ts'o3839e651997-04-26 13:21:57 +0000235
236 /*
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000237 * Reserved for the use of the calling application.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000238 */
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000239 void * priv_data;
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000240
241 /*
242 * Inode cache
243 */
244 struct ext2_inode_cache *icache;
Theodore Ts'o3839e651997-04-26 13:21:57 +0000245};
246
Theodore Ts'o5953b9d1998-02-01 13:23:02 +0000247#if EXT2_FLAT_INCLUDES
248#include "e2_bitops.h"
249#else
Theodore Ts'o7c2d2562001-05-21 02:54:21 +0000250#include <ext2fs/bitops.h>
Theodore Ts'o5953b9d1998-02-01 13:23:02 +0000251#endif
Theodore Ts'od40259f1997-10-20 00:44:26 +0000252
Theodore Ts'o3839e651997-04-26 13:21:57 +0000253/*
254 * Return flags for the block iterator functions
255 */
256#define BLOCK_CHANGED 1
257#define BLOCK_ABORT 2
258#define BLOCK_ERROR 4
259
260/*
261 * Block interate flags
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000262 *
263 * BLOCK_FLAG_APPEND, or BLOCK_FLAG_HOLE, indicates that the interator
264 * function should be called on blocks where the block number is zero.
265 * This is used by ext2fs_expand_dir() to be able to add a new block
266 * to an inode. It can also be used for programs that want to be able
267 * to deal with files that contain "holes".
268 *
269 * BLOCK_FLAG_TRAVERSE indicates that the iterator function for the
270 * indirect, doubly indirect, etc. blocks should be called after all
271 * of the blocks containined in the indirect blocks are processed.
272 * This is useful if you are going to be deallocating blocks from an
273 * inode.
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000274 *
275 * BLOCK_FLAG_DATA_ONLY indicates that the iterator function should be
276 * called for data blocks only.
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000277 *
278 * BLOCK_FLAG_NO_LARGE is for internal use only. It informs
Theodore Ts'o36a43d61998-03-24 16:17:51 +0000279 * ext2fs_block_iterate2 that large files won't be accepted.
Theodore Ts'o3839e651997-04-26 13:21:57 +0000280 */
281#define BLOCK_FLAG_APPEND 1
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000282#define BLOCK_FLAG_HOLE 1
Theodore Ts'o3839e651997-04-26 13:21:57 +0000283#define BLOCK_FLAG_DEPTH_TRAVERSE 2
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000284#define BLOCK_FLAG_DATA_ONLY 4
285
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000286#define BLOCK_FLAG_NO_LARGE 0x1000
287
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000288/*
289 * Magic "block count" return values for the block iterator function.
290 */
291#define BLOCK_COUNT_IND (-1)
292#define BLOCK_COUNT_DIND (-2)
293#define BLOCK_COUNT_TIND (-3)
294#define BLOCK_COUNT_TRANSLATOR (-4)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000295
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000296#if 0
Theodore Ts'o3839e651997-04-26 13:21:57 +0000297/*
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000298 * Flags for ext2fs_move_blocks
299 */
300#define EXT2_BMOVE_GET_DBLIST 0x0001
Theodore Ts'o36f21431997-06-14 07:25:40 +0000301#define EXT2_BMOVE_DEBUG 0x0002
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000302#endif
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000303
304/*
Theodore Ts'of9190c82002-03-12 01:05:06 -0500305 * Flags for directory block reading and writing functions
306 */
307#define EXT2_DIRBLOCK_V2_STRUCT 0x0001
308
309/*
Theodore Ts'o3839e651997-04-26 13:21:57 +0000310 * Return flags for the directory iterator functions
311 */
312#define DIRENT_CHANGED 1
313#define DIRENT_ABORT 2
314#define DIRENT_ERROR 3
315
316/*
317 * Directory iterator flags
318 */
319
320#define DIRENT_FLAG_INCLUDE_EMPTY 1
Theodore Ts'o8bd0c952002-01-03 03:29:19 -0500321#define DIRENT_FLAG_INCLUDE_REMOVED 2
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000322
323#define DIRENT_DOT_FILE 1
324#define DIRENT_DOT_DOT_FILE 2
325#define DIRENT_OTHER_FILE 3
Theodore Ts'o8bd0c952002-01-03 03:29:19 -0500326#define DIRENT_DELETED_FILE 4
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000327
Theodore Ts'o3839e651997-04-26 13:21:57 +0000328/*
329 * Inode scan definitions
330 */
Theodore Ts'of3db3561997-04-26 13:34:30 +0000331typedef struct ext2_struct_inode_scan *ext2_inode_scan;
332
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000333/*
334 * ext2fs_scan flags
335 */
336#define EXT2_SF_CHK_BADBLOCKS 0x0001
337#define EXT2_SF_BAD_INODE_BLK 0x0002
338#define EXT2_SF_BAD_EXTRA_BYTES 0x0004
339#define EXT2_SF_SKIP_MISSING_ITABLE 0x0008
Theodore Ts'o3839e651997-04-26 13:21:57 +0000340
Theodore Ts'of3db3561997-04-26 13:34:30 +0000341/*
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000342 * ext2fs_check_if_mounted flags
343 */
344#define EXT2_MF_MOUNTED 1
345#define EXT2_MF_ISROOT 2
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000346#define EXT2_MF_READONLY 4
Theodore Ts'o07cefe72001-12-24 15:20:22 -0500347#define EXT2_MF_SWAP 8
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000348
349/*
350 * Ext2/linux mode flags. We define them here so that we don't need
351 * to depend on the OS's sys/stat.h, since we may be compiling on a
352 * non-Linux system.
353 */
354#define LINUX_S_IFMT 00170000
355#define LINUX_S_IFSOCK 0140000
356#define LINUX_S_IFLNK 0120000
357#define LINUX_S_IFREG 0100000
358#define LINUX_S_IFBLK 0060000
359#define LINUX_S_IFDIR 0040000
360#define LINUX_S_IFCHR 0020000
361#define LINUX_S_IFIFO 0010000
362#define LINUX_S_ISUID 0004000
363#define LINUX_S_ISGID 0002000
364#define LINUX_S_ISVTX 0001000
365
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000366#define LINUX_S_IRWXU 00700
367#define LINUX_S_IRUSR 00400
368#define LINUX_S_IWUSR 00200
369#define LINUX_S_IXUSR 00100
370
371#define LINUX_S_IRWXG 00070
372#define LINUX_S_IRGRP 00040
373#define LINUX_S_IWGRP 00020
374#define LINUX_S_IXGRP 00010
375
376#define LINUX_S_IRWXO 00007
377#define LINUX_S_IROTH 00004
378#define LINUX_S_IWOTH 00002
379#define LINUX_S_IXOTH 00001
380
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000381#define LINUX_S_ISLNK(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFLNK)
382#define LINUX_S_ISREG(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFREG)
383#define LINUX_S_ISDIR(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFDIR)
384#define LINUX_S_ISCHR(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFCHR)
385#define LINUX_S_ISBLK(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFBLK)
386#define LINUX_S_ISFIFO(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFIFO)
387#define LINUX_S_ISSOCK(m) (((m) & LINUX_S_IFMT) == LINUX_S_IFSOCK)
388
389/*
Theodore Ts'o819157d2003-01-22 18:25:39 -0500390 * ext2 size of an inode
391 */
392#define EXT2_I_SIZE(i) ((i)->i_size | ((__u64) (i)->i_size_high << 32))
393
394/*
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000395 * ext2_icount_t abstraction
396 */
397#define EXT2_ICOUNT_OPT_INCREMENT 0x01
398
399typedef struct ext2_icount *ext2_icount_t;
400
401/*
Theodore Ts'o30fab291997-10-25 22:37:42 +0000402 * Flags for ext2fs_bmap
403 */
404#define BMAP_ALLOC 1
405
406/*
Theodore Ts'o72ed1262000-11-12 19:32:20 +0000407 * Flags for imager.c functions
408 */
409#define IMAGER_FLAG_INODEMAP 1
410#define IMAGER_FLAG_SPARSEWRITE 2
411
412/*
Theodore Ts'of3db3561997-04-26 13:34:30 +0000413 * For checking structure magic numbers...
414 */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000415
Theodore Ts'of3db3561997-04-26 13:34:30 +0000416#define EXT2_CHECK_MAGIC(struct, code) \
417 if ((struct)->magic != (code)) return (code)
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000418
419
420/*
Theodore Ts'oe5b38a52001-01-01 16:17:12 +0000421 * For ext2 compression support
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000422 */
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000423#define EXT2FS_COMPRESSED_BLKADDR ((blk_t) 0xffffffff)
424#define HOLE_BLKADDR(_b) ((_b) == 0 || (_b) == EXT2FS_COMPRESSED_BLKADDR)
425
Theodore Ts'o521e3681997-04-29 17:48:10 +0000426/*
Theodore Ts'o426d7342001-01-13 01:29:05 +0000427 * Features supported by this version of the library
Theodore Ts'o521e3681997-04-29 17:48:10 +0000428 */
Theodore Ts'o3a5f8ea1999-09-14 20:21:26 +0000429#define EXT2_LIB_FEATURE_COMPAT_SUPP (EXT2_FEATURE_COMPAT_DIR_PREALLOC|\
430 EXT2_FEATURE_COMPAT_IMAGIC_INODES|\
Theodore Ts'o342d8472001-07-02 11:54:09 -0400431 EXT3_FEATURE_COMPAT_HAS_JOURNAL|\
Theodore Ts'o52783e02002-03-11 15:04:45 -0500432 EXT2_FEATURE_COMPAT_DIR_INDEX|\
Theodore Ts'o342d8472001-07-02 11:54:09 -0400433 EXT2_FEATURE_COMPAT_EXT_ATTR)
Theodore Ts'o2fe1efe2000-12-31 13:39:17 +0000434
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000435/* This #ifdef is temporary until compression is fully supported */
436#ifdef ENABLE_COMPRESSION
Theodore Ts'oe589f672000-04-03 13:45:40 +0000437#ifndef I_KNOW_THAT_COMPRESSION_IS_EXPERIMENTAL
438/* If the below warning bugs you, then have
439 `CPPFLAGS=-DI_KNOW_THAT_COMPRESSION_IS_EXPERIMENTAL' in your
440 environment at configure time. */
Theodore Ts'ocdaf1fa2001-01-05 22:23:22 +0000441 #warning "Compression support is experimental"
Theodore Ts'oe589f672000-04-03 13:45:40 +0000442#endif
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000443#define EXT2_LIB_FEATURE_INCOMPAT_SUPP (EXT2_FEATURE_INCOMPAT_FILETYPE|\
Theodore Ts'oab146762000-07-07 04:37:35 +0000444 EXT2_FEATURE_INCOMPAT_COMPRESSION|\
Theodore Ts'oa1128472001-01-16 06:56:14 +0000445 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV|\
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400446 EXT2_FEATURE_INCOMPAT_META_BG|\
Theodore Ts'oab146762000-07-07 04:37:35 +0000447 EXT3_FEATURE_INCOMPAT_RECOVER)
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000448#else
Theodore Ts'oab146762000-07-07 04:37:35 +0000449#define EXT2_LIB_FEATURE_INCOMPAT_SUPP (EXT2_FEATURE_INCOMPAT_FILETYPE|\
Theodore Ts'oa1128472001-01-16 06:56:14 +0000450 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV|\
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400451 EXT2_FEATURE_INCOMPAT_META_BG|\
Theodore Ts'oab146762000-07-07 04:37:35 +0000452 EXT3_FEATURE_INCOMPAT_RECOVER)
Theodore Ts'o5a63dd22000-02-11 15:44:08 +0000453#endif
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000454#define EXT2_LIB_FEATURE_RO_COMPAT_SUPP (EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER|\
455 EXT2_FEATURE_RO_COMPAT_LARGE_FILE)
Theodore Ts'o3839e651997-04-26 13:21:57 +0000456/*
457 * function prototypes
458 */
459
460/* alloc.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000461extern errcode_t ext2fs_new_inode(ext2_filsys fs, ext2_ino_t dir, int mode,
462 ext2fs_inode_bitmap map, ext2_ino_t *ret);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000463extern errcode_t ext2fs_new_block(ext2_filsys fs, blk_t goal,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000464 ext2fs_block_bitmap map, blk_t *ret);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000465extern errcode_t ext2fs_get_free_blocks(ext2_filsys fs, blk_t start,
Theodore Ts'of3db3561997-04-26 13:34:30 +0000466 blk_t finish, int num,
467 ext2fs_block_bitmap map,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000468 blk_t *ret);
Theodore Ts'o30fab291997-10-25 22:37:42 +0000469extern errcode_t ext2fs_alloc_block(ext2_filsys fs, blk_t goal,
470 char *block_buf, blk_t *ret);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000471
Theodore Ts'oef344e12003-11-21 09:02:21 -0500472/* alloc_sb.c */
473extern int ext2fs_reserve_super_and_bgd(ext2_filsys fs,
474 dgrp_t group,
475 ext2fs_block_bitmap bmap);
476
Theodore Ts'o8bd0c952002-01-03 03:29:19 -0500477/* alloc_stats.c */
478void ext2fs_inode_alloc_stats(ext2_filsys fs, ext2_ino_t ino, int inuse);
Theodore Ts'o7f961d42002-02-03 01:28:52 -0500479void ext2fs_inode_alloc_stats2(ext2_filsys fs, ext2_ino_t ino,
480 int inuse, int isdir);
Theodore Ts'o8bd0c952002-01-03 03:29:19 -0500481void ext2fs_block_alloc_stats(ext2_filsys fs, blk_t blk, int inuse);
482
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000483/* alloc_tables.c */
484extern errcode_t ext2fs_allocate_tables(ext2_filsys fs);
Theodore Ts'o2eb374c1998-09-03 01:22:57 +0000485extern errcode_t ext2fs_allocate_group_table(ext2_filsys fs, dgrp_t group,
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000486 ext2fs_block_bitmap bmap);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000487
Theodore Ts'o3839e651997-04-26 13:21:57 +0000488/* badblocks.c */
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400489extern errcode_t ext2fs_u32_list_create(ext2_u32_list *ret, int size);
490extern errcode_t ext2fs_u32_list_add(ext2_u32_list bb, __u32 blk);
Theodore Ts'o54434922003-12-07 01:28:50 -0500491extern int ext2fs_u32_list_find(ext2_u32_list bb, __u32 blk);
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400492extern int ext2fs_u32_list_test(ext2_u32_list bb, blk_t blk);
493extern errcode_t ext2fs_u32_list_iterate_begin(ext2_u32_list bb,
494 ext2_u32_iterate *ret);
495extern int ext2fs_u32_list_iterate(ext2_u32_iterate iter, blk_t *blk);
496extern void ext2fs_u32_list_iterate_end(ext2_u32_iterate iter);
497extern errcode_t ext2fs_u32_copy(ext2_u32_list src, ext2_u32_list *dest);
498extern int ext2fs_u32_list_equal(ext2_u32_list bb1, ext2_u32_list bb2);
499
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000500extern errcode_t ext2fs_badblocks_list_create(ext2_badblocks_list *ret,
501 int size);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000502extern errcode_t ext2fs_badblocks_list_add(ext2_badblocks_list bb,
503 blk_t blk);
504extern int ext2fs_badblocks_list_test(ext2_badblocks_list bb,
505 blk_t blk);
Theodore Ts'o7d7bdd52003-06-24 17:34:02 -0400506extern int ext2fs_u32_list_del(ext2_u32_list bb, __u32 blk);
507extern void ext2fs_badblocks_list_del(ext2_u32_list bb, __u32 blk);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000508extern errcode_t
509 ext2fs_badblocks_list_iterate_begin(ext2_badblocks_list bb,
510 ext2_badblocks_iterate *ret);
511extern int ext2fs_badblocks_list_iterate(ext2_badblocks_iterate iter,
512 blk_t *blk);
513extern void ext2fs_badblocks_list_iterate_end(ext2_badblocks_iterate iter);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000514extern errcode_t ext2fs_badblocks_copy(ext2_badblocks_list src,
515 ext2_badblocks_list *dest);
Theodore Ts'o57dca852000-07-04 19:20:25 +0000516extern int ext2fs_badblocks_equal(ext2_badblocks_list bb1,
517 ext2_badblocks_list bb2);
Theodore Ts'o220c0042003-03-14 00:59:42 -0500518extern int ext2fs_u32_list_count(ext2_u32_list bb);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000519
520/* bb_compat */
Theodore Ts'o3839e651997-04-26 13:21:57 +0000521extern errcode_t badblocks_list_create(badblocks_list *ret, int size);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000522extern errcode_t badblocks_list_add(badblocks_list bb, blk_t blk);
523extern int badblocks_list_test(badblocks_list bb, blk_t blk);
524extern errcode_t badblocks_list_iterate_begin(badblocks_list bb,
525 badblocks_iterate *ret);
526extern int badblocks_list_iterate(badblocks_iterate iter, blk_t *blk);
527extern void badblocks_list_iterate_end(badblocks_iterate iter);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000528extern void badblocks_list_free(badblocks_list bb);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000529
530/* bb_inode.c */
531extern errcode_t ext2fs_update_bb_inode(ext2_filsys fs,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000532 ext2_badblocks_list bb_list);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000533
534/* bitmaps.c */
535extern errcode_t ext2fs_write_inode_bitmap(ext2_filsys fs);
536extern errcode_t ext2fs_write_block_bitmap (ext2_filsys fs);
537extern errcode_t ext2fs_read_inode_bitmap (ext2_filsys fs);
538extern errcode_t ext2fs_read_block_bitmap(ext2_filsys fs);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000539extern errcode_t ext2fs_allocate_generic_bitmap(__u32 start,
540 __u32 end,
541 __u32 real_end,
542 const char *descr,
543 ext2fs_generic_bitmap *ret);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000544extern errcode_t ext2fs_allocate_block_bitmap(ext2_filsys fs,
545 const char *descr,
546 ext2fs_block_bitmap *ret);
547extern errcode_t ext2fs_allocate_inode_bitmap(ext2_filsys fs,
548 const char *descr,
549 ext2fs_inode_bitmap *ret);
550extern errcode_t ext2fs_fudge_inode_bitmap_end(ext2fs_inode_bitmap bitmap,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000551 ext2_ino_t end, ext2_ino_t *oend);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000552extern errcode_t ext2fs_fudge_block_bitmap_end(ext2fs_block_bitmap bitmap,
553 blk_t end, blk_t *oend);
554extern void ext2fs_clear_inode_bitmap(ext2fs_inode_bitmap bitmap);
555extern void ext2fs_clear_block_bitmap(ext2fs_block_bitmap bitmap);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000556extern errcode_t ext2fs_read_bitmaps(ext2_filsys fs);
557extern errcode_t ext2fs_write_bitmaps(ext2_filsys fs);
558
559/* block.c */
560extern errcode_t ext2fs_block_iterate(ext2_filsys fs,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000561 ext2_ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000562 int flags,
563 char *block_buf,
564 int (*func)(ext2_filsys fs,
565 blk_t *blocknr,
566 int blockcnt,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000567 void *priv_data),
568 void *priv_data);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000569errcode_t ext2fs_block_iterate2(ext2_filsys fs,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000570 ext2_ino_t ino,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000571 int flags,
572 char *block_buf,
573 int (*func)(ext2_filsys fs,
574 blk_t *blocknr,
Theodore Ts'o03673db1998-06-10 20:39:43 +0000575 e2_blkcnt_t blockcnt,
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000576 blk_t ref_blk,
577 int ref_offset,
578 void *priv_data),
579 void *priv_data);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000580
Theodore Ts'o30fab291997-10-25 22:37:42 +0000581/* bmap.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000582extern errcode_t ext2fs_bmap(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o30fab291997-10-25 22:37:42 +0000583 struct ext2_inode *inode,
584 char *block_buf, int bmap_flags,
585 blk_t block, blk_t *phys_blk);
586
587
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000588#if 0
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000589/* bmove.c */
590extern errcode_t ext2fs_move_blocks(ext2_filsys fs,
591 ext2fs_block_bitmap reserve,
Theodore Ts'o9941fb71997-06-11 22:27:41 +0000592 ext2fs_block_bitmap alloc_map,
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000593 int flags);
Theodore Ts'o4a31c481998-03-30 01:27:25 +0000594#endif
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000595
Theodore Ts'of3db3561997-04-26 13:34:30 +0000596/* check_desc.c */
597extern errcode_t ext2fs_check_desc(ext2_filsys fs);
598
Theodore Ts'o3839e651997-04-26 13:21:57 +0000599/* closefs.c */
600extern errcode_t ext2fs_close(ext2_filsys fs);
601extern errcode_t ext2fs_flush(ext2_filsys fs);
Theodore Ts'o521e3681997-04-29 17:48:10 +0000602extern int ext2fs_bg_has_super(ext2_filsys fs, int group_block);
Theodore Ts'oef344e12003-11-21 09:02:21 -0500603extern int ext2fs_super_and_bgd_loc(ext2_filsys fs,
604 dgrp_t group,
605 blk_t *ret_super_blk,
606 blk_t *ret_old_desc_blk,
607 blk_t *ret_new_desc_blk,
608 int *ret_meta_bg);
Theodore Ts'oa917d1c2000-12-13 18:36:23 +0000609extern void ext2fs_update_dynamic_rev(ext2_filsys fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000610
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000611/* cmp_bitmaps.c */
612extern errcode_t ext2fs_compare_block_bitmap(ext2fs_block_bitmap bm1,
613 ext2fs_block_bitmap bm2);
614extern errcode_t ext2fs_compare_inode_bitmap(ext2fs_inode_bitmap bm1,
615 ext2fs_inode_bitmap bm2);
616
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000617/* dblist.c */
618
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000619extern errcode_t ext2fs_get_num_dirs(ext2_filsys fs, ext2_ino_t *ret_num_dirs);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000620extern errcode_t ext2fs_init_dblist(ext2_filsys fs, ext2_dblist *ret_dblist);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000621extern errcode_t ext2fs_add_dir_block(ext2_dblist dblist, ext2_ino_t ino,
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000622 blk_t blk, int blockcnt);
Theodore Ts'oea1959f2002-08-31 02:32:41 -0400623extern void ext2fs_dblist_sort(ext2_dblist dblist,
624 EXT2_QSORT_TYPE (*sortfunc)(const void *,
625 const void *));
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000626extern errcode_t ext2fs_dblist_iterate(ext2_dblist dblist,
627 int (*func)(ext2_filsys fs, struct ext2_db_entry *db_info,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000628 void *priv_data),
629 void *priv_data);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000630extern errcode_t ext2fs_set_dir_block(ext2_dblist dblist, ext2_ino_t ino,
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000631 blk_t blk, int blockcnt);
632extern errcode_t ext2fs_copy_dblist(ext2_dblist src,
633 ext2_dblist *dest);
Theodore Ts'o549860c1997-06-17 03:55:00 +0000634extern int ext2fs_dblist_count(ext2_dblist dblist);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000635
636/* dblist_dir.c */
637extern errcode_t
638 ext2fs_dblist_dir_iterate(ext2_dblist dblist,
639 int flags,
640 char *block_buf,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000641 int (*func)(ext2_ino_t dir,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000642 int entry,
643 struct ext2_dir_entry *dirent,
644 int offset,
645 int blocksize,
646 char *buf,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000647 void *priv_data),
648 void *priv_data);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000649
650/* dirblock.c */
651extern errcode_t ext2fs_read_dir_block(ext2_filsys fs, blk_t block,
652 void *buf);
Theodore Ts'of9190c82002-03-12 01:05:06 -0500653extern errcode_t ext2fs_read_dir_block2(ext2_filsys fs, blk_t block,
654 void *buf, int flags);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000655extern errcode_t ext2fs_write_dir_block(ext2_filsys fs, blk_t block,
656 void *buf);
Theodore Ts'of9190c82002-03-12 01:05:06 -0500657extern errcode_t ext2fs_write_dir_block2(ext2_filsys fs, blk_t block,
658 void *buf, int flags);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000659
Theodore Ts'o52783e02002-03-11 15:04:45 -0500660/* dirhash.c */
661extern errcode_t ext2fs_dirhash(int version, const char *name, int len,
Theodore Ts'ob33278c2002-08-17 10:52:51 -0400662 const __u32 *seed,
Theodore Ts'o503f9e72002-06-26 16:52:10 -0400663 ext2_dirhash_t *ret_hash,
664 ext2_dirhash_t *ret_minor_hash);
Theodore Ts'o52783e02002-03-11 15:04:45 -0500665
666
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000667/* dir_iterate.c */
668extern errcode_t ext2fs_dir_iterate(ext2_filsys fs,
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000669 ext2_ino_t dir,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000670 int flags,
671 char *block_buf,
672 int (*func)(struct ext2_dir_entry *dirent,
673 int offset,
674 int blocksize,
675 char *buf,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000676 void *priv_data),
677 void *priv_data);
Theodore Ts'o8bd0c952002-01-03 03:29:19 -0500678extern errcode_t ext2fs_dir_iterate2(ext2_filsys fs,
679 ext2_ino_t dir,
680 int flags,
681 char *block_buf,
682 int (*func)(ext2_ino_t dir,
683 int entry,
684 struct ext2_dir_entry *dirent,
685 int offset,
686 int blocksize,
687 char *buf,
688 void *priv_data),
689 void *priv_data);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000690
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000691/* dupfs.c */
692extern errcode_t ext2fs_dup_handle(ext2_filsys src, ext2_filsys *dest);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000693
Theodore Ts'o3839e651997-04-26 13:21:57 +0000694/* expanddir.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000695extern errcode_t ext2fs_expand_dir(ext2_filsys fs, ext2_ino_t dir);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000696
Theodore Ts'o342d8472001-07-02 11:54:09 -0400697/* ext_attr.c */
698void ext2fs_swap_ext_attr(ext2_filsys fs, char *to, char *from);
699extern errcode_t ext2fs_read_ext_attr(ext2_filsys fs, blk_t block, void *buf);
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400700extern errcode_t ext2fs_write_ext_attr(ext2_filsys fs, blk_t block,
701 void *buf);
702extern errcode_t ext2fs_adjust_ea_refcount(ext2_filsys fs, blk_t blk,
703 char *block_buf,
704 int adjust, __u32 *newcount);
705
Theodore Ts'o30fab291997-10-25 22:37:42 +0000706/* fileio.c */
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400707extern errcode_t ext2fs_file_open2(ext2_filsys fs, ext2_ino_t ino,
708 struct ext2_inode *inode,
709 int flags, ext2_file_t *ret);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000710extern errcode_t ext2fs_file_open(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o30fab291997-10-25 22:37:42 +0000711 int flags, ext2_file_t *ret);
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000712extern ext2_filsys ext2fs_file_get_fs(ext2_file_t file);
Theodore Ts'o30fab291997-10-25 22:37:42 +0000713extern errcode_t ext2fs_file_close(ext2_file_t file);
Theodore Ts'of12e2852002-02-20 01:06:25 -0500714extern errcode_t ext2fs_file_flush(ext2_file_t file);
Theodore Ts'o30fab291997-10-25 22:37:42 +0000715extern errcode_t ext2fs_file_read(ext2_file_t file, void *buf,
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000716 unsigned int wanted, unsigned int *got);
Theodore Ts'of12e2852002-02-20 01:06:25 -0500717extern errcode_t ext2fs_file_write(ext2_file_t file, const void *buf,
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000718 unsigned int nbytes, unsigned int *written);
Theodore Ts'o819157d2003-01-22 18:25:39 -0500719extern errcode_t ext2fs_file_llseek(ext2_file_t file, __u64 offset,
720 int whence, __u64 *ret_pos);
Theodore Ts'o674a4ee1998-03-23 02:06:52 +0000721extern errcode_t ext2fs_file_lseek(ext2_file_t file, ext2_off_t offset,
722 int whence, ext2_off_t *ret_pos);
Theodore Ts'o819157d2003-01-22 18:25:39 -0500723errcode_t ext2fs_file_get_lsize(ext2_file_t file, __u64 *ret_size);
Theodore Ts'o79a90bd1997-11-03 19:16:55 +0000724extern ext2_off_t ext2fs_file_get_size(ext2_file_t file);
725extern errcode_t ext2fs_file_set_size(ext2_file_t file, ext2_off_t size);
Theodore Ts'o30fab291997-10-25 22:37:42 +0000726
Theodore Ts'ode23aa12000-08-19 17:00:47 +0000727/* finddev.c */
728extern char *ext2fs_find_block_device(dev_t device);
729
Theodore Ts'o4d0f3e12001-01-11 15:48:50 +0000730/* flushb.c */
731extern errcode_t ext2fs_sync_device(int fd, int flushb);
732
Theodore Ts'o3839e651997-04-26 13:21:57 +0000733/* freefs.c */
734extern void ext2fs_free(ext2_filsys fs);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000735extern void ext2fs_free_generic_bitmap(ext2fs_inode_bitmap bitmap);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000736extern void ext2fs_free_block_bitmap(ext2fs_block_bitmap bitmap);
737extern void ext2fs_free_inode_bitmap(ext2fs_inode_bitmap bitmap);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000738extern void ext2fs_free_dblist(ext2_dblist dblist);
Theodore Ts'ob7a00562002-07-20 00:28:07 -0400739extern void ext2fs_badblocks_list_free(ext2_badblocks_list bb);
740extern void ext2fs_u32_list_free(ext2_u32_list bb);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000741
742/* getsize.c */
743extern errcode_t ext2fs_get_device_size(const char *file, int blocksize,
744 blk_t *retblocks);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000745
Theodore Ts'o93d5c382003-05-21 17:28:29 -0400746/* getsectsize.c */
747errcode_t ext2fs_get_device_sectsize(const char *file, int *sectsize);
748
Theodore Ts'o72ed1262000-11-12 19:32:20 +0000749/* imager.c */
750extern errcode_t ext2fs_image_inode_write(ext2_filsys fs, int fd, int flags);
751extern errcode_t ext2fs_image_inode_read(ext2_filsys fs, int fd, int flags);
752extern errcode_t ext2fs_image_super_write(ext2_filsys fs, int fd, int flags);
753extern errcode_t ext2fs_image_super_read(ext2_filsys fs, int fd, int flags);
754extern errcode_t ext2fs_image_bitmap_write(ext2_filsys fs, int fd, int flags);
755extern errcode_t ext2fs_image_bitmap_read(ext2_filsys fs, int fd, int flags);
756
Theodore Ts'o3839e651997-04-26 13:21:57 +0000757/* initialize.c */
758extern errcode_t ext2fs_initialize(const char *name, int flags,
759 struct ext2_super_block *param,
760 io_manager manager, ext2_filsys *ret_fs);
761
Theodore Ts'of12e2852002-02-20 01:06:25 -0500762/* icount.c */
763extern void ext2fs_free_icount(ext2_icount_t icount);
Theodore Ts'o54434922003-12-07 01:28:50 -0500764extern errcode_t ext2fs_create_icount2(ext2_filsys fs, int flags,
765 unsigned int size,
Theodore Ts'of12e2852002-02-20 01:06:25 -0500766 ext2_icount_t hint, ext2_icount_t *ret);
Theodore Ts'o54434922003-12-07 01:28:50 -0500767extern errcode_t ext2fs_create_icount(ext2_filsys fs, int flags,
768 unsigned int size,
Theodore Ts'of12e2852002-02-20 01:06:25 -0500769 ext2_icount_t *ret);
770extern errcode_t ext2fs_icount_fetch(ext2_icount_t icount, ext2_ino_t ino,
771 __u16 *ret);
772extern errcode_t ext2fs_icount_increment(ext2_icount_t icount, ext2_ino_t ino,
773 __u16 *ret);
774extern errcode_t ext2fs_icount_decrement(ext2_icount_t icount, ext2_ino_t ino,
775 __u16 *ret);
776extern errcode_t ext2fs_icount_store(ext2_icount_t icount, ext2_ino_t ino,
777 __u16 count);
778extern ext2_ino_t ext2fs_get_icount_size(ext2_icount_t icount);
779errcode_t ext2fs_icount_validate(ext2_icount_t icount, FILE *);
780
Theodore Ts'o3839e651997-04-26 13:21:57 +0000781/* inode.c */
Theodore Ts'o72ed1262000-11-12 19:32:20 +0000782extern errcode_t ext2fs_flush_icache(ext2_filsys fs);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000783extern errcode_t ext2fs_open_inode_scan(ext2_filsys fs, int buffer_blocks,
784 ext2_inode_scan *ret_scan);
785extern void ext2fs_close_inode_scan(ext2_inode_scan scan);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000786extern errcode_t ext2fs_get_next_inode(ext2_inode_scan scan, ext2_ino_t *ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000787 struct ext2_inode *inode);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000788extern errcode_t ext2fs_inode_scan_goto_blockgroup(ext2_inode_scan scan,
789 int group);
790extern void ext2fs_set_inode_callback
791 (ext2_inode_scan scan,
792 errcode_t (*done_group)(ext2_filsys fs,
793 ext2_inode_scan scan,
794 dgrp_t group,
Theodore Ts'ob5abe6f1998-01-19 14:47:53 +0000795 void * priv_data),
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000796 void *done_group_data);
797extern int ext2fs_inode_scan_flags(ext2_inode_scan scan, int set_flags,
798 int clear_flags);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000799extern errcode_t ext2fs_read_inode (ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000800 struct ext2_inode * inode);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000801extern errcode_t ext2fs_write_inode(ext2_filsys fs, ext2_ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000802 struct ext2_inode * inode);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000803extern errcode_t ext2fs_get_blocks(ext2_filsys fs, ext2_ino_t ino, blk_t *blocks);
804extern errcode_t ext2fs_check_directory(ext2_filsys fs, ext2_ino_t ino);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000805
Theodore Ts'of12e2852002-02-20 01:06:25 -0500806/* inode_io.c */
807extern io_manager inode_io_manager;
Theodore Ts'o546a1ff2002-03-07 23:52:56 -0500808extern errcode_t ext2fs_inode_io_intern(ext2_filsys fs, ext2_ino_t ino,
809 char **name);
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400810extern errcode_t ext2fs_inode_io_intern2(ext2_filsys fs, ext2_ino_t ino,
811 struct ext2_inode *inode,
812 char **name);
Theodore Ts'of12e2852002-02-20 01:06:25 -0500813
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000814/* ismounted.c */
815extern errcode_t ext2fs_check_if_mounted(const char *file, int *mount_flags);
Theodore Ts'o43ec8732001-01-03 14:56:46 +0000816extern errcode_t ext2fs_check_mount_point(const char *device, int *mount_flags,
817 char *mtpt, int mtlen);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000818
Theodore Ts'o3839e651997-04-26 13:21:57 +0000819/* namei.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000820extern errcode_t ext2fs_lookup(ext2_filsys fs, ext2_ino_t dir, const char *name,
821 int namelen, char *buf, ext2_ino_t *inode);
822extern errcode_t ext2fs_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
823 const char *name, ext2_ino_t *inode);
824errcode_t ext2fs_namei_follow(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
825 const char *name, ext2_ino_t *inode);
826extern errcode_t ext2fs_follow_link(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
827 ext2_ino_t inode, ext2_ino_t *res_inode);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000828
829/* native.c */
830int ext2fs_native_flag(void);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000831
832/* newdir.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000833extern errcode_t ext2fs_new_dir_block(ext2_filsys fs, ext2_ino_t dir_ino,
834 ext2_ino_t parent_ino, char **block);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000835
836/* mkdir.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000837extern errcode_t ext2fs_mkdir(ext2_filsys fs, ext2_ino_t parent, ext2_ino_t inum,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000838 const char *name);
839
Theodore Ts'od3cd93c2000-10-24 18:33:16 +0000840/* mkjournal.c */
Theodore Ts'oa1128472001-01-16 06:56:14 +0000841extern errcode_t ext2fs_create_journal_superblock(ext2_filsys fs,
842 __u32 size, int flags,
843 char **ret_jsb);
844extern errcode_t ext2fs_add_journal_device(ext2_filsys fs,
845 ext2_filsys journal_dev);
Theodore Ts'o31a17b32001-01-03 13:04:12 +0000846extern errcode_t ext2fs_add_journal_inode(ext2_filsys fs, blk_t size,
847 int flags);
Theodore Ts'od3cd93c2000-10-24 18:33:16 +0000848
Theodore Ts'o3839e651997-04-26 13:21:57 +0000849/* openfs.c */
850extern errcode_t ext2fs_open(const char *name, int flags, int superblock,
Theodore Ts'o54434922003-12-07 01:28:50 -0500851 unsigned int block_size, io_manager manager,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000852 ext2_filsys *ret_fs);
Theodore Ts'oc046ac72002-10-20 00:38:57 -0400853extern blk_t ext2fs_descriptor_block_loc(ext2_filsys fs, blk_t group_block,
854 dgrp_t i);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000855
856/* get_pathname.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000857extern errcode_t ext2fs_get_pathname(ext2_filsys fs, ext2_ino_t dir, ext2_ino_t ino,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000858 char **name);
859
860/* link.c */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000861errcode_t ext2fs_link(ext2_filsys fs, ext2_ino_t dir, const char *name,
862 ext2_ino_t ino, int flags);
863errcode_t ext2fs_unlink(ext2_filsys fs, ext2_ino_t dir, const char *name,
864 ext2_ino_t ino, int flags);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000865
866/* read_bb.c */
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000867extern errcode_t ext2fs_read_bb_inode(ext2_filsys fs,
868 ext2_badblocks_list *bb_list);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000869
870/* read_bb_file.c */
Theodore Ts'o57dca852000-07-04 19:20:25 +0000871extern errcode_t ext2fs_read_bb_FILE2(ext2_filsys fs, FILE *f,
872 ext2_badblocks_list *bb_list,
Theodore Ts'o50cd7e02002-07-14 16:00:50 -0400873 void *priv_data,
Theodore Ts'o57dca852000-07-04 19:20:25 +0000874 void (*invalid)(ext2_filsys fs,
875 blk_t blk,
876 char *badstr,
Theodore Ts'o50cd7e02002-07-14 16:00:50 -0400877 void *priv_data));
Theodore Ts'o3839e651997-04-26 13:21:57 +0000878extern errcode_t ext2fs_read_bb_FILE(ext2_filsys fs, FILE *f,
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000879 ext2_badblocks_list *bb_list,
Theodore Ts'o3839e651997-04-26 13:21:57 +0000880 void (*invalid)(ext2_filsys fs,
881 blk_t blk));
882
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000883/* rs_bitmap.c */
884extern errcode_t ext2fs_resize_generic_bitmap(__u32 new_end,
885 __u32 new_real_end,
886 ext2fs_generic_bitmap bmap);
887extern errcode_t ext2fs_resize_inode_bitmap(__u32 new_end, __u32 new_real_end,
888 ext2fs_inode_bitmap bmap);
889extern errcode_t ext2fs_resize_block_bitmap(__u32 new_end, __u32 new_real_end,
890 ext2fs_block_bitmap bmap);
Theodore Ts'oa29f4d31997-04-29 21:26:48 +0000891extern errcode_t ext2fs_copy_bitmap(ext2fs_generic_bitmap src,
892 ext2fs_generic_bitmap *dest);
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000893
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000894/* swapfs.c */
895extern void ext2fs_swap_super(struct ext2_super_block * super);
896extern void ext2fs_swap_group_desc(struct ext2_group_desc *gdp);
Theodore Ts'o1e3472c1997-04-29 14:53:37 +0000897extern void ext2fs_swap_inode(ext2_filsys fs,struct ext2_inode *t,
898 struct ext2_inode *f, int hostorder);
899
Theodore Ts'o19c78dc1997-04-29 16:17:09 +0000900/* valid_blk.c */
Theodore Ts'o521e3681997-04-29 17:48:10 +0000901extern int ext2fs_inode_has_valid_blocks(struct ext2_inode *inode);
902
903/* version.c */
904extern int ext2fs_parse_version_string(const char *ver_string);
905extern int ext2fs_get_library_version(const char **ver_string,
906 const char **date_string);
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000907
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000908/* write_bb_file.c */
909extern errcode_t ext2fs_write_bb_FILE(ext2_badblocks_list bb_list,
910 unsigned int flags,
911 FILE *f);
912
913
Theodore Ts'o3839e651997-04-26 13:21:57 +0000914/* inline functions */
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400915extern errcode_t ext2fs_get_mem(unsigned long size, void *ptr);
916extern errcode_t ext2fs_free_mem(void *ptr);
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000917extern errcode_t ext2fs_resize_mem(unsigned long old_size,
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400918 unsigned long size, void *ptr);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000919extern void ext2fs_mark_super_dirty(ext2_filsys fs);
920extern void ext2fs_mark_changed(ext2_filsys fs);
921extern int ext2fs_test_changed(ext2_filsys fs);
922extern void ext2fs_mark_valid(ext2_filsys fs);
923extern void ext2fs_unmark_valid(ext2_filsys fs);
924extern int ext2fs_test_valid(ext2_filsys fs);
925extern void ext2fs_mark_ib_dirty(ext2_filsys fs);
926extern void ext2fs_mark_bb_dirty(ext2_filsys fs);
927extern int ext2fs_test_ib_dirty(ext2_filsys fs);
928extern int ext2fs_test_bb_dirty(ext2_filsys fs);
929extern int ext2fs_group_of_blk(ext2_filsys fs, blk_t blk);
Theodore Ts'o31dbecd2001-01-11 04:54:39 +0000930extern int ext2fs_group_of_ino(ext2_filsys fs, ext2_ino_t ino);
Theodore Ts'o0684a4f2002-08-17 10:19:44 -0400931extern blk_t ext2fs_inode_data_blocks(ext2_filsys fs,
932 struct ext2_inode *inode);
Theodore Ts'o3839e651997-04-26 13:21:57 +0000933
934/*
935 * The actual inlined functions definitions themselves...
936 *
937 * If NO_INLINE_FUNCS is defined, then we won't try to do inline
938 * functions at all!
939 */
940#if (defined(INCLUDE_INLINE_FUNCS) || !defined(NO_INLINE_FUNCS))
941#ifdef INCLUDE_INLINE_FUNCS
942#define _INLINE_ extern
943#else
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000944#ifdef __GNUC__
Theodore Ts'o3839e651997-04-26 13:21:57 +0000945#define _INLINE_ extern __inline__
Theodore Ts'o76f875d1998-04-27 01:41:13 +0000946#else /* For Watcom C */
947#define _INLINE_ extern inline
948#endif
Theodore Ts'o3839e651997-04-26 13:21:57 +0000949#endif
950
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000951#ifndef EXT2_CUSTOM_MEMORY_ROUTINES
952/*
953 * Allocate memory
954 */
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400955_INLINE_ errcode_t ext2fs_get_mem(unsigned long size, void *ptr)
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000956{
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400957 void **pp = (void **)ptr;
958
959 *pp = malloc(size);
960 if (!*pp)
Theodore Ts'o291c9041997-10-31 06:17:08 +0000961 return EXT2_ET_NO_MEMORY;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000962 return 0;
963}
964
965/*
966 * Free memory
967 */
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400968_INLINE_ errcode_t ext2fs_free_mem(void *ptr)
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000969{
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400970 void **pp = (void **)ptr;
971
972 free(*pp);
973 *pp = 0;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000974 return 0;
975}
976
977/*
978 * Resize memory
979 */
Theodore Ts'o54434922003-12-07 01:28:50 -0500980_INLINE_ errcode_t ext2fs_resize_mem(unsigned long old_size EXT2FS_ATTR((unused)),
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400981 unsigned long size, void *ptr)
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000982{
983 void *p;
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400984 void **pp = (void **)ptr;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000985
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400986 p = realloc(*pp, size);
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000987 if (!p)
Theodore Ts'o291c9041997-10-31 06:17:08 +0000988 return EXT2_ET_NO_MEMORY;
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400989 *pp = p;
Theodore Ts'o7b4e4531997-10-26 03:41:24 +0000990 return 0;
991}
992#endif /* Custom memory routines */
993
Theodore Ts'o3839e651997-04-26 13:21:57 +0000994/*
995 * Mark a filesystem superblock as dirty
996 */
997_INLINE_ void ext2fs_mark_super_dirty(ext2_filsys fs)
998{
999 fs->flags |= EXT2_FLAG_DIRTY | EXT2_FLAG_CHANGED;
1000}
1001
1002/*
1003 * Mark a filesystem as changed
1004 */
1005_INLINE_ void ext2fs_mark_changed(ext2_filsys fs)
1006{
1007 fs->flags |= EXT2_FLAG_CHANGED;
1008}
1009
1010/*
1011 * Check to see if a filesystem has changed
1012 */
1013_INLINE_ int ext2fs_test_changed(ext2_filsys fs)
1014{
1015 return (fs->flags & EXT2_FLAG_CHANGED);
1016}
1017
1018/*
1019 * Mark a filesystem as valid
1020 */
1021_INLINE_ void ext2fs_mark_valid(ext2_filsys fs)
1022{
1023 fs->flags |= EXT2_FLAG_VALID;
1024}
1025
1026/*
1027 * Mark a filesystem as NOT valid
1028 */
1029_INLINE_ void ext2fs_unmark_valid(ext2_filsys fs)
1030{
1031 fs->flags &= ~EXT2_FLAG_VALID;
1032}
1033
1034/*
1035 * Check to see if a filesystem is valid
1036 */
1037_INLINE_ int ext2fs_test_valid(ext2_filsys fs)
1038{
1039 return (fs->flags & EXT2_FLAG_VALID);
1040}
1041
1042/*
1043 * Mark the inode bitmap as dirty
1044 */
1045_INLINE_ void ext2fs_mark_ib_dirty(ext2_filsys fs)
1046{
1047 fs->flags |= EXT2_FLAG_IB_DIRTY | EXT2_FLAG_CHANGED;
1048}
1049
1050/*
1051 * Mark the block bitmap as dirty
1052 */
1053_INLINE_ void ext2fs_mark_bb_dirty(ext2_filsys fs)
1054{
1055 fs->flags |= EXT2_FLAG_BB_DIRTY | EXT2_FLAG_CHANGED;
1056}
1057
1058/*
1059 * Check to see if a filesystem's inode bitmap is dirty
1060 */
1061_INLINE_ int ext2fs_test_ib_dirty(ext2_filsys fs)
1062{
1063 return (fs->flags & EXT2_FLAG_IB_DIRTY);
1064}
1065
1066/*
1067 * Check to see if a filesystem's block bitmap is dirty
1068 */
1069_INLINE_ int ext2fs_test_bb_dirty(ext2_filsys fs)
1070{
1071 return (fs->flags & EXT2_FLAG_BB_DIRTY);
1072}
1073
1074/*
1075 * Return the group # of a block
1076 */
1077_INLINE_ int ext2fs_group_of_blk(ext2_filsys fs, blk_t blk)
1078{
1079 return (blk - fs->super->s_first_data_block) /
1080 fs->super->s_blocks_per_group;
1081}
1082
1083/*
1084 * Return the group # of an inode number
1085 */
Theodore Ts'o31dbecd2001-01-11 04:54:39 +00001086_INLINE_ int ext2fs_group_of_ino(ext2_filsys fs, ext2_ino_t ino)
Theodore Ts'o3839e651997-04-26 13:21:57 +00001087{
1088 return (ino - 1) / fs->super->s_inodes_per_group;
1089}
Theodore Ts'o0684a4f2002-08-17 10:19:44 -04001090
1091_INLINE_ blk_t ext2fs_inode_data_blocks(ext2_filsys fs,
1092 struct ext2_inode *inode)
1093{
1094 return inode->i_blocks -
1095 (inode->i_file_acl ? fs->blocksize >> 9 : 0);
1096}
Theodore Ts'o3839e651997-04-26 13:21:57 +00001097#undef _INLINE_
1098#endif
1099
Theodore Ts'ofa7ef712000-05-19 02:11:41 +00001100#ifdef __cplusplus
1101}
1102#endif
1103
Theodore Ts'o9abd2ce1998-02-16 22:00:37 +00001104#endif /* _EXT2FS_EXT2FS_H */