Whamcloud - gitweb
resize2fs: trim resize to cluster boundary
[tools/e2fsprogs.git] / e2fsck / jfs_user.h
1 /*
2  * Compatibility header file for e2fsck which should be included
3  * instead of linux/jfs.h
4  *
5  * Copyright (C) 2000 Stephen C. Tweedie
6  *
7  * This file may be redistributed under the terms of the
8  * GNU General Public License version 2 or at your discretion
9  * any later version.
10  */
11 #ifndef _JFS_USER_H
12 #define _JFS_USER_H
13
14 #ifdef DEBUGFS
15 #include <stdio.h>
16 #include <stdlib.h>
17 #if EXT2_FLAT_INCLUDES
18 #include "ext2_fs.h"
19 #include "ext2fs.h"
20 #include "blkid.h"
21 #else
22 #include "ext2fs/ext2_fs.h"
23 #include "ext2fs/ext2fs.h"
24 #include "blkid/blkid.h"
25 #endif
26 #else
27 /*
28  * Pull in the definition of the e2fsck context structure
29  */
30 #include "config.h"
31 #include "e2fsck.h"
32 #endif
33
34 #if __STDC_VERSION__ < 199901L
35 # if __GNUC__ >= 2 || _MSC_VER >= 1300
36 #  define __func__ __FUNCTION__
37 # else
38 #  define __func__ "<unknown>"
39 # endif
40 #endif
41
42 struct buffer_head {
43 #ifdef DEBUGFS
44         ext2_filsys     b_fs;
45 #else
46         e2fsck_t        b_ctx;
47 #endif
48         io_channel      b_io;
49         int             b_size;
50         int             b_err;
51         unsigned int    b_dirty:1;
52         unsigned int    b_uptodate:1;
53         unsigned long long b_blocknr;
54         char            b_data[4096];
55 };
56
57 struct inode {
58 #ifdef DEBUGFS
59         ext2_filsys     i_fs;
60 #else
61         e2fsck_t        i_ctx;
62 #endif
63         ext2_ino_t      i_ino;
64         struct ext2_inode i_ext2;
65 };
66
67 struct kdev_s {
68 #ifdef DEBUGFS
69         ext2_filsys     k_fs;
70 #else
71         e2fsck_t        k_ctx;
72 #endif
73         int             k_dev;
74 };
75
76 #define K_DEV_FS        1
77 #define K_DEV_JOURNAL   2
78
79 #define lock_buffer(bh) do {} while (0)
80 #define unlock_buffer(bh) do {} while (0)
81 #define buffer_req(bh) 1
82 #define do_readahead(journal, start) do {} while (0)
83
84 typedef struct kmem_cache {
85         int     object_length;
86 } kmem_cache_t;
87
88 #define kmem_cache_alloc(cache, flags) malloc((cache)->object_length)
89 #define kmem_cache_free(cache, obj) free(obj)
90 #define kmem_cache_create(name, len, a, b, c) do_cache_create(len)
91 #define kmem_cache_destroy(cache) do_cache_destroy(cache)
92 #define kmalloc(len, flags) malloc(len)
93 #define kfree(p) free(p)
94
95 #define cond_resched()  do { } while (0)
96
97 #define __init
98
99 /*
100  * Now pull in the real linux/jfs.h definitions.
101  */
102 #include <ext2fs/kernel-jbd.h>
103
104 /*
105  * We use the standard libext2fs portability tricks for inline
106  * functions.
107  */
108 #ifdef NO_INLINE_FUNCS
109 extern kmem_cache_t *do_cache_create(int len);
110 extern void do_cache_destroy(kmem_cache_t *cache);
111 extern size_t journal_tag_bytes(journal_t *journal);
112 extern __u32 __hash_32(__u32 val);
113 extern __u32 hash_32(__u32 val, unsigned int bits);
114 extern __u32 hash_64(__u64 val, unsigned int bits);
115 extern void *kmalloc_array(unsigned n, unsigned size, int flags);
116 extern __u32 jbd2_chksum(journal_t *j, __u32 crc, const void *address,
117                          unsigned int length);
118 extern void jbd2_descriptor_block_csum_set(journal_t *j,
119                                            struct buffer_head *bh);
120 #endif
121
122 #if (defined(E2FSCK_INCLUDE_INLINE_FUNCS) || !defined(NO_INLINE_FUNCS))
123 #ifdef E2FSCK_INCLUDE_INLINE_FUNCS
124 #if (__STDC_VERSION__ >= 199901L)
125 #define _INLINE_ extern inline
126 #else
127 #define _INLINE_ inline
128 #endif
129 #else /* !E2FSCK_INCLUDE_INLINE FUNCS */
130 #if (__STDC_VERSION__ >= 199901L)
131 #define _INLINE_ inline
132 #else /* not C99 */
133 #ifdef __GNUC__
134 #define _INLINE_ extern __inline__
135 #else                           /* For Watcom C */
136 #define _INLINE_ extern inline
137 #endif /* __GNUC__ */
138 #endif /* __STDC_VERSION__ >= 199901L */
139 #endif /* E2FSCK_INCLUDE_INLINE_FUNCS */
140
141 _INLINE_ kmem_cache_t *do_cache_create(int len)
142 {
143         kmem_cache_t *new_cache;
144
145         new_cache = malloc(sizeof(*new_cache));
146         if (new_cache)
147                 new_cache->object_length = len;
148         return new_cache;
149 }
150
151 _INLINE_ void do_cache_destroy(kmem_cache_t *cache)
152 {
153         free(cache);
154 }
155
156 /* generic hashing taken from the Linux kernel */
157 #define GOLDEN_RATIO_32 0x61C88647
158 #define GOLDEN_RATIO_64 0x61C8864680B583EBull
159
160 _INLINE_ __u32 __hash_32(__u32 val)
161 {
162         return val * GOLDEN_RATIO_32;
163 }
164
165 _INLINE_ __u32 hash_32(__u32 val, unsigned int bits)
166 {
167         /* High bits are more random, so use them. */
168         return __hash_32(val) >> (32 - bits);
169 }
170
171 _INLINE_ __u32 hash_64(__u64 val, unsigned int bits)
172 {
173         if (sizeof(long) >= 8) {
174                 /* 64x64-bit multiply is efficient on all 64-bit processors */
175                 return val * GOLDEN_RATIO_64 >> (64 - bits);
176         } else {
177                 /* Hash 64 bits using only 32x32-bit multiply. */
178                 return hash_32((__u32)val ^ __hash_32(val >> 32), bits);
179         }
180 }
181
182 _INLINE_ void *kmalloc_array(unsigned n, unsigned size,
183                              int flags EXT2FS_ATTR((unused)))
184 {
185         if (n && (~0U)/n < size)
186                 return NULL;
187         return malloc(n * size);
188 }
189
190 _INLINE_ __u32 jbd2_chksum(journal_t *j EXT2FS_ATTR((unused)),
191                            __u32 crc, const void *address,
192                            unsigned int length)
193 {
194         return ext2fs_crc32c_le(crc, address, length);
195 }
196
197 _INLINE_ void jbd2_descriptor_block_csum_set(journal_t *j,
198                                              struct buffer_head *bh)
199 {
200         struct jbd2_journal_block_tail *tail;
201         __u32 csum;
202
203         if (!jbd2_journal_has_csum_v2or3(j))
204                 return;
205
206         tail = (struct jbd2_journal_block_tail *)(bh->b_data + j->j_blocksize -
207                         sizeof(struct jbd2_journal_block_tail));
208         tail->t_checksum = 0;
209         csum = jbd2_chksum(j, j->j_csum_seed, bh->b_data, j->j_blocksize);
210         tail->t_checksum = cpu_to_be32(csum);
211 }
212 #undef _INLINE_
213 #endif
214
215 /*
216  * Kernel compatibility functions are defined in journal.c
217  */
218 int jbd2_journal_bmap(journal_t *journal, unsigned long block,
219                       unsigned long long *phys);
220 struct buffer_head *getblk(kdev_t ctx, unsigned long long blocknr,
221                            int blocksize);
222 int sync_blockdev(kdev_t kdev);
223 void ll_rw_block(int rw, int op_flags, int nr, struct buffer_head *bh[]);
224 void mark_buffer_dirty(struct buffer_head *bh);
225 void mark_buffer_uptodate(struct buffer_head *bh, int val);
226 void brelse(struct buffer_head *bh);
227 int buffer_uptodate(struct buffer_head *bh);
228 void wait_on_buffer(struct buffer_head *bh);
229
230 /*
231  * Define newer 2.5 interfaces
232  */
233 #define __getblk(dev, blocknr, blocksize) getblk(dev, blocknr, blocksize)
234 #define set_buffer_uptodate(bh) mark_buffer_uptodate(bh, 1)
235
236 #ifdef DEBUGFS
237 #include <assert.h>
238 #undef J_ASSERT
239 #define J_ASSERT(x)     assert(x)
240
241 #define JSB_HAS_INCOMPAT_FEATURE(jsb, mask)                             \
242         ((jsb)->s_header.h_blocktype == ext2fs_cpu_to_be32(JBD2_SUPERBLOCK_V2) &&       \
243          ((jsb)->s_feature_incompat & ext2fs_cpu_to_be32((mask))))
244 #else  /* !DEBUGFS */
245
246 extern e2fsck_t e2fsck_global_ctx;  /* Try your very best not to use this! */
247
248 #define J_ASSERT(assert)                                                \
249         do { if (!(assert)) {                                           \
250                 printf ("Assertion failure in %s() at %s line %d: "     \
251                         "\"%s\"\n",                                     \
252                         __func__, __FILE__, __LINE__, # assert);        \
253                 fatal_error(e2fsck_global_ctx, 0);                      \
254         } } while (0)
255
256 #endif /* DEBUGFS */
257
258 #ifndef EFSBADCRC
259 #define EFSBADCRC       EXT2_ET_BAD_CRC
260 #endif
261 #ifndef EFSCORRUPTED
262 #define EFSCORRUPTED    EXT2_ET_FILESYSTEM_CORRUPTED
263 #endif
264
265 /* recovery.c */
266 extern int      jbd2_journal_recover    (journal_t *journal);
267 extern int      jbd2_journal_skip_recovery (journal_t *);
268
269 /* revoke.c */
270 extern int      jbd2_journal_init_revoke(journal_t *, int);
271 extern void     jbd2_journal_destroy_revoke(journal_t *);
272 extern void     jbd2_journal_destroy_revoke_record_cache(void);
273 extern void     jbd2_journal_destroy_revoke_table_cache(void);
274 extern int      jbd2_journal_init_revoke_record_cache(void);
275 extern int      jbd2_journal_init_revoke_table_cache(void);
276
277
278 extern int      jbd2_journal_set_revoke(journal_t *, unsigned long long, tid_t);
279 extern int      jbd2_journal_test_revoke(journal_t *, unsigned long long, tid_t);
280 extern void     jbd2_journal_clear_revoke(journal_t *);
281
282 #endif /* _JFS_USER_H */