journal.h 16 KB

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