]>
Commit | Line | Data |
---|---|---|
ccd979bd MF |
1 | /* -*- mode: c; c-basic-offset: 8; -*- |
2 | * vim: noexpandtab sw=8 ts=8 sts=0: | |
3 | * | |
4 | * journal.h | |
5 | * | |
6 | * Defines journalling api and structures. | |
7 | * | |
8 | * Copyright (C) 2003, 2005 Oracle. All rights reserved. | |
9 | * | |
10 | * This program is free software; you can redistribute it and/or | |
11 | * modify it under the terms of the GNU General Public | |
12 | * License as published by the Free Software Foundation; either | |
13 | * version 2 of the License, or (at your option) any later version. | |
14 | * | |
15 | * This program is distributed in the hope that it will be useful, | |
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
18 | * General Public License for more details. | |
19 | * | |
20 | * You should have received a copy of the GNU General Public | |
21 | * License along with this program; if not, write to the | |
22 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 | * Boston, MA 021110-1307, USA. | |
24 | */ | |
25 | ||
26 | #ifndef OCFS2_JOURNAL_H | |
27 | #define OCFS2_JOURNAL_H | |
28 | ||
29 | #include <linux/fs.h> | |
30 | #include <linux/jbd.h> | |
31 | ||
ccd979bd MF |
32 | enum ocfs2_journal_state { |
33 | OCFS2_JOURNAL_FREE = 0, | |
34 | OCFS2_JOURNAL_LOADED, | |
35 | OCFS2_JOURNAL_IN_SHUTDOWN, | |
36 | }; | |
37 | ||
38 | struct ocfs2_super; | |
39 | struct ocfs2_dinode; | |
40 | struct ocfs2_journal_handle; | |
41 | ||
42 | struct ocfs2_journal { | |
43 | enum ocfs2_journal_state j_state; /* Journals current state */ | |
44 | ||
45 | journal_t *j_journal; /* The kernels journal type */ | |
46 | struct inode *j_inode; /* Kernel inode pointing to | |
47 | * this journal */ | |
48 | struct ocfs2_super *j_osb; /* pointer to the super | |
49 | * block for the node | |
50 | * we're currently | |
51 | * running on -- not | |
52 | * necessarily the super | |
53 | * block from the node | |
54 | * which we usually run | |
55 | * from (recovery, | |
56 | * etc) */ | |
57 | struct buffer_head *j_bh; /* Journal disk inode block */ | |
58 | atomic_t j_num_trans; /* Number of transactions | |
59 | * currently in the system. */ | |
60 | unsigned long j_trans_id; | |
61 | struct rw_semaphore j_trans_barrier; | |
62 | wait_queue_head_t j_checkpointed; | |
63 | ||
64 | spinlock_t j_lock; | |
65 | struct list_head j_la_cleanups; | |
66 | struct work_struct j_recovery_work; | |
67 | }; | |
68 | ||
69 | extern spinlock_t trans_inc_lock; | |
70 | ||
71 | /* wrap j_trans_id so we never have it equal to zero. */ | |
72 | static inline unsigned long ocfs2_inc_trans_id(struct ocfs2_journal *j) | |
73 | { | |
74 | unsigned long old_id; | |
75 | spin_lock(&trans_inc_lock); | |
76 | old_id = j->j_trans_id++; | |
77 | if (unlikely(!j->j_trans_id)) | |
78 | j->j_trans_id = 1; | |
79 | spin_unlock(&trans_inc_lock); | |
80 | return old_id; | |
81 | } | |
82 | ||
83 | static inline void ocfs2_set_inode_lock_trans(struct ocfs2_journal *journal, | |
84 | struct inode *inode) | |
85 | { | |
86 | spin_lock(&trans_inc_lock); | |
87 | OCFS2_I(inode)->ip_last_trans = journal->j_trans_id; | |
88 | spin_unlock(&trans_inc_lock); | |
89 | } | |
90 | ||
91 | /* Used to figure out whether it's safe to drop a metadata lock on an | |
92 | * inode. Returns true if all the inodes changes have been | |
93 | * checkpointed to disk. You should be holding the spinlock on the | |
94 | * metadata lock while calling this to be sure that nobody can take | |
95 | * the lock and put it on another transaction. */ | |
96 | static inline int ocfs2_inode_fully_checkpointed(struct inode *inode) | |
97 | { | |
98 | int ret; | |
99 | struct ocfs2_journal *journal = OCFS2_SB(inode->i_sb)->journal; | |
100 | ||
101 | spin_lock(&trans_inc_lock); | |
102 | ret = time_after(journal->j_trans_id, OCFS2_I(inode)->ip_last_trans); | |
103 | spin_unlock(&trans_inc_lock); | |
104 | return ret; | |
105 | } | |
106 | ||
107 | /* convenience function to check if an inode is still new (has never | |
108 | * hit disk) Will do you a favor and set created_trans = 0 when you've | |
109 | * been checkpointed. returns '1' if the inode is still new. */ | |
110 | static inline int ocfs2_inode_is_new(struct inode *inode) | |
111 | { | |
112 | int ret; | |
113 | ||
114 | /* System files are never "new" as they're written out by | |
115 | * mkfs. This helps us early during mount, before we have the | |
116 | * journal open and j_trans_id could be junk. */ | |
117 | if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE) | |
118 | return 0; | |
119 | spin_lock(&trans_inc_lock); | |
120 | ret = !(time_after(OCFS2_SB(inode->i_sb)->journal->j_trans_id, | |
121 | OCFS2_I(inode)->ip_created_trans)); | |
122 | if (!ret) | |
123 | OCFS2_I(inode)->ip_created_trans = 0; | |
124 | spin_unlock(&trans_inc_lock); | |
125 | return ret; | |
126 | } | |
127 | ||
128 | static inline void ocfs2_inode_set_new(struct ocfs2_super *osb, | |
129 | struct inode *inode) | |
130 | { | |
131 | spin_lock(&trans_inc_lock); | |
132 | OCFS2_I(inode)->ip_created_trans = osb->journal->j_trans_id; | |
133 | spin_unlock(&trans_inc_lock); | |
134 | } | |
135 | ||
ccd979bd MF |
136 | struct ocfs2_journal_handle { |
137 | handle_t *k_handle; /* kernel handle. */ | |
138 | struct ocfs2_journal *journal; | |
ccd979bd MF |
139 | }; |
140 | ||
ccd979bd MF |
141 | /* Exported only for the journal struct init code in super.c. Do not call. */ |
142 | void ocfs2_complete_recovery(void *data); | |
143 | ||
144 | /* | |
145 | * Journal Control: | |
146 | * Initialize, Load, Shutdown, Wipe a journal. | |
147 | * | |
148 | * ocfs2_journal_init - Initialize journal structures in the OSB. | |
149 | * ocfs2_journal_load - Load the given journal off disk. Replay it if | |
150 | * there's transactions still in there. | |
151 | * ocfs2_journal_shutdown - Shutdown a journal, this will flush all | |
152 | * uncommitted, uncheckpointed transactions. | |
153 | * ocfs2_journal_wipe - Wipe transactions from a journal. Optionally | |
154 | * zero out each block. | |
155 | * ocfs2_recovery_thread - Perform recovery on a node. osb is our own osb. | |
156 | * ocfs2_mark_dead_nodes - Start recovery on nodes we won't get a heartbeat | |
157 | * event on. | |
158 | * ocfs2_start_checkpoint - Kick the commit thread to do a checkpoint. | |
159 | */ | |
160 | void ocfs2_set_journal_params(struct ocfs2_super *osb); | |
161 | int ocfs2_journal_init(struct ocfs2_journal *journal, | |
162 | int *dirty); | |
163 | void ocfs2_journal_shutdown(struct ocfs2_super *osb); | |
164 | int ocfs2_journal_wipe(struct ocfs2_journal *journal, | |
165 | int full); | |
166 | int ocfs2_journal_load(struct ocfs2_journal *journal); | |
167 | int ocfs2_check_journals_nolocks(struct ocfs2_super *osb); | |
168 | void ocfs2_recovery_thread(struct ocfs2_super *osb, | |
169 | int node_num); | |
170 | int ocfs2_mark_dead_nodes(struct ocfs2_super *osb); | |
171 | void ocfs2_complete_mount_recovery(struct ocfs2_super *osb); | |
172 | ||
173 | static inline void ocfs2_start_checkpoint(struct ocfs2_super *osb) | |
174 | { | |
175 | atomic_set(&osb->needs_checkpoint, 1); | |
176 | wake_up(&osb->checkpoint_event); | |
177 | } | |
178 | ||
179 | static inline void ocfs2_checkpoint_inode(struct inode *inode) | |
180 | { | |
181 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | |
182 | ||
183 | if (!ocfs2_inode_fully_checkpointed(inode)) { | |
184 | /* WARNING: This only kicks off a single | |
185 | * checkpoint. If someone races you and adds more | |
186 | * metadata to the journal, you won't know, and will | |
187 | * wind up waiting *alot* longer than necessary. Right | |
188 | * now we only use this in clear_inode so that's | |
189 | * OK. */ | |
190 | ocfs2_start_checkpoint(osb); | |
191 | ||
192 | wait_event(osb->journal->j_checkpointed, | |
193 | ocfs2_inode_fully_checkpointed(inode)); | |
194 | } | |
195 | } | |
196 | ||
197 | /* | |
198 | * Transaction Handling: | |
199 | * Manage the lifetime of a transaction handle. | |
200 | * | |
201 | * ocfs2_alloc_handle - Only allocate a handle so we can start putting | |
202 | * cluster locks on it. To actually change blocks, | |
203 | * call ocfs2_start_trans with the handle returned | |
204 | * from this function. You may call ocfs2_commit_trans | |
205 | * at any time in the lifetime of a handle. | |
206 | * ocfs2_start_trans - Begin a transaction. Give it an upper estimate of | |
207 | * the number of blocks that will be changed during | |
208 | * this handle. | |
209 | * ocfs2_commit_trans - Complete a handle. | |
210 | * ocfs2_extend_trans - Extend a handle by nblocks credits. This may | |
211 | * commit the handle to disk in the process, but will | |
212 | * not release any locks taken during the transaction. | |
213 | * ocfs2_journal_access - Notify the handle that we want to journal this | |
214 | * buffer. Will have to call ocfs2_journal_dirty once | |
215 | * we've actually dirtied it. Type is one of . or . | |
216 | * ocfs2_journal_dirty - Mark a journalled buffer as having dirty data. | |
217 | * ocfs2_journal_dirty_data - Indicate that a data buffer should go out before | |
218 | * the current handle commits. | |
ccd979bd MF |
219 | */ |
220 | ||
221 | /* You must always start_trans with a number of buffs > 0, but it's | |
222 | * perfectly legal to go through an entire transaction without having | |
223 | * dirtied any buffers. */ | |
224 | struct ocfs2_journal_handle *ocfs2_alloc_handle(struct ocfs2_super *osb); | |
225 | struct ocfs2_journal_handle *ocfs2_start_trans(struct ocfs2_super *osb, | |
226 | struct ocfs2_journal_handle *handle, | |
227 | int max_buffs); | |
228 | void ocfs2_commit_trans(struct ocfs2_journal_handle *handle); | |
1fc58146 | 229 | int ocfs2_extend_trans(handle_t *handle, int nblocks); |
ccd979bd MF |
230 | |
231 | /* | |
232 | * Create access is for when we get a newly created buffer and we're | |
233 | * not gonna read it off disk, but rather fill it ourselves. Right | |
234 | * now, we don't do anything special with this (it turns into a write | |
235 | * request), but this is a good placeholder in case we do... | |
236 | * | |
237 | * Write access is for when we read a block off disk and are going to | |
238 | * modify it. This way the journalling layer knows it may need to make | |
239 | * a copy of that block (if it's part of another, uncommitted | |
240 | * transaction) before we do so. | |
241 | */ | |
242 | #define OCFS2_JOURNAL_ACCESS_CREATE 0 | |
243 | #define OCFS2_JOURNAL_ACCESS_WRITE 1 | |
244 | #define OCFS2_JOURNAL_ACCESS_UNDO 2 | |
245 | ||
246 | int ocfs2_journal_access(struct ocfs2_journal_handle *handle, | |
247 | struct inode *inode, | |
248 | struct buffer_head *bh, | |
249 | int type); | |
250 | /* | |
251 | * A word about the journal_access/journal_dirty "dance". It is | |
252 | * entirely legal to journal_access a buffer more than once (as long | |
253 | * as the access type is the same -- I'm not sure what will happen if | |
254 | * access type is different but this should never happen anyway) It is | |
255 | * also legal to journal_dirty a buffer more than once. In fact, you | |
256 | * can even journal_access a buffer after you've done a | |
257 | * journal_access/journal_dirty pair. The only thing you cannot do | |
258 | * however, is journal_dirty a buffer which you haven't yet passed to | |
259 | * journal_access at least once. | |
260 | * | |
261 | * That said, 99% of the time this doesn't matter and this is what the | |
262 | * path looks like: | |
263 | * | |
264 | * <read a bh> | |
265 | * ocfs2_journal_access(handle, bh, OCFS2_JOURNAL_ACCESS_WRITE); | |
266 | * <modify the bh> | |
267 | * ocfs2_journal_dirty(handle, bh); | |
268 | */ | |
269 | int ocfs2_journal_dirty(struct ocfs2_journal_handle *handle, | |
270 | struct buffer_head *bh); | |
271 | int ocfs2_journal_dirty_data(handle_t *handle, | |
272 | struct buffer_head *bh); | |
ccd979bd MF |
273 | |
274 | /* | |
275 | * Credit Macros: | |
276 | * Convenience macros to calculate number of credits needed. | |
277 | * | |
278 | * For convenience sake, I have a set of macros here which calculate | |
279 | * the *maximum* number of sectors which will be changed for various | |
280 | * metadata updates. | |
281 | */ | |
282 | ||
283 | /* simple file updates like chmod, etc. */ | |
284 | #define OCFS2_INODE_UPDATE_CREDITS 1 | |
285 | ||
286 | /* get one bit out of a suballocator: dinode + group descriptor + | |
287 | * prev. group desc. if we relink. */ | |
288 | #define OCFS2_SUBALLOC_ALLOC (3) | |
289 | ||
290 | /* dinode + group descriptor update. We don't relink on free yet. */ | |
291 | #define OCFS2_SUBALLOC_FREE (2) | |
292 | ||
293 | #define OCFS2_TRUNCATE_LOG_UPDATE OCFS2_INODE_UPDATE_CREDITS | |
294 | #define OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC (OCFS2_SUBALLOC_FREE \ | |
295 | + OCFS2_TRUNCATE_LOG_UPDATE) | |
296 | ||
297 | /* data block for new dir/symlink, 2 for bitmap updates (bitmap fe + | |
298 | * bitmap block for the new bit) */ | |
299 | #define OCFS2_DIR_LINK_ADDITIONAL_CREDITS (1 + 2) | |
300 | ||
301 | /* parent fe, parent block, new file entry, inode alloc fe, inode alloc | |
302 | * group descriptor + mkdir/symlink blocks */ | |
303 | #define OCFS2_MKNOD_CREDITS (3 + OCFS2_SUBALLOC_ALLOC \ | |
304 | + OCFS2_DIR_LINK_ADDITIONAL_CREDITS) | |
305 | ||
306 | /* local alloc metadata change + main bitmap updates */ | |
307 | #define OCFS2_WINDOW_MOVE_CREDITS (OCFS2_INODE_UPDATE_CREDITS \ | |
308 | + OCFS2_SUBALLOC_ALLOC + OCFS2_SUBALLOC_FREE) | |
309 | ||
310 | /* used when we don't need an allocation change for a dir extend. One | |
311 | * for the dinode, one for the new block. */ | |
312 | #define OCFS2_SIMPLE_DIR_EXTEND_CREDITS (2) | |
313 | ||
314 | /* file update (nlink, etc) + dir entry block */ | |
315 | #define OCFS2_LINK_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 1) | |
316 | ||
317 | /* inode + dir inode (if we unlink a dir), + dir entry block + orphan | |
318 | * dir inode link */ | |
319 | #define OCFS2_UNLINK_CREDITS (2 * OCFS2_INODE_UPDATE_CREDITS + 1 \ | |
320 | + OCFS2_LINK_CREDITS) | |
321 | ||
322 | /* dinode + orphan dir dinode + inode alloc dinode + orphan dir entry + | |
323 | * inode alloc group descriptor */ | |
324 | #define OCFS2_DELETE_INODE_CREDITS (3 * OCFS2_INODE_UPDATE_CREDITS + 1 + 1) | |
325 | ||
326 | /* dinode update, old dir dinode update, new dir dinode update, old | |
327 | * dir dir entry, new dir dir entry, dir entry update for renaming | |
328 | * directory + target unlink */ | |
329 | #define OCFS2_RENAME_CREDITS (3 * OCFS2_INODE_UPDATE_CREDITS + 3 \ | |
330 | + OCFS2_UNLINK_CREDITS) | |
331 | ||
332 | static inline int ocfs2_calc_extend_credits(struct super_block *sb, | |
333 | struct ocfs2_dinode *fe, | |
334 | u32 bits_wanted) | |
335 | { | |
336 | int bitmap_blocks, sysfile_bitmap_blocks, dinode_blocks; | |
337 | ||
338 | /* bitmap dinode, group desc. + relinked group. */ | |
339 | bitmap_blocks = OCFS2_SUBALLOC_ALLOC; | |
340 | ||
341 | /* we might need to shift tree depth so lets assume an | |
342 | * absolute worst case of complete fragmentation. Even with | |
343 | * that, we only need one update for the dinode, and then | |
344 | * however many metadata chunks needed * a remaining suballoc | |
345 | * alloc. */ | |
346 | sysfile_bitmap_blocks = 1 + | |
347 | (OCFS2_SUBALLOC_ALLOC - 1) * ocfs2_extend_meta_needed(fe); | |
348 | ||
349 | /* this does not include *new* metadata blocks, which are | |
350 | * accounted for in sysfile_bitmap_blocks. fe + | |
351 | * prev. last_eb_blk + blocks along edge of tree. | |
352 | * calc_symlink_credits passes because we just need 1 | |
353 | * credit for the dinode there. */ | |
354 | dinode_blocks = 1 + 1 + le16_to_cpu(fe->id2.i_list.l_tree_depth); | |
355 | ||
356 | return bitmap_blocks + sysfile_bitmap_blocks + dinode_blocks; | |
357 | } | |
358 | ||
359 | static inline int ocfs2_calc_symlink_credits(struct super_block *sb) | |
360 | { | |
361 | int blocks = OCFS2_MKNOD_CREDITS; | |
362 | ||
363 | /* links can be longer than one block so we may update many | |
364 | * within our single allocated extent. */ | |
365 | blocks += ocfs2_clusters_to_blocks(sb, 1); | |
366 | ||
367 | return blocks; | |
368 | } | |
369 | ||
370 | static inline int ocfs2_calc_group_alloc_credits(struct super_block *sb, | |
371 | unsigned int cpg) | |
372 | { | |
373 | int blocks; | |
374 | int bitmap_blocks = OCFS2_SUBALLOC_ALLOC + 1; | |
375 | /* parent inode update + new block group header + bitmap inode update | |
376 | + bitmap blocks affected */ | |
377 | blocks = 1 + 1 + 1 + bitmap_blocks; | |
378 | return blocks; | |
379 | } | |
380 | ||
381 | static inline int ocfs2_calc_tree_trunc_credits(struct super_block *sb, | |
382 | unsigned int clusters_to_del, | |
383 | struct ocfs2_dinode *fe, | |
384 | struct ocfs2_extent_list *last_el) | |
385 | { | |
386 | /* for dinode + all headers in this pass + update to next leaf */ | |
387 | u16 next_free = le16_to_cpu(last_el->l_next_free_rec); | |
388 | u16 tree_depth = le16_to_cpu(fe->id2.i_list.l_tree_depth); | |
389 | int credits = 1 + tree_depth + 1; | |
390 | int i; | |
391 | ||
392 | i = next_free - 1; | |
393 | BUG_ON(i < 0); | |
394 | ||
395 | /* We may be deleting metadata blocks, so metadata alloc dinode + | |
396 | one desc. block for each possible delete. */ | |
397 | if (tree_depth && next_free == 1 && | |
398 | le32_to_cpu(last_el->l_recs[i].e_clusters) == clusters_to_del) | |
399 | credits += 1 + tree_depth; | |
400 | ||
401 | /* update to the truncate log. */ | |
402 | credits += OCFS2_TRUNCATE_LOG_UPDATE; | |
403 | ||
404 | return credits; | |
405 | } | |
406 | ||
407 | #endif /* OCFS2_JOURNAL_H */ |