Whamcloud - gitweb
ext2fs: implement dir entry creation in htree directories
[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[1024];
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 static inline void *kmalloc_array(unsigned n, unsigned size, int flags)
96 {
97         if (n && (~0U)/n < size)
98                 return NULL;
99         return malloc(n * size);
100 }
101
102 #define cond_resched()  do { } while (0)
103
104 #define __init
105
106 /*
107  * Now pull in the real linux/jfs.h definitions.
108  */
109 #include <ext2fs/kernel-jbd.h>
110
111 /*
112  * We use the standard libext2fs portability tricks for inline
113  * functions.
114  */
115 #ifdef NO_INLINE_FUNCS
116 extern kmem_cache_t *do_cache_create(int len);
117 extern void do_cache_destroy(kmem_cache_t *cache);
118 extern size_t journal_tag_bytes(journal_t *journal);
119 extern __u32 __hash_32(__u32 val);
120 extern __u32 hash_32(__u32 val, unsigned int bits);
121 extern __u32 hash_64(__u64 val, unsigned int bits);
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_ kmem_cache_t *do_cache_create(int len)
144 {
145         kmem_cache_t *new_cache;
146
147         new_cache = malloc(sizeof(*new_cache));
148         if (new_cache)
149                 new_cache->object_length = len;
150         return new_cache;
151 }
152
153 _INLINE_ void do_cache_destroy(kmem_cache_t *cache)
154 {
155         free(cache);
156 }
157
158 /* generic hashing taken from the Linux kernel */
159 #define GOLDEN_RATIO_32 0x61C88647
160 #define GOLDEN_RATIO_64 0x61C8864680B583EBull
161
162 _INLINE_ __u32 __hash_32(__u32 val)
163 {
164         return val * GOLDEN_RATIO_32;
165 }
166
167 _INLINE_ __u32 hash_32(__u32 val, unsigned int bits)
168 {
169         /* High bits are more random, so use them. */
170         return __hash_32(val) >> (32 - bits);
171 }
172
173 _INLINE_ __u32 hash_64(__u64 val, unsigned int bits)
174 {
175         if (sizeof(long) >= 8) {
176                 /* 64x64-bit multiply is efficient on all 64-bit processors */
177                 return val * GOLDEN_RATIO_64 >> (64 - bits);
178         } else {
179                 /* Hash 64 bits using only 32x32-bit multiply. */
180                 return hash_32((__u32)val ^ __hash_32(val >> 32), bits);
181         }
182 }
183
184 #undef _INLINE_
185 #endif
186
187 /*
188  * Kernel compatibility functions are defined in journal.c
189  */
190 int jbd2_journal_bmap(journal_t *journal, unsigned long block,
191                       unsigned long long *phys);
192 struct buffer_head *getblk(kdev_t ctx, unsigned long long blocknr,
193                            int blocksize);
194 int sync_blockdev(kdev_t kdev);
195 void ll_rw_block(int rw, int op_flags, int nr, struct buffer_head *bh[]);
196 void mark_buffer_dirty(struct buffer_head *bh);
197 void mark_buffer_uptodate(struct buffer_head *bh, int val);
198 void brelse(struct buffer_head *bh);
199 int buffer_uptodate(struct buffer_head *bh);
200 void wait_on_buffer(struct buffer_head *bh);
201
202 /*
203  * Define newer 2.5 interfaces
204  */
205 #define __getblk(dev, blocknr, blocksize) getblk(dev, blocknr, blocksize)
206 #define set_buffer_uptodate(bh) mark_buffer_uptodate(bh, 1)
207
208 #ifdef DEBUGFS
209 #include <assert.h>
210 #undef J_ASSERT
211 #define J_ASSERT(x)     assert(x)
212
213 #define JSB_HAS_INCOMPAT_FEATURE(jsb, mask)                             \
214         ((jsb)->s_header.h_blocktype == ext2fs_cpu_to_be32(JBD2_SUPERBLOCK_V2) &&       \
215          ((jsb)->s_feature_incompat & ext2fs_cpu_to_be32((mask))))
216 #else  /* !DEBUGFS */
217
218 extern e2fsck_t e2fsck_global_ctx;  /* Try your very best not to use this! */
219
220 #define J_ASSERT(assert)                                                \
221         do { if (!(assert)) {                                           \
222                 printf ("Assertion failure in %s() at %s line %d: "     \
223                         "\"%s\"\n",                                     \
224                         __func__, __FILE__, __LINE__, # assert);        \
225                 fatal_error(e2fsck_global_ctx, 0);                      \
226         } } while (0)
227
228 #endif /* DEBUGFS */
229
230 #ifndef EFSBADCRC
231 #define EFSBADCRC       EXT2_ET_BAD_CRC
232 #endif
233 #ifndef EFSCORRUPTED
234 #define EFSCORRUPTED    EXT2_ET_FILESYSTEM_CORRUPTED
235 #endif
236
237 static inline void jbd2_descriptor_block_csum_set(journal_t *j,
238                                                   struct buffer_head *bh)
239 {
240         struct jbd2_journal_block_tail *tail;
241         __u32 csum;
242
243         if (!jbd2_journal_has_csum_v2or3(j))
244                 return;
245
246         tail = (struct jbd2_journal_block_tail *)(bh->b_data + j->j_blocksize -
247                         sizeof(struct jbd2_journal_block_tail));
248         tail->t_checksum = 0;
249         csum = jbd2_chksum(j, j->j_csum_seed, bh->b_data, j->j_blocksize);
250         tail->t_checksum = cpu_to_be32(csum);
251 }
252
253 /* recovery.c */
254 extern int      jbd2_journal_recover    (journal_t *journal);
255 extern int      jbd2_journal_skip_recovery (journal_t *);
256
257 /* revoke.c */
258 extern int      jbd2_journal_init_revoke(journal_t *, int);
259 extern void     jbd2_journal_destroy_revoke(journal_t *);
260 extern void     jbd2_journal_destroy_revoke_record_cache(void);
261 extern void     jbd2_journal_destroy_revoke_table_cache(void);
262 extern int      jbd2_journal_init_revoke_record_cache(void);
263 extern int      jbd2_journal_init_revoke_table_cache(void);
264
265
266 extern int      jbd2_journal_set_revoke(journal_t *, unsigned long long, tid_t);
267 extern int      jbd2_journal_test_revoke(journal_t *, unsigned long long, tid_t);
268 extern void     jbd2_journal_clear_revoke(journal_t *);
269
270 #endif /* _JFS_USER_H */