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