journal.h 14 KB

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