revoke.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:18k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/revoke.c
  3.  * 
  4.  * Written by Stephen C. Tweedie <sct@redhat.com>, 2000
  5.  *
  6.  * Copyright 2000 Red Hat corp --- All Rights Reserved
  7.  *
  8.  * This file is part of the Linux kernel and is made available under
  9.  * the terms of the GNU General Public License, version 2, or at your
  10.  * option, any later version, incorporated herein by reference.
  11.  *
  12.  * Journal revoke routines for the generic filesystem journaling code;
  13.  * part of the ext2fs journaling system.
  14.  *
  15.  * Revoke is the mechanism used to prevent old log records for deleted
  16.  * metadata from being replayed on top of newer data using the same
  17.  * blocks.  The revoke mechanism is used in two separate places:
  18.  * 
  19.  * + Commit: during commit we write the entire list of the current
  20.  *   transaction's revoked blocks to the journal
  21.  * 
  22.  * + Recovery: during recovery we record the transaction ID of all
  23.  *   revoked blocks.  If there are multiple revoke records in the log
  24.  *   for a single block, only the last one counts, and if there is a log
  25.  *   entry for a block beyond the last revoke, then that log entry still
  26.  *   gets replayed.
  27.  *
  28.  * We can get interactions between revokes and new log data within a
  29.  * single transaction:
  30.  *
  31.  * Block is revoked and then journaled:
  32.  *   The desired end result is the journaling of the new block, so we 
  33.  *   cancel the revoke before the transaction commits.
  34.  *
  35.  * Block is journaled and then revoked:
  36.  *   The revoke must take precedence over the write of the block, so we
  37.  *   need either to cancel the journal entry or to write the revoke
  38.  *   later in the log than the log block.  In this case, we choose the
  39.  *   latter: journaling a block cancels any revoke record for that block
  40.  *   in the current transaction, so any revoke for that block in the
  41.  *   transaction must have happened after the block was journaled and so
  42.  *   the revoke must take precedence.
  43.  *
  44.  * Block is revoked and then written as data: 
  45.  *   The data write is allowed to succeed, but the revoke is _not_
  46.  *   cancelled.  We still need to prevent old log records from
  47.  *   overwriting the new data.  We don't even need to clear the revoke
  48.  *   bit here.
  49.  *
  50.  * Revoke information on buffers is a tri-state value:
  51.  *
  52.  * RevokeValid clear: no cached revoke status, need to look it up
  53.  * RevokeValid set, Revoked clear:
  54.  * buffer has not been revoked, and cancel_revoke
  55.  * need do nothing.
  56.  * RevokeValid set, Revoked set:
  57.  * buffer has been revoked.  
  58.  */
  59. #ifndef __KERNEL__
  60. #include "jfs_user.h"
  61. #else
  62. #include <linux/sched.h>
  63. #include <linux/fs.h>
  64. #include <linux/jbd.h>
  65. #include <linux/errno.h>
  66. #include <linux/slab.h>
  67. #include <linux/locks.h>
  68. #include <linux/list.h>
  69. #include <linux/smp_lock.h>
  70. #include <linux/init.h>
  71. #endif
  72. static kmem_cache_t *revoke_record_cache;
  73. static kmem_cache_t *revoke_table_cache;
  74. /* Each revoke record represents one single revoked block.  During
  75.    journal replay, this involves recording the transaction ID of the
  76.    last transaction to revoke this block. */
  77. struct jbd_revoke_record_s 
  78. {
  79. struct list_head  hash;
  80. tid_t   sequence; /* Used for recovery only */
  81. unsigned long   blocknr;
  82. };
  83. /* The revoke table is just a simple hash table of revoke records. */
  84. struct jbd_revoke_table_s
  85. {
  86. /* It is conceivable that we might want a larger hash table
  87.  * for recovery.  Must be a power of two. */
  88. int   hash_size; 
  89. int   hash_shift; 
  90. struct list_head *hash_table;
  91. };
  92. #ifdef __KERNEL__
  93. static void write_one_revoke_record(journal_t *, transaction_t *,
  94.     struct journal_head **, int *,
  95.     struct jbd_revoke_record_s *);
  96. static void flush_descriptor(journal_t *, struct journal_head *, int);
  97. #endif
  98. /* Utility functions to maintain the revoke table */
  99. /* Borrowed from buffer.c: this is a tried and tested block hash function */
  100. static inline int hash(journal_t *journal, unsigned long block)
  101. {
  102. struct jbd_revoke_table_s *table = journal->j_revoke;
  103. int hash_shift = table->hash_shift;
  104. return ((block << (hash_shift - 6)) ^
  105. (block >> 13) ^
  106. (block << (hash_shift - 12))) & (table->hash_size - 1);
  107. }
  108. int insert_revoke_hash(journal_t *journal, unsigned long blocknr, tid_t seq)
  109. {
  110. struct list_head *hash_list;
  111. struct jbd_revoke_record_s *record;
  112. repeat:
  113. record = kmem_cache_alloc(revoke_record_cache, GFP_NOFS);
  114. if (!record)
  115. goto oom;
  116. record->sequence = seq;
  117. record->blocknr = blocknr;
  118. hash_list = &journal->j_revoke->hash_table[hash(journal, blocknr)];
  119. list_add(&record->hash, hash_list);
  120. return 0;
  121. oom:
  122. if (!journal_oom_retry)
  123. return -ENOMEM;
  124. jbd_debug(1, "ENOMEM in " __FUNCTION__ ", retrying.n");
  125. yield();
  126. goto repeat;
  127. }
  128. /* Find a revoke record in the journal's hash table. */
  129. static struct jbd_revoke_record_s *find_revoke_record(journal_t *journal,
  130.       unsigned long blocknr)
  131. {
  132. struct list_head *hash_list;
  133. struct jbd_revoke_record_s *record;
  134. hash_list = &journal->j_revoke->hash_table[hash(journal, blocknr)];
  135. record = (struct jbd_revoke_record_s *) hash_list->next;
  136. while (&(record->hash) != hash_list) {
  137. if (record->blocknr == blocknr)
  138. return record;
  139. record = (struct jbd_revoke_record_s *) record->hash.next;
  140. }
  141. return NULL;
  142. }
  143. int __init journal_init_revoke_caches(void)
  144. {
  145. revoke_record_cache = kmem_cache_create("revoke_record",
  146.    sizeof(struct jbd_revoke_record_s),
  147.    0, SLAB_HWCACHE_ALIGN, NULL, NULL);
  148. if (revoke_record_cache == 0)
  149. return -ENOMEM;
  150. revoke_table_cache = kmem_cache_create("revoke_table",
  151.    sizeof(struct jbd_revoke_table_s),
  152.    0, 0, NULL, NULL);
  153. if (revoke_table_cache == 0) {
  154. kmem_cache_destroy(revoke_record_cache);
  155. revoke_record_cache = NULL;
  156. return -ENOMEM;
  157. }
  158. return 0;
  159. }
  160. void journal_destroy_revoke_caches(void)
  161. {
  162. kmem_cache_destroy(revoke_record_cache);
  163. revoke_record_cache = 0;
  164. kmem_cache_destroy(revoke_table_cache);
  165. revoke_table_cache = 0;
  166. }
  167. /* Initialise the revoke table for a given journal to a given size. */
  168. int journal_init_revoke(journal_t *journal, int hash_size)
  169. {
  170. int shift, tmp;
  171. J_ASSERT (journal->j_revoke == NULL);
  172. journal->j_revoke = kmem_cache_alloc(revoke_table_cache, GFP_KERNEL);
  173. if (!journal->j_revoke)
  174. return -ENOMEM;
  175. /* Check that the hash_size is a power of two */
  176. J_ASSERT ((hash_size & (hash_size-1)) == 0);
  177. journal->j_revoke->hash_size = hash_size;
  178. shift = 0;
  179. tmp = hash_size;
  180. while((tmp >>= 1UL) != 0UL)
  181. shift++;
  182. journal->j_revoke->hash_shift = shift;
  183. journal->j_revoke->hash_table =
  184. kmalloc(hash_size * sizeof(struct list_head), GFP_KERNEL);
  185. if (!journal->j_revoke->hash_table) {
  186. kmem_cache_free(revoke_table_cache, journal->j_revoke);
  187. journal->j_revoke = NULL;
  188. return -ENOMEM;
  189. }
  190. for (tmp = 0; tmp < hash_size; tmp++)
  191. INIT_LIST_HEAD(&journal->j_revoke->hash_table[tmp]);
  192. return 0;
  193. }
  194. /* Destoy a journal's revoke table.  The table must already be empty! */
  195. void journal_destroy_revoke(journal_t *journal)
  196. {
  197. struct jbd_revoke_table_s *table;
  198. struct list_head *hash_list;
  199. int i;
  200. table = journal->j_revoke;
  201. if (!table)
  202. return;
  203. for (i=0; i<table->hash_size; i++) {
  204. hash_list = &table->hash_table[i];
  205. J_ASSERT (list_empty(hash_list));
  206. }
  207. kfree(table->hash_table);
  208. kmem_cache_free(revoke_table_cache, table);
  209. journal->j_revoke = NULL;
  210. }
  211. #ifdef __KERNEL__
  212. /* 
  213.  * journal_revoke: revoke a given buffer_head from the journal.  This
  214.  * prevents the block from being replayed during recovery if we take a
  215.  * crash after this current transaction commits.  Any subsequent
  216.  * metadata writes of the buffer in this transaction cancel the
  217.  * revoke.  
  218.  *
  219.  * Note that this call may block --- it is up to the caller to make
  220.  * sure that there are no further calls to journal_write_metadata
  221.  * before the revoke is complete.  In ext3, this implies calling the
  222.  * revoke before clearing the block bitmap when we are deleting
  223.  * metadata. 
  224.  *
  225.  * Revoke performs a journal_forget on any buffer_head passed in as a
  226.  * parameter, but does _not_ forget the buffer_head if the bh was only
  227.  * found implicitly. 
  228.  *
  229.  * bh_in may not be a journalled buffer - it may have come off
  230.  * the hash tables without an attached journal_head.
  231.  *
  232.  * If bh_in is non-zero, journal_revoke() will decrement its b_count
  233.  * by one.
  234.  */
  235. int journal_revoke(handle_t *handle, unsigned long blocknr, 
  236.    struct buffer_head *bh_in)
  237. {
  238. struct buffer_head *bh = NULL;
  239. journal_t *journal;
  240. kdev_t dev;
  241. int err;
  242. if (bh_in)
  243. BUFFER_TRACE(bh_in, "enter");
  244. journal = handle->h_transaction->t_journal;
  245. if (!journal_set_features(journal, 0, 0, JFS_FEATURE_INCOMPAT_REVOKE)){
  246. J_ASSERT (!"Cannot set revoke feature!");
  247. return -EINVAL;
  248. }
  249. dev = journal->j_fs_dev;
  250. bh = bh_in;
  251. if (!bh) {
  252. bh = get_hash_table(dev, blocknr, journal->j_blocksize);
  253. if (bh)
  254. BUFFER_TRACE(bh, "found on hash");
  255. }
  256. #ifdef JBD_EXPENSIVE_CHECKING
  257. else {
  258. struct buffer_head *bh2;
  259. /* If there is a different buffer_head lying around in
  260.  * memory anywhere... */
  261. bh2 = get_hash_table(dev, blocknr, journal->j_blocksize);
  262. if (bh2) {
  263. /* ... and it has RevokeValid status... */
  264. if ((bh2 != bh) &&
  265.     test_bit(BH_RevokeValid, &bh2->b_state))
  266. /* ...then it better be revoked too,
  267.  * since it's illegal to create a revoke
  268.  * record against a buffer_head which is
  269.  * not marked revoked --- that would
  270.  * risk missing a subsequent revoke
  271.  * cancel. */
  272. J_ASSERT_BH(bh2, test_bit(BH_Revoked, &
  273.   bh2->b_state));
  274. __brelse(bh2);
  275. }
  276. }
  277. #endif
  278. /* We really ought not ever to revoke twice in a row without
  279.            first having the revoke cancelled: it's illegal to free a
  280.            block twice without allocating it in between! */
  281. if (bh) {
  282. J_ASSERT_BH(bh, !test_bit(BH_Revoked, &bh->b_state));
  283. set_bit(BH_Revoked, &bh->b_state);
  284. set_bit(BH_RevokeValid, &bh->b_state);
  285. if (bh_in) {
  286. BUFFER_TRACE(bh_in, "call journal_forget");
  287. journal_forget(handle, bh_in);
  288. } else {
  289. BUFFER_TRACE(bh, "call brelse");
  290. __brelse(bh);
  291. }
  292. }
  293. lock_journal(journal);
  294. jbd_debug(2, "insert revoke for block %lu, bh_in=%pn", blocknr, bh_in);
  295. err = insert_revoke_hash(journal, blocknr,
  296. handle->h_transaction->t_tid);
  297. unlock_journal(journal);
  298. BUFFER_TRACE(bh_in, "exit");
  299. return err;
  300. }
  301. /*
  302.  * Cancel an outstanding revoke.  For use only internally by the
  303.  * journaling code (called from journal_get_write_access).
  304.  *
  305.  * We trust the BH_Revoked bit on the buffer if the buffer is already
  306.  * being journaled: if there is no revoke pending on the buffer, then we
  307.  * don't do anything here.
  308.  *
  309.  * This would break if it were possible for a buffer to be revoked and
  310.  * discarded, and then reallocated within the same transaction.  In such
  311.  * a case we would have lost the revoked bit, but when we arrived here
  312.  * the second time we would still have a pending revoke to cancel.  So,
  313.  * do not trust the Revoked bit on buffers unless RevokeValid is also
  314.  * set.
  315.  *
  316.  * The caller must have the journal locked.
  317.  */
  318. int journal_cancel_revoke(handle_t *handle, struct journal_head *jh)
  319. {
  320. struct jbd_revoke_record_s *record;
  321. journal_t *journal = handle->h_transaction->t_journal;
  322. int need_cancel;
  323. int did_revoke = 0; /* akpm: debug */
  324. struct buffer_head *bh = jh2bh(jh);
  325. jbd_debug(4, "journal_head %p, cancelling revoken", jh);
  326. /* Is the existing Revoke bit valid?  If so, we trust it, and
  327.  * only perform the full cancel if the revoke bit is set.  If
  328.  * not, we can't trust the revoke bit, and we need to do the
  329.  * full search for a revoke record. */
  330. if (test_and_set_bit(BH_RevokeValid, &bh->b_state))
  331. need_cancel = (test_and_clear_bit(BH_Revoked, &bh->b_state));
  332. else {
  333. need_cancel = 1;
  334. clear_bit(BH_Revoked, &bh->b_state);
  335. }
  336. if (need_cancel) {
  337. record = find_revoke_record(journal, bh->b_blocknr);
  338. if (record) {
  339. jbd_debug(4, "cancelled existing revoke on "
  340.   "blocknr %lun", bh->b_blocknr);
  341. list_del(&record->hash);
  342. kmem_cache_free(revoke_record_cache, record);
  343. did_revoke = 1;
  344. }
  345. }
  346. #ifdef JBD_EXPENSIVE_CHECKING
  347. /* There better not be one left behind by now! */
  348. record = find_revoke_record(journal, bh->b_blocknr);
  349. J_ASSERT_JH(jh, record == NULL);
  350. #endif
  351. /* Finally, have we just cleared revoke on an unhashed
  352.  * buffer_head?  If so, we'd better make sure we clear the
  353.  * revoked status on any hashed alias too, otherwise the revoke
  354.  * state machine will get very upset later on. */
  355. if (need_cancel && !bh->b_pprev) {
  356. struct buffer_head *bh2;
  357. bh2 = get_hash_table(bh->b_dev, bh->b_blocknr, bh->b_size);
  358. if (bh2) {
  359. clear_bit(BH_Revoked, &bh2->b_state);
  360. __brelse(bh2);
  361. }
  362. }
  363. return did_revoke;
  364. }
  365. /*
  366.  * Write revoke records to the journal for all entries in the current
  367.  * revoke hash, deleting the entries as we go.
  368.  *
  369.  * Called with the journal lock held.
  370.  */
  371. void journal_write_revoke_records(journal_t *journal, 
  372.   transaction_t *transaction)
  373. {
  374. struct journal_head *descriptor;
  375. struct jbd_revoke_record_s *record;
  376. struct jbd_revoke_table_s *revoke;
  377. struct list_head *hash_list;
  378. int i, offset, count;
  379. descriptor = NULL; 
  380. offset = 0;
  381. count = 0;
  382. revoke = journal->j_revoke;
  383. for (i = 0; i < revoke->hash_size; i++) {
  384. hash_list = &revoke->hash_table[i];
  385. while (!list_empty(hash_list)) {
  386. record = (struct jbd_revoke_record_s *) 
  387. hash_list->next;
  388. write_one_revoke_record(journal, transaction,
  389. &descriptor, &offset, 
  390. record);
  391. count++;
  392. list_del(&record->hash);
  393. kmem_cache_free(revoke_record_cache, record);
  394. }
  395. }
  396. if (descriptor) 
  397. flush_descriptor(journal, descriptor, offset);
  398. jbd_debug(1, "Wrote %d revoke recordsn", count);
  399. }
  400. /* 
  401.  * Write out one revoke record.  We need to create a new descriptor
  402.  * block if the old one is full or if we have not already created one.  
  403.  */
  404. static void write_one_revoke_record(journal_t *journal, 
  405.     transaction_t *transaction,
  406.     struct journal_head **descriptorp, 
  407.     int *offsetp,
  408.     struct jbd_revoke_record_s *record)
  409. {
  410. struct journal_head *descriptor;
  411. int offset;
  412. journal_header_t *header;
  413. /* If we are already aborting, this all becomes a noop.  We
  414.            still need to go round the loop in
  415.            journal_write_revoke_records in order to free all of the
  416.            revoke records: only the IO to the journal is omitted. */
  417. if (is_journal_aborted(journal))
  418. return;
  419. descriptor = *descriptorp;
  420. offset = *offsetp;
  421. /* Make sure we have a descriptor with space left for the record */
  422. if (descriptor) {
  423. if (offset == journal->j_blocksize) {
  424. flush_descriptor(journal, descriptor, offset);
  425. descriptor = NULL;
  426. }
  427. }
  428. if (!descriptor) {
  429. descriptor = journal_get_descriptor_buffer(journal);
  430. if (!descriptor)
  431. return;
  432. header = (journal_header_t *) &jh2bh(descriptor)->b_data[0];
  433. header->h_magic     = htonl(JFS_MAGIC_NUMBER);
  434. header->h_blocktype = htonl(JFS_REVOKE_BLOCK);
  435. header->h_sequence  = htonl(transaction->t_tid);
  436. /* Record it so that we can wait for IO completion later */
  437. JBUFFER_TRACE(descriptor, "file as BJ_LogCtl");
  438. journal_file_buffer(descriptor, transaction, BJ_LogCtl);
  439. offset = sizeof(journal_revoke_header_t);
  440. *descriptorp = descriptor;
  441. }
  442. * ((unsigned int *)(&jh2bh(descriptor)->b_data[offset])) = 
  443. htonl(record->blocknr);
  444. offset += 4;
  445. *offsetp = offset;
  446. }
  447. /* 
  448.  * Flush a revoke descriptor out to the journal.  If we are aborting,
  449.  * this is a noop; otherwise we are generating a buffer which needs to
  450.  * be waited for during commit, so it has to go onto the appropriate
  451.  * journal buffer list.
  452.  */
  453. static void flush_descriptor(journal_t *journal, 
  454.      struct journal_head *descriptor, 
  455.      int offset)
  456. {
  457. journal_revoke_header_t *header;
  458. if (is_journal_aborted(journal)) {
  459. JBUFFER_TRACE(descriptor, "brelse");
  460. unlock_buffer(jh2bh(descriptor));
  461. __brelse(jh2bh(descriptor));
  462. return;
  463. }
  464. header = (journal_revoke_header_t *) jh2bh(descriptor)->b_data;
  465. header->r_count = htonl(offset);
  466. set_bit(BH_JWrite, &jh2bh(descriptor)->b_state);
  467. {
  468. struct buffer_head *bh = jh2bh(descriptor);
  469. BUFFER_TRACE(bh, "write");
  470. clear_bit(BH_Dirty, &bh->b_state);
  471. bh->b_end_io = journal_end_buffer_io_sync;
  472. submit_bh(WRITE, bh);
  473. }
  474. }
  475. #endif
  476. /* 
  477.  * Revoke support for recovery.
  478.  *
  479.  * Recovery needs to be able to:
  480.  *
  481.  *  record all revoke records, including the tid of the latest instance
  482.  *  of each revoke in the journal
  483.  *
  484.  *  check whether a given block in a given transaction should be replayed
  485.  *  (ie. has not been revoked by a revoke record in that or a subsequent
  486.  *  transaction)
  487.  * 
  488.  *  empty the revoke table after recovery.
  489.  */
  490. /*
  491.  * First, setting revoke records.  We create a new revoke record for
  492.  * every block ever revoked in the log as we scan it for recovery, and
  493.  * we update the existing records if we find multiple revokes for a
  494.  * single block. 
  495.  */
  496. int journal_set_revoke(journal_t *journal, 
  497.        unsigned long blocknr, 
  498.        tid_t sequence)
  499. {
  500. struct jbd_revoke_record_s *record;
  501. record = find_revoke_record(journal, blocknr);
  502. if (record) {
  503. /* If we have multiple occurences, only record the
  504.  * latest sequence number in the hashed record */
  505. if (tid_gt(sequence, record->sequence))
  506. record->sequence = sequence;
  507. return 0;
  508. return insert_revoke_hash(journal, blocknr, sequence);
  509. }
  510. /* 
  511.  * Test revoke records.  For a given block referenced in the log, has
  512.  * that block been revoked?  A revoke record with a given transaction
  513.  * sequence number revokes all blocks in that transaction and earlier
  514.  * ones, but later transactions still need replayed.
  515.  */
  516. int journal_test_revoke(journal_t *journal, 
  517. unsigned long blocknr,
  518. tid_t sequence)
  519. {
  520. struct jbd_revoke_record_s *record;
  521. record = find_revoke_record(journal, blocknr);
  522. if (!record)
  523. return 0;
  524. if (tid_gt(sequence, record->sequence))
  525. return 0;
  526. return 1;
  527. }
  528. /*
  529.  * Finally, once recovery is over, we need to clear the revoke table so
  530.  * that it can be reused by the running filesystem.
  531.  */
  532. void journal_clear_revoke(journal_t *journal)
  533. {
  534. int i;
  535. struct list_head *hash_list;
  536. struct jbd_revoke_record_s *record;
  537. struct jbd_revoke_table_s *revoke;
  538. revoke = journal->j_revoke;
  539. for (i = 0; i < revoke->hash_size; i++) {
  540. hash_list = &revoke->hash_table[i];
  541. while (!list_empty(hash_list)) {
  542. record = (struct jbd_revoke_record_s*) hash_list->next;
  543. list_del(&record->hash);
  544. kmem_cache_free(revoke_record_cache, record);
  545. }
  546. }
  547. }