journal.h 17 KB

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