drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / jbd2 / journal.c
CommitLineData
470decc6 1/*
f7f4bccb 2 * linux/fs/jbd2/journal.c
470decc6
DK
3 *
4 * Written by Stephen C. Tweedie <sct@redhat.com>, 1998
5 *
6 * Copyright 1998 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 * Generic filesystem journal-writing code; part of the ext2fs
13 * journaling system.
14 *
15 * This file manages journals: areas of disk reserved for logging
16 * transactional updates. This includes the kernel journaling thread
17 * which is responsible for scheduling updates to the log.
18 *
19 * We do not actually manage the physical storage of the journal in this
20 * file: that is left to a per-journal policy function, which allows us
21 * to store the journal within a filesystem-specified area for ext2
22 * journaling (ext2 can use a reserved inode for storing the log).
23 */
24
25#include <linux/module.h>
26#include <linux/time.h>
27#include <linux/fs.h>
f7f4bccb 28#include <linux/jbd2.h>
470decc6
DK
29#include <linux/errno.h>
30#include <linux/slab.h>
470decc6
DK
31#include <linux/init.h>
32#include <linux/mm.h>
7dfb7103 33#include <linux/freezer.h>
470decc6
DK
34#include <linux/pagemap.h>
35#include <linux/kthread.h>
36#include <linux/poison.h>
37#include <linux/proc_fs.h>
8e85fb3f 38#include <linux/seq_file.h>
c225aa57 39#include <linux/math64.h>
879c5e6b 40#include <linux/hash.h>
d2eecb03
TT
41#include <linux/log2.h>
42#include <linux/vmalloc.h>
47def826 43#include <linux/backing-dev.h>
39e3ac25 44#include <linux/bitops.h>
670be5a7 45#include <linux/ratelimit.h>
879c5e6b
TT
46
47#define CREATE_TRACE_POINTS
48#include <trace/events/jbd2.h>
470decc6
DK
49
50#include <asm/uaccess.h>
51#include <asm/page.h>
52
b6e96d00
TT
53#ifdef CONFIG_JBD2_DEBUG
54ushort jbd2_journal_enable_debug __read_mostly;
55EXPORT_SYMBOL(jbd2_journal_enable_debug);
56
57module_param_named(jbd2_debug, jbd2_journal_enable_debug, ushort, 0644);
58MODULE_PARM_DESC(jbd2_debug, "Debugging level for jbd2");
59#endif
60
f7f4bccb
MC
61EXPORT_SYMBOL(jbd2_journal_extend);
62EXPORT_SYMBOL(jbd2_journal_stop);
63EXPORT_SYMBOL(jbd2_journal_lock_updates);
64EXPORT_SYMBOL(jbd2_journal_unlock_updates);
65EXPORT_SYMBOL(jbd2_journal_get_write_access);
66EXPORT_SYMBOL(jbd2_journal_get_create_access);
67EXPORT_SYMBOL(jbd2_journal_get_undo_access);
e06c8227 68EXPORT_SYMBOL(jbd2_journal_set_triggers);
f7f4bccb 69EXPORT_SYMBOL(jbd2_journal_dirty_metadata);
f7f4bccb 70EXPORT_SYMBOL(jbd2_journal_forget);
470decc6
DK
71#if 0
72EXPORT_SYMBOL(journal_sync_buffer);
73#endif
f7f4bccb
MC
74EXPORT_SYMBOL(jbd2_journal_flush);
75EXPORT_SYMBOL(jbd2_journal_revoke);
76
77EXPORT_SYMBOL(jbd2_journal_init_dev);
78EXPORT_SYMBOL(jbd2_journal_init_inode);
f7f4bccb
MC
79EXPORT_SYMBOL(jbd2_journal_check_used_features);
80EXPORT_SYMBOL(jbd2_journal_check_available_features);
81EXPORT_SYMBOL(jbd2_journal_set_features);
f7f4bccb
MC
82EXPORT_SYMBOL(jbd2_journal_load);
83EXPORT_SYMBOL(jbd2_journal_destroy);
f7f4bccb
MC
84EXPORT_SYMBOL(jbd2_journal_abort);
85EXPORT_SYMBOL(jbd2_journal_errno);
86EXPORT_SYMBOL(jbd2_journal_ack_err);
87EXPORT_SYMBOL(jbd2_journal_clear_err);
88EXPORT_SYMBOL(jbd2_log_wait_commit);
3b799d15 89EXPORT_SYMBOL(jbd2_log_start_commit);
f7f4bccb
MC
90EXPORT_SYMBOL(jbd2_journal_start_commit);
91EXPORT_SYMBOL(jbd2_journal_force_commit_nested);
92EXPORT_SYMBOL(jbd2_journal_wipe);
93EXPORT_SYMBOL(jbd2_journal_blocks_per_page);
94EXPORT_SYMBOL(jbd2_journal_invalidatepage);
95EXPORT_SYMBOL(jbd2_journal_try_to_free_buffers);
96EXPORT_SYMBOL(jbd2_journal_force_commit);
c851ed54
JK
97EXPORT_SYMBOL(jbd2_journal_file_inode);
98EXPORT_SYMBOL(jbd2_journal_init_jbd_inode);
99EXPORT_SYMBOL(jbd2_journal_release_jbd_inode);
100EXPORT_SYMBOL(jbd2_journal_begin_ordered_truncate);
8aefcd55 101EXPORT_SYMBOL(jbd2_inode_cache);
470decc6 102
470decc6 103static void __journal_abort_soft (journal_t *journal, int errno);
d2eecb03 104static int jbd2_journal_create_slab(size_t slab_size);
470decc6 105
25ed6e8a
DW
106/* Checksumming functions */
107int jbd2_verify_csum_type(journal_t *j, journal_superblock_t *sb)
108{
109 if (!JBD2_HAS_INCOMPAT_FEATURE(j, JBD2_FEATURE_INCOMPAT_CSUM_V2))
110 return 1;
111
112 return sb->s_checksum_type == JBD2_CRC32C_CHKSUM;
113}
114
4fd5ea43
DW
115static __u32 jbd2_superblock_csum(journal_t *j, journal_superblock_t *sb)
116{
117 __u32 csum, old_csum;
118
119 old_csum = sb->s_checksum;
120 sb->s_checksum = 0;
121 csum = jbd2_chksum(j, ~0, (char *)sb, sizeof(journal_superblock_t));
122 sb->s_checksum = old_csum;
123
124 return cpu_to_be32(csum);
125}
126
127int jbd2_superblock_csum_verify(journal_t *j, journal_superblock_t *sb)
128{
129 if (!JBD2_HAS_INCOMPAT_FEATURE(j, JBD2_FEATURE_INCOMPAT_CSUM_V2))
130 return 1;
131
132 return sb->s_checksum == jbd2_superblock_csum(j, sb);
133}
134
135void jbd2_superblock_csum_set(journal_t *j, journal_superblock_t *sb)
136{
137 if (!JBD2_HAS_INCOMPAT_FEATURE(j, JBD2_FEATURE_INCOMPAT_CSUM_V2))
138 return;
139
140 sb->s_checksum = jbd2_superblock_csum(j, sb);
141}
142
470decc6
DK
143/*
144 * Helper function used to manage commit timeouts
145 */
146
147static void commit_timeout(unsigned long __data)
148{
149 struct task_struct * p = (struct task_struct *) __data;
150
151 wake_up_process(p);
152}
153
154/*
f7f4bccb 155 * kjournald2: The main thread function used to manage a logging device
470decc6
DK
156 * journal.
157 *
158 * This kernel thread is responsible for two things:
159 *
160 * 1) COMMIT: Every so often we need to commit the current state of the
161 * filesystem to disk. The journal thread is responsible for writing
162 * all of the metadata buffers to disk.
163 *
164 * 2) CHECKPOINT: We cannot reuse a used section of the log file until all
165 * of the data in that part of the log has been rewritten elsewhere on
166 * the disk. Flushing these old buffers to reclaim space in the log is
167 * known as checkpointing, and this thread is responsible for that job.
168 */
169
f7f4bccb 170static int kjournald2(void *arg)
470decc6
DK
171{
172 journal_t *journal = arg;
173 transaction_t *transaction;
174
175 /*
176 * Set up an interval timer which can be used to trigger a commit wakeup
177 * after the commit interval expires
178 */
179 setup_timer(&journal->j_commit_timer, commit_timeout,
180 (unsigned long)current);
181
35c80422
NC
182 set_freezable();
183
470decc6
DK
184 /* Record that the journal thread is running */
185 journal->j_task = current;
186 wake_up(&journal->j_wait_done_commit);
187
470decc6
DK
188 /*
189 * And now, wait forever for commit wakeup events.
190 */
a931da6a 191 write_lock(&journal->j_state_lock);
470decc6
DK
192
193loop:
f7f4bccb 194 if (journal->j_flags & JBD2_UNMOUNT)
470decc6
DK
195 goto end_loop;
196
197 jbd_debug(1, "commit_sequence=%d, commit_request=%d\n",
198 journal->j_commit_sequence, journal->j_commit_request);
199
200 if (journal->j_commit_sequence != journal->j_commit_request) {
201 jbd_debug(1, "OK, requests differ\n");
a931da6a 202 write_unlock(&journal->j_state_lock);
470decc6 203 del_timer_sync(&journal->j_commit_timer);
f7f4bccb 204 jbd2_journal_commit_transaction(journal);
a931da6a 205 write_lock(&journal->j_state_lock);
470decc6
DK
206 goto loop;
207 }
208
209 wake_up(&journal->j_wait_done_commit);
210 if (freezing(current)) {
211 /*
212 * The simpler the better. Flushing journal isn't a
213 * good idea, because that depends on threads that may
214 * be already stopped.
215 */
f7f4bccb 216 jbd_debug(1, "Now suspending kjournald2\n");
a931da6a 217 write_unlock(&journal->j_state_lock);
a0acae0e 218 try_to_freeze();
a931da6a 219 write_lock(&journal->j_state_lock);
470decc6
DK
220 } else {
221 /*
222 * We assume on resume that commits are already there,
223 * so we don't sleep
224 */
225 DEFINE_WAIT(wait);
226 int should_sleep = 1;
227
228 prepare_to_wait(&journal->j_wait_commit, &wait,
229 TASK_INTERRUPTIBLE);
230 if (journal->j_commit_sequence != journal->j_commit_request)
231 should_sleep = 0;
232 transaction = journal->j_running_transaction;
233 if (transaction && time_after_eq(jiffies,
234 transaction->t_expires))
235 should_sleep = 0;
f7f4bccb 236 if (journal->j_flags & JBD2_UNMOUNT)
470decc6
DK
237 should_sleep = 0;
238 if (should_sleep) {
a931da6a 239 write_unlock(&journal->j_state_lock);
470decc6 240 schedule();
a931da6a 241 write_lock(&journal->j_state_lock);
470decc6
DK
242 }
243 finish_wait(&journal->j_wait_commit, &wait);
244 }
245
f7f4bccb 246 jbd_debug(1, "kjournald2 wakes\n");
470decc6
DK
247
248 /*
249 * Were we woken up by a commit wakeup event?
250 */
251 transaction = journal->j_running_transaction;
252 if (transaction && time_after_eq(jiffies, transaction->t_expires)) {
253 journal->j_commit_request = transaction->t_tid;
254 jbd_debug(1, "woke because of timeout\n");
255 }
256 goto loop;
257
258end_loop:
a931da6a 259 write_unlock(&journal->j_state_lock);
470decc6
DK
260 del_timer_sync(&journal->j_commit_timer);
261 journal->j_task = NULL;
262 wake_up(&journal->j_wait_done_commit);
263 jbd_debug(1, "Journal thread exiting.\n");
264 return 0;
265}
266
97f06784 267static int jbd2_journal_start_thread(journal_t *journal)
470decc6 268{
97f06784
PE
269 struct task_struct *t;
270
90576c0b
TT
271 t = kthread_run(kjournald2, journal, "jbd2/%s",
272 journal->j_devname);
97f06784
PE
273 if (IS_ERR(t))
274 return PTR_ERR(t);
275
1076d17a 276 wait_event(journal->j_wait_done_commit, journal->j_task != NULL);
97f06784 277 return 0;
470decc6
DK
278}
279
280static void journal_kill_thread(journal_t *journal)
281{
a931da6a 282 write_lock(&journal->j_state_lock);
f7f4bccb 283 journal->j_flags |= JBD2_UNMOUNT;
470decc6
DK
284
285 while (journal->j_task) {
286 wake_up(&journal->j_wait_commit);
a931da6a 287 write_unlock(&journal->j_state_lock);
1076d17a 288 wait_event(journal->j_wait_done_commit, journal->j_task == NULL);
a931da6a 289 write_lock(&journal->j_state_lock);
470decc6 290 }
a931da6a 291 write_unlock(&journal->j_state_lock);
470decc6
DK
292}
293
294/*
f7f4bccb 295 * jbd2_journal_write_metadata_buffer: write a metadata buffer to the journal.
470decc6
DK
296 *
297 * Writes a metadata buffer to a given disk block. The actual IO is not
298 * performed but a new buffer_head is constructed which labels the data
299 * to be written with the correct destination disk block.
300 *
301 * Any magic-number escaping which needs to be done will cause a
302 * copy-out here. If the buffer happens to start with the
f7f4bccb 303 * JBD2_MAGIC_NUMBER, then we can't write it to the log directly: the
470decc6
DK
304 * magic number is only written to the log for descripter blocks. In
305 * this case, we copy the data and replace the first word with 0, and we
306 * return a result code which indicates that this buffer needs to be
307 * marked as an escaped buffer in the corresponding log descriptor
308 * block. The missing word can then be restored when the block is read
309 * during recovery.
310 *
311 * If the source buffer has already been modified by a new transaction
312 * since we took the last commit snapshot, we use the frozen copy of
313 * that data for IO. If we end up using the existing buffer_head's data
314 * for the write, then we *have* to lock the buffer to prevent anyone
315 * else from using and possibly modifying it while the IO is in
316 * progress.
317 *
318 * The function returns a pointer to the buffer_heads to be used for IO.
319 *
320 * We assume that the journal has already been locked in this function.
321 *
322 * Return value:
323 * <0: Error
324 * >=0: Finished OK
325 *
326 * On success:
327 * Bit 0 set == escape performed on the data
328 * Bit 1 set == buffer copy-out performed (kfree the data after IO)
329 */
330
f7f4bccb 331int jbd2_journal_write_metadata_buffer(transaction_t *transaction,
470decc6
DK
332 struct journal_head *jh_in,
333 struct journal_head **jh_out,
18eba7aa 334 unsigned long long blocknr)
470decc6
DK
335{
336 int need_copy_out = 0;
337 int done_copy_out = 0;
338 int do_escape = 0;
339 char *mapped_data;
340 struct buffer_head *new_bh;
341 struct journal_head *new_jh;
342 struct page *new_page;
343 unsigned int new_offset;
344 struct buffer_head *bh_in = jh2bh(jh_in);
96577c43 345 journal_t *journal = transaction->t_journal;
470decc6
DK
346
347 /*
348 * The buffer really shouldn't be locked: only the current committing
349 * transaction is allowed to write it, so nobody else is allowed
350 * to do any IO.
351 *
352 * akpm: except if we're journalling data, and write() output is
353 * also part of a shared mapping, and another thread has
354 * decided to launch a writepage() against this buffer.
355 */
356 J_ASSERT_BH(bh_in, buffer_jbddirty(bh_in));
357
47def826
TT
358retry_alloc:
359 new_bh = alloc_buffer_head(GFP_NOFS);
360 if (!new_bh) {
361 /*
362 * Failure is not an option, but __GFP_NOFAIL is going
363 * away; so we retry ourselves here.
364 */
365 congestion_wait(BLK_RW_ASYNC, HZ/50);
366 goto retry_alloc;
367 }
368
96577c43 369 /* keep subsequent assertions sane */
96577c43 370 atomic_set(&new_bh->b_count, 1);
371 new_jh = jbd2_journal_add_journal_head(new_bh); /* This sleeps */
470decc6
DK
372
373 /*
374 * If a new transaction has already done a buffer copy-out, then
375 * we use that version of the data for the commit.
376 */
377 jbd_lock_bh_state(bh_in);
378repeat:
379 if (jh_in->b_frozen_data) {
380 done_copy_out = 1;
381 new_page = virt_to_page(jh_in->b_frozen_data);
382 new_offset = offset_in_page(jh_in->b_frozen_data);
383 } else {
384 new_page = jh2bh(jh_in)->b_page;
385 new_offset = offset_in_page(jh2bh(jh_in)->b_data);
386 }
387
303a8f2a 388 mapped_data = kmap_atomic(new_page);
e06c8227 389 /*
13ceef09
JK
390 * Fire data frozen trigger if data already wasn't frozen. Do this
391 * before checking for escaping, as the trigger may modify the magic
392 * offset. If a copy-out happens afterwards, it will have the correct
393 * data in the buffer.
e06c8227 394 */
13ceef09
JK
395 if (!done_copy_out)
396 jbd2_buffer_frozen_trigger(jh_in, mapped_data + new_offset,
397 jh_in->b_triggers);
e06c8227 398
470decc6
DK
399 /*
400 * Check for escaping
401 */
402 if (*((__be32 *)(mapped_data + new_offset)) ==
f7f4bccb 403 cpu_to_be32(JBD2_MAGIC_NUMBER)) {
470decc6
DK
404 need_copy_out = 1;
405 do_escape = 1;
406 }
303a8f2a 407 kunmap_atomic(mapped_data);
470decc6
DK
408
409 /*
410 * Do we need to do a data copy?
411 */
412 if (need_copy_out && !done_copy_out) {
413 char *tmp;
414
415 jbd_unlock_bh_state(bh_in);
af1e76d6 416 tmp = jbd2_alloc(bh_in->b_size, GFP_NOFS);
e6ec116b
TT
417 if (!tmp) {
418 jbd2_journal_put_journal_head(new_jh);
419 return -ENOMEM;
420 }
470decc6
DK
421 jbd_lock_bh_state(bh_in);
422 if (jh_in->b_frozen_data) {
af1e76d6 423 jbd2_free(tmp, bh_in->b_size);
470decc6
DK
424 goto repeat;
425 }
426
427 jh_in->b_frozen_data = tmp;
303a8f2a 428 mapped_data = kmap_atomic(new_page);
470decc6 429 memcpy(tmp, mapped_data + new_offset, jh2bh(jh_in)->b_size);
303a8f2a 430 kunmap_atomic(mapped_data);
470decc6
DK
431
432 new_page = virt_to_page(tmp);
433 new_offset = offset_in_page(tmp);
434 done_copy_out = 1;
e06c8227
JB
435
436 /*
437 * This isn't strictly necessary, as we're using frozen
438 * data for the escaping, but it keeps consistency with
439 * b_frozen_data usage.
440 */
441 jh_in->b_frozen_triggers = jh_in->b_triggers;
470decc6
DK
442 }
443
444 /*
445 * Did we need to do an escaping? Now we've done all the
446 * copying, we can finally do so.
447 */
448 if (do_escape) {
303a8f2a 449 mapped_data = kmap_atomic(new_page);
470decc6 450 *((unsigned int *)(mapped_data + new_offset)) = 0;
303a8f2a 451 kunmap_atomic(mapped_data);
470decc6
DK
452 }
453
470decc6
DK
454 set_bh_page(new_bh, new_page, new_offset);
455 new_jh->b_transaction = NULL;
456 new_bh->b_size = jh2bh(jh_in)->b_size;
457 new_bh->b_bdev = transaction->t_journal->j_dev;
458 new_bh->b_blocknr = blocknr;
459 set_buffer_mapped(new_bh);
460 set_buffer_dirty(new_bh);
461
462 *jh_out = new_jh;
463
464 /*
465 * The to-be-written buffer needs to get moved to the io queue,
466 * and the original buffer whose contents we are shadowing or
467 * copying is moved to the transaction's shadow queue.
468 */
469 JBUFFER_TRACE(jh_in, "file as BJ_Shadow");
96577c43 470 spin_lock(&journal->j_list_lock);
471 __jbd2_journal_file_buffer(jh_in, transaction, BJ_Shadow);
472 spin_unlock(&journal->j_list_lock);
473 jbd_unlock_bh_state(bh_in);
474
470decc6 475 JBUFFER_TRACE(new_jh, "file as BJ_IO");
f7f4bccb 476 jbd2_journal_file_buffer(new_jh, transaction, BJ_IO);
470decc6
DK
477
478 return do_escape | (done_copy_out << 1);
479}
480
481/*
482 * Allocation code for the journal file. Manage the space left in the
483 * journal, so that we can begin checkpointing when appropriate.
484 */
485
486/*
f7f4bccb 487 * __jbd2_log_space_left: Return the number of free blocks left in the journal.
470decc6
DK
488 *
489 * Called with the journal already locked.
490 *
491 * Called under j_state_lock
492 */
493
f7f4bccb 494int __jbd2_log_space_left(journal_t *journal)
470decc6
DK
495{
496 int left = journal->j_free;
497
a931da6a 498 /* assert_spin_locked(&journal->j_state_lock); */
470decc6
DK
499
500 /*
501 * Be pessimistic here about the number of those free blocks which
502 * might be required for log descriptor control blocks.
503 */
504
505#define MIN_LOG_RESERVED_BLOCKS 32 /* Allow for rounding errors */
506
507 left -= MIN_LOG_RESERVED_BLOCKS;
508
509 if (left <= 0)
510 return 0;
511 left -= (left >> 3);
512 return left;
513}
514
515/*
e4471831
TT
516 * Called with j_state_lock locked for writing.
517 * Returns true if a transaction commit was started.
470decc6 518 */
f7f4bccb 519int __jbd2_log_start_commit(journal_t *journal, tid_t target)
470decc6 520{
e7b04ac0
ES
521 /* Return if the txn has already requested to be committed */
522 if (journal->j_commit_request == target)
523 return 0;
524
470decc6 525 /*
deeeaf13
TT
526 * The only transaction we can possibly wait upon is the
527 * currently running transaction (if it exists). Otherwise,
528 * the target tid must be an old one.
470decc6 529 */
deeeaf13
TT
530 if (journal->j_running_transaction &&
531 journal->j_running_transaction->t_tid == target) {
470decc6 532 /*
bcf3d0bc 533 * We want a new commit: OK, mark the request and wakeup the
470decc6
DK
534 * commit thread. We do _not_ do the commit ourselves.
535 */
536
537 journal->j_commit_request = target;
f2a44523 538 jbd_debug(1, "JBD2: requesting commit %d/%d\n",
470decc6
DK
539 journal->j_commit_request,
540 journal->j_commit_sequence);
9fff24aa 541 journal->j_running_transaction->t_requested = jiffies;
470decc6
DK
542 wake_up(&journal->j_wait_commit);
543 return 1;
deeeaf13
TT
544 } else if (!tid_geq(journal->j_commit_request, target))
545 /* This should never happen, but if it does, preserve
546 the evidence before kjournald goes into a loop and
547 increments j_commit_sequence beyond all recognition. */
f2a44523 548 WARN_ONCE(1, "JBD2: bad log_start_commit: %u %u %u %u\n",
1be2add6
TT
549 journal->j_commit_request,
550 journal->j_commit_sequence,
551 target, journal->j_running_transaction ?
552 journal->j_running_transaction->t_tid : 0);
470decc6
DK
553 return 0;
554}
555
f7f4bccb 556int jbd2_log_start_commit(journal_t *journal, tid_t tid)
470decc6
DK
557{
558 int ret;
559
a931da6a 560 write_lock(&journal->j_state_lock);
f7f4bccb 561 ret = __jbd2_log_start_commit(journal, tid);
a931da6a 562 write_unlock(&journal->j_state_lock);
470decc6
DK
563 return ret;
564}
565
566/*
567 * Force and wait upon a commit if the calling process is not within
568 * transaction. This is used for forcing out undo-protected data which contains
569 * bitmaps, when the fs is running out of space.
570 *
571 * We can only force the running transaction if we don't have an active handle;
572 * otherwise, we will deadlock.
573 *
574 * Returns true if a transaction was started.
575 */
f7f4bccb 576int jbd2_journal_force_commit_nested(journal_t *journal)
470decc6
DK
577{
578 transaction_t *transaction = NULL;
579 tid_t tid;
e4471831 580 int need_to_start = 0;
470decc6 581
a931da6a 582 read_lock(&journal->j_state_lock);
470decc6
DK
583 if (journal->j_running_transaction && !current->journal_info) {
584 transaction = journal->j_running_transaction;
e4471831
TT
585 if (!tid_geq(journal->j_commit_request, transaction->t_tid))
586 need_to_start = 1;
470decc6
DK
587 } else if (journal->j_committing_transaction)
588 transaction = journal->j_committing_transaction;
589
590 if (!transaction) {
a931da6a 591 read_unlock(&journal->j_state_lock);
470decc6
DK
592 return 0; /* Nothing to retry */
593 }
594
595 tid = transaction->t_tid;
a931da6a 596 read_unlock(&journal->j_state_lock);
e4471831
TT
597 if (need_to_start)
598 jbd2_log_start_commit(journal, tid);
f7f4bccb 599 jbd2_log_wait_commit(journal, tid);
470decc6
DK
600 return 1;
601}
602
603/*
604 * Start a commit of the current running transaction (if any). Returns true
c88ccea3
JK
605 * if a transaction is going to be committed (or is currently already
606 * committing), and fills its tid in at *ptid
470decc6 607 */
f7f4bccb 608int jbd2_journal_start_commit(journal_t *journal, tid_t *ptid)
470decc6
DK
609{
610 int ret = 0;
611
a931da6a 612 write_lock(&journal->j_state_lock);
470decc6
DK
613 if (journal->j_running_transaction) {
614 tid_t tid = journal->j_running_transaction->t_tid;
615
c88ccea3
JK
616 __jbd2_log_start_commit(journal, tid);
617 /* There's a running transaction and we've just made sure
618 * it's commit has been scheduled. */
619 if (ptid)
470decc6 620 *ptid = tid;
c88ccea3
JK
621 ret = 1;
622 } else if (journal->j_committing_transaction) {
470decc6 623 /*
12810ad7
AB
624 * If commit has been started, then we have to wait for
625 * completion of that transaction.
470decc6 626 */
c88ccea3
JK
627 if (ptid)
628 *ptid = journal->j_committing_transaction->t_tid;
470decc6
DK
629 ret = 1;
630 }
a931da6a 631 write_unlock(&journal->j_state_lock);
470decc6
DK
632 return ret;
633}
634
bbd2be36
JK
635/*
636 * Return 1 if a given transaction has not yet sent barrier request
637 * connected with a transaction commit. If 0 is returned, transaction
638 * may or may not have sent the barrier. Used to avoid sending barrier
639 * twice in common cases.
640 */
641int jbd2_trans_will_send_data_barrier(journal_t *journal, tid_t tid)
642{
643 int ret = 0;
644 transaction_t *commit_trans;
645
646 if (!(journal->j_flags & JBD2_BARRIER))
647 return 0;
648 read_lock(&journal->j_state_lock);
649 /* Transaction already committed? */
650 if (tid_geq(journal->j_commit_sequence, tid))
651 goto out;
652 commit_trans = journal->j_committing_transaction;
653 if (!commit_trans || commit_trans->t_tid != tid) {
654 ret = 1;
655 goto out;
656 }
657 /*
658 * Transaction is being committed and we already proceeded to
659 * submitting a flush to fs partition?
660 */
661 if (journal->j_fs_dev != journal->j_dev) {
662 if (!commit_trans->t_need_data_flush ||
663 commit_trans->t_state >= T_COMMIT_DFLUSH)
664 goto out;
665 } else {
666 if (commit_trans->t_state >= T_COMMIT_JFLUSH)
667 goto out;
668 }
669 ret = 1;
670out:
671 read_unlock(&journal->j_state_lock);
672 return ret;
673}
674EXPORT_SYMBOL(jbd2_trans_will_send_data_barrier);
675
470decc6
DK
676/*
677 * Wait for a specified commit to complete.
678 * The caller may not hold the journal lock.
679 */
f7f4bccb 680int jbd2_log_wait_commit(journal_t *journal, tid_t tid)
470decc6
DK
681{
682 int err = 0;
683
a931da6a 684 read_lock(&journal->j_state_lock);
e23291b9 685#ifdef CONFIG_JBD2_DEBUG
470decc6
DK
686 if (!tid_geq(journal->j_commit_request, tid)) {
687 printk(KERN_EMERG
688 "%s: error: j_commit_request=%d, tid=%d\n",
329d291f 689 __func__, journal->j_commit_request, tid);
470decc6 690 }
470decc6 691#endif
470decc6 692 while (tid_gt(tid, journal->j_commit_sequence)) {
f2a44523 693 jbd_debug(1, "JBD2: want %d, j_commit_sequence=%d\n",
470decc6
DK
694 tid, journal->j_commit_sequence);
695 wake_up(&journal->j_wait_commit);
a931da6a 696 read_unlock(&journal->j_state_lock);
470decc6
DK
697 wait_event(journal->j_wait_done_commit,
698 !tid_gt(tid, journal->j_commit_sequence));
a931da6a 699 read_lock(&journal->j_state_lock);
470decc6 700 }
a931da6a 701 read_unlock(&journal->j_state_lock);
470decc6
DK
702
703 if (unlikely(is_journal_aborted(journal))) {
704 printk(KERN_EMERG "journal commit I/O error\n");
705 err = -EIO;
706 }
707 return err;
708}
709
d76a3a77
TT
710/*
711 * When this function returns the transaction corresponding to tid
712 * will be completed. If the transaction has currently running, start
713 * committing that transaction before waiting for it to complete. If
714 * the transaction id is stale, it is by definition already completed,
715 * so just return SUCCESS.
716 */
717int jbd2_complete_transaction(journal_t *journal, tid_t tid)
718{
719 int need_to_wait = 1;
720
721 read_lock(&journal->j_state_lock);
722 if (journal->j_running_transaction &&
723 journal->j_running_transaction->t_tid == tid) {
724 if (journal->j_commit_request != tid) {
725 /* transaction not yet started, so request it */
726 read_unlock(&journal->j_state_lock);
727 jbd2_log_start_commit(journal, tid);
728 goto wait_commit;
729 }
730 } else if (!(journal->j_committing_transaction &&
731 journal->j_committing_transaction->t_tid == tid))
732 need_to_wait = 0;
733 read_unlock(&journal->j_state_lock);
734 if (!need_to_wait)
735 return 0;
736wait_commit:
737 return jbd2_log_wait_commit(journal, tid);
738}
739EXPORT_SYMBOL(jbd2_complete_transaction);
740
470decc6
DK
741/*
742 * Log buffer allocation routines:
743 */
744
18eba7aa 745int jbd2_journal_next_log_block(journal_t *journal, unsigned long long *retp)
470decc6
DK
746{
747 unsigned long blocknr;
748
a931da6a 749 write_lock(&journal->j_state_lock);
470decc6
DK
750 J_ASSERT(journal->j_free > 1);
751
752 blocknr = journal->j_head;
753 journal->j_head++;
754 journal->j_free--;
755 if (journal->j_head == journal->j_last)
756 journal->j_head = journal->j_first;
a931da6a 757 write_unlock(&journal->j_state_lock);
f7f4bccb 758 return jbd2_journal_bmap(journal, blocknr, retp);
470decc6
DK
759}
760
761/*
762 * Conversion of logical to physical block numbers for the journal
763 *
764 * On external journals the journal blocks are identity-mapped, so
765 * this is a no-op. If needed, we can use j_blk_offset - everything is
766 * ready.
767 */
f7f4bccb 768int jbd2_journal_bmap(journal_t *journal, unsigned long blocknr,
18eba7aa 769 unsigned long long *retp)
470decc6
DK
770{
771 int err = 0;
18eba7aa 772 unsigned long long ret;
470decc6
DK
773
774 if (journal->j_inode) {
775 ret = bmap(journal->j_inode, blocknr);
776 if (ret)
777 *retp = ret;
778 else {
470decc6
DK
779 printk(KERN_ALERT "%s: journal block not found "
780 "at offset %lu on %s\n",
05496769 781 __func__, blocknr, journal->j_devname);
470decc6
DK
782 err = -EIO;
783 __journal_abort_soft(journal, err);
784 }
785 } else {
786 *retp = blocknr; /* +journal->j_blk_offset */
787 }
788 return err;
789}
790
791/*
792 * We play buffer_head aliasing tricks to write data/metadata blocks to
793 * the journal without copying their contents, but for journal
794 * descriptor blocks we do need to generate bona fide buffers.
795 *
f7f4bccb 796 * After the caller of jbd2_journal_get_descriptor_buffer() has finished modifying
470decc6
DK
797 * the buffer's contents they really should run flush_dcache_page(bh->b_page).
798 * But we don't bother doing that, so there will be coherency problems with
799 * mmaps of blockdevs which hold live JBD-controlled filesystems.
800 */
f7f4bccb 801struct journal_head *jbd2_journal_get_descriptor_buffer(journal_t *journal)
470decc6
DK
802{
803 struct buffer_head *bh;
18eba7aa 804 unsigned long long blocknr;
470decc6
DK
805 int err;
806
f7f4bccb 807 err = jbd2_journal_next_log_block(journal, &blocknr);
470decc6
DK
808
809 if (err)
810 return NULL;
811
812 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
4b905671
JK
813 if (!bh)
814 return NULL;
470decc6
DK
815 lock_buffer(bh);
816 memset(bh->b_data, 0, journal->j_blocksize);
817 set_buffer_uptodate(bh);
818 unlock_buffer(bh);
819 BUFFER_TRACE(bh, "return this buffer");
f7f4bccb 820 return jbd2_journal_add_journal_head(bh);
470decc6
DK
821}
822
79feb521
JK
823/*
824 * Return tid of the oldest transaction in the journal and block in the journal
825 * where the transaction starts.
826 *
827 * If the journal is now empty, return which will be the next transaction ID
828 * we will write and where will that transaction start.
829 *
830 * The return value is 0 if journal tail cannot be pushed any further, 1 if
831 * it can.
832 */
833int jbd2_journal_get_log_tail(journal_t *journal, tid_t *tid,
834 unsigned long *block)
835{
836 transaction_t *transaction;
837 int ret;
838
839 read_lock(&journal->j_state_lock);
840 spin_lock(&journal->j_list_lock);
841 transaction = journal->j_checkpoint_transactions;
842 if (transaction) {
843 *tid = transaction->t_tid;
844 *block = transaction->t_log_start;
845 } else if ((transaction = journal->j_committing_transaction) != NULL) {
846 *tid = transaction->t_tid;
847 *block = transaction->t_log_start;
848 } else if ((transaction = journal->j_running_transaction) != NULL) {
849 *tid = transaction->t_tid;
850 *block = journal->j_head;
851 } else {
852 *tid = journal->j_transaction_sequence;
853 *block = journal->j_head;
854 }
855 ret = tid_gt(*tid, journal->j_tail_sequence);
856 spin_unlock(&journal->j_list_lock);
857 read_unlock(&journal->j_state_lock);
858
859 return ret;
860}
861
862/*
863 * Update information in journal structure and in on disk journal superblock
864 * about log tail. This function does not check whether information passed in
865 * really pushes log tail further. It's responsibility of the caller to make
866 * sure provided log tail information is valid (e.g. by holding
867 * j_checkpoint_mutex all the time between computing log tail and calling this
868 * function as is the case with jbd2_cleanup_journal_tail()).
869 *
870 * Requires j_checkpoint_mutex
871 */
c507ecae 872int __jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block)
79feb521
JK
873{
874 unsigned long freed;
c507ecae 875 int ret;
79feb521
JK
876
877 BUG_ON(!mutex_is_locked(&journal->j_checkpoint_mutex));
878
879 /*
880 * We cannot afford for write to remain in drive's caches since as
881 * soon as we update j_tail, next transaction can start reusing journal
882 * space and if we lose sb update during power failure we'd replay
883 * old transaction with possibly newly overwritten data.
884 */
c507ecae
JQ
885 ret = jbd2_journal_update_sb_log_tail(journal, tid, block, WRITE_FUA);
886 if (ret)
887 goto out;
888
79feb521
JK
889 write_lock(&journal->j_state_lock);
890 freed = block - journal->j_tail;
891 if (block < journal->j_tail)
892 freed += journal->j_last - journal->j_first;
893
894 trace_jbd2_update_log_tail(journal, tid, block, freed);
895 jbd_debug(1,
896 "Cleaning journal tail from %d to %d (offset %lu), "
897 "freeing %lu\n",
898 journal->j_tail_sequence, tid, block, freed);
899
900 journal->j_free += freed;
901 journal->j_tail_sequence = tid;
902 journal->j_tail = block;
903 write_unlock(&journal->j_state_lock);
c507ecae
JQ
904
905out:
906 return ret;
79feb521
JK
907}
908
3339578f
JK
909/*
910 * This is a variaon of __jbd2_update_log_tail which checks for validity of
911 * provided log tail and locks j_checkpoint_mutex. So it is safe against races
912 * with other threads updating log tail.
913 */
914void jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block)
915{
916 mutex_lock(&journal->j_checkpoint_mutex);
917 if (tid_gt(tid, journal->j_tail_sequence))
918 __jbd2_update_log_tail(journal, tid, block);
919 mutex_unlock(&journal->j_checkpoint_mutex);
920}
921
8e85fb3f
JL
922struct jbd2_stats_proc_session {
923 journal_t *journal;
924 struct transaction_stats_s *stats;
925 int start;
926 int max;
927};
928
8e85fb3f
JL
929static void *jbd2_seq_info_start(struct seq_file *seq, loff_t *pos)
930{
931 return *pos ? NULL : SEQ_START_TOKEN;
932}
933
934static void *jbd2_seq_info_next(struct seq_file *seq, void *v, loff_t *pos)
935{
936 return NULL;
937}
938
939static int jbd2_seq_info_show(struct seq_file *seq, void *v)
940{
941 struct jbd2_stats_proc_session *s = seq->private;
942
943 if (v != SEQ_START_TOKEN)
944 return 0;
9fff24aa
TT
945 seq_printf(seq, "%lu transactions (%lu requested), "
946 "each up to %u blocks\n",
947 s->stats->ts_tid, s->stats->ts_requested,
948 s->journal->j_max_transaction_buffers);
8e85fb3f
JL
949 if (s->stats->ts_tid == 0)
950 return 0;
951 seq_printf(seq, "average: \n %ums waiting for transaction\n",
bf699327 952 jiffies_to_msecs(s->stats->run.rs_wait / s->stats->ts_tid));
9fff24aa
TT
953 seq_printf(seq, " %ums request delay\n",
954 (s->stats->ts_requested == 0) ? 0 :
955 jiffies_to_msecs(s->stats->run.rs_request_delay /
956 s->stats->ts_requested));
8e85fb3f 957 seq_printf(seq, " %ums running transaction\n",
bf699327 958 jiffies_to_msecs(s->stats->run.rs_running / s->stats->ts_tid));
8e85fb3f 959 seq_printf(seq, " %ums transaction was being locked\n",
bf699327 960 jiffies_to_msecs(s->stats->run.rs_locked / s->stats->ts_tid));
8e85fb3f 961 seq_printf(seq, " %ums flushing data (in ordered mode)\n",
bf699327 962 jiffies_to_msecs(s->stats->run.rs_flushing / s->stats->ts_tid));
8e85fb3f 963 seq_printf(seq, " %ums logging transaction\n",
bf699327 964 jiffies_to_msecs(s->stats->run.rs_logging / s->stats->ts_tid));
c225aa57
SHT
965 seq_printf(seq, " %lluus average transaction commit time\n",
966 div_u64(s->journal->j_average_commit_time, 1000));
8e85fb3f 967 seq_printf(seq, " %lu handles per transaction\n",
bf699327 968 s->stats->run.rs_handle_count / s->stats->ts_tid);
8e85fb3f 969 seq_printf(seq, " %lu blocks per transaction\n",
bf699327 970 s->stats->run.rs_blocks / s->stats->ts_tid);
8e85fb3f 971 seq_printf(seq, " %lu logged blocks per transaction\n",
bf699327 972 s->stats->run.rs_blocks_logged / s->stats->ts_tid);
8e85fb3f
JL
973 return 0;
974}
975
976static void jbd2_seq_info_stop(struct seq_file *seq, void *v)
977{
978}
979
88e9d34c 980static const struct seq_operations jbd2_seq_info_ops = {
8e85fb3f
JL
981 .start = jbd2_seq_info_start,
982 .next = jbd2_seq_info_next,
983 .stop = jbd2_seq_info_stop,
984 .show = jbd2_seq_info_show,
985};
986
987static int jbd2_seq_info_open(struct inode *inode, struct file *file)
988{
d9dda78b 989 journal_t *journal = PDE_DATA(inode);
8e85fb3f
JL
990 struct jbd2_stats_proc_session *s;
991 int rc, size;
992
993 s = kmalloc(sizeof(*s), GFP_KERNEL);
994 if (s == NULL)
995 return -ENOMEM;
996 size = sizeof(struct transaction_stats_s);
997 s->stats = kmalloc(size, GFP_KERNEL);
998 if (s->stats == NULL) {
999 kfree(s);
1000 return -ENOMEM;
1001 }
1002 spin_lock(&journal->j_history_lock);
1003 memcpy(s->stats, &journal->j_stats, size);
1004 s->journal = journal;
1005 spin_unlock(&journal->j_history_lock);
1006
1007 rc = seq_open(file, &jbd2_seq_info_ops);
1008 if (rc == 0) {
1009 struct seq_file *m = file->private_data;
1010 m->private = s;
1011 } else {
1012 kfree(s->stats);
1013 kfree(s);
1014 }
1015 return rc;
1016
1017}
1018
1019static int jbd2_seq_info_release(struct inode *inode, struct file *file)
1020{
1021 struct seq_file *seq = file->private_data;
1022 struct jbd2_stats_proc_session *s = seq->private;
1023 kfree(s->stats);
1024 kfree(s);
1025 return seq_release(inode, file);
1026}
1027
828c0950 1028static const struct file_operations jbd2_seq_info_fops = {
8e85fb3f
JL
1029 .owner = THIS_MODULE,
1030 .open = jbd2_seq_info_open,
1031 .read = seq_read,
1032 .llseek = seq_lseek,
1033 .release = jbd2_seq_info_release,
1034};
1035
1036static struct proc_dir_entry *proc_jbd2_stats;
1037
1038static void jbd2_stats_proc_init(journal_t *journal)
1039{
05496769 1040 journal->j_proc_entry = proc_mkdir(journal->j_devname, proc_jbd2_stats);
8e85fb3f 1041 if (journal->j_proc_entry) {
79da3664
DL
1042 proc_create_data("info", S_IRUGO, journal->j_proc_entry,
1043 &jbd2_seq_info_fops, journal);
8e85fb3f
JL
1044 }
1045}
1046
1047static void jbd2_stats_proc_exit(journal_t *journal)
1048{
8e85fb3f 1049 remove_proc_entry("info", journal->j_proc_entry);
05496769 1050 remove_proc_entry(journal->j_devname, proc_jbd2_stats);
8e85fb3f
JL
1051}
1052
470decc6
DK
1053/*
1054 * Management for journal control blocks: functions to create and
1055 * destroy journal_t structures, and to initialise and read existing
1056 * journal blocks from disk. */
1057
1058/* First: create and setup a journal_t object in memory. We initialise
1059 * very few fields yet: that has to wait until we have created the
1060 * journal structures from from scratch, or loaded them from disk. */
1061
1062static journal_t * journal_init_common (void)
1063{
1064 journal_t *journal;
1065 int err;
1066
3ebfdf88 1067 journal = kzalloc(sizeof(*journal), GFP_KERNEL);
470decc6 1068 if (!journal)
b7271b0a 1069 return NULL;
470decc6
DK
1070
1071 init_waitqueue_head(&journal->j_wait_transaction_locked);
1072 init_waitqueue_head(&journal->j_wait_logspace);
1073 init_waitqueue_head(&journal->j_wait_done_commit);
1074 init_waitqueue_head(&journal->j_wait_checkpoint);
1075 init_waitqueue_head(&journal->j_wait_commit);
1076 init_waitqueue_head(&journal->j_wait_updates);
1077 mutex_init(&journal->j_barrier);
1078 mutex_init(&journal->j_checkpoint_mutex);
1079 spin_lock_init(&journal->j_revoke_lock);
1080 spin_lock_init(&journal->j_list_lock);
a931da6a 1081 rwlock_init(&journal->j_state_lock);
470decc6 1082
cd02ff0b 1083 journal->j_commit_interval = (HZ * JBD2_DEFAULT_MAX_COMMIT_AGE);
30773840
TT
1084 journal->j_min_batch_time = 0;
1085 journal->j_max_batch_time = 15000; /* 15ms */
470decc6
DK
1086
1087 /* The journal is marked for error until we succeed with recovery! */
f7f4bccb 1088 journal->j_flags = JBD2_ABORT;
470decc6
DK
1089
1090 /* Set up a default-sized revoke table for the new mount. */
f7f4bccb 1091 err = jbd2_journal_init_revoke(journal, JOURNAL_REVOKE_DEFAULT_HASH);
470decc6
DK
1092 if (err) {
1093 kfree(journal);
b7271b0a 1094 return NULL;
470decc6 1095 }
8e85fb3f 1096
bf699327 1097 spin_lock_init(&journal->j_history_lock);
8e85fb3f 1098
470decc6 1099 return journal;
470decc6
DK
1100}
1101
f7f4bccb 1102/* jbd2_journal_init_dev and jbd2_journal_init_inode:
470decc6
DK
1103 *
1104 * Create a journal structure assigned some fixed set of disk blocks to
1105 * the journal. We don't actually touch those disk blocks yet, but we
1106 * need to set up all of the mapping information to tell the journaling
1107 * system where the journal blocks are.
1108 *
1109 */
1110
1111/**
5648ba5b 1112 * journal_t * jbd2_journal_init_dev() - creates and initialises a journal structure
470decc6
DK
1113 * @bdev: Block device on which to create the journal
1114 * @fs_dev: Device which hold journalled filesystem for this journal.
1115 * @start: Block nr Start of journal.
1116 * @len: Length of the journal in blocks.
1117 * @blocksize: blocksize of journalling device
5648ba5b
RD
1118 *
1119 * Returns: a newly created journal_t *
470decc6 1120 *
f7f4bccb 1121 * jbd2_journal_init_dev creates a journal which maps a fixed contiguous
470decc6
DK
1122 * range of blocks on an arbitrary block device.
1123 *
1124 */
f7f4bccb 1125journal_t * jbd2_journal_init_dev(struct block_device *bdev,
470decc6 1126 struct block_device *fs_dev,
18eba7aa 1127 unsigned long long start, int len, int blocksize)
470decc6
DK
1128{
1129 journal_t *journal = journal_init_common();
1130 struct buffer_head *bh;
05496769 1131 char *p;
470decc6
DK
1132 int n;
1133
1134 if (!journal)
1135 return NULL;
1136
1137 /* journal descriptor can store up to n blocks -bzzz */
1138 journal->j_blocksize = blocksize;
0587aa3d 1139 journal->j_dev = bdev;
1140 journal->j_fs_dev = fs_dev;
1141 journal->j_blk_offset = start;
1142 journal->j_maxlen = len;
1143 bdevname(journal->j_dev, journal->j_devname);
1144 p = journal->j_devname;
1145 while ((p = strchr(p, '/')))
1146 *p = '!';
4b905671 1147 jbd2_stats_proc_init(journal);
470decc6
DK
1148 n = journal->j_blocksize / sizeof(journal_block_tag_t);
1149 journal->j_wbufsize = n;
1150 journal->j_wbuf = kmalloc(n * sizeof(struct buffer_head*), GFP_KERNEL);
1151 if (!journal->j_wbuf) {
25985edc 1152 printk(KERN_ERR "%s: Can't allocate bhs for commit thread\n",
329d291f 1153 __func__);
4b905671 1154 goto out_err;
470decc6 1155 }
470decc6
DK
1156
1157 bh = __getblk(journal->j_dev, start, journal->j_blocksize);
4b905671
JK
1158 if (!bh) {
1159 printk(KERN_ERR
1160 "%s: Cannot get buffer for journal superblock\n",
1161 __func__);
1162 goto out_err;
1163 }
470decc6
DK
1164 journal->j_sb_buffer = bh;
1165 journal->j_superblock = (journal_superblock_t *)bh->b_data;
4b905671 1166
470decc6 1167 return journal;
4b905671 1168out_err:
7b02bec0 1169 kfree(journal->j_wbuf);
4b905671
JK
1170 jbd2_stats_proc_exit(journal);
1171 kfree(journal);
1172 return NULL;
470decc6
DK
1173}
1174
1175/**
f7f4bccb 1176 * journal_t * jbd2_journal_init_inode () - creates a journal which maps to a inode.
470decc6
DK
1177 * @inode: An inode to create the journal in
1178 *
f7f4bccb 1179 * jbd2_journal_init_inode creates a journal which maps an on-disk inode as
470decc6
DK
1180 * the journal. The inode must exist already, must support bmap() and
1181 * must have all data blocks preallocated.
1182 */
f7f4bccb 1183journal_t * jbd2_journal_init_inode (struct inode *inode)
470decc6
DK
1184{
1185 struct buffer_head *bh;
1186 journal_t *journal = journal_init_common();
05496769 1187 char *p;
470decc6
DK
1188 int err;
1189 int n;
18eba7aa 1190 unsigned long long blocknr;
470decc6
DK
1191
1192 if (!journal)
1193 return NULL;
1194
1195 journal->j_dev = journal->j_fs_dev = inode->i_sb->s_bdev;
1196 journal->j_inode = inode;
05496769
TT
1197 bdevname(journal->j_dev, journal->j_devname);
1198 p = journal->j_devname;
1199 while ((p = strchr(p, '/')))
1200 *p = '!';
1201 p = journal->j_devname + strlen(journal->j_devname);
90576c0b 1202 sprintf(p, "-%lu", journal->j_inode->i_ino);
470decc6
DK
1203 jbd_debug(1,
1204 "journal %p: inode %s/%ld, size %Ld, bits %d, blksize %ld\n",
1205 journal, inode->i_sb->s_id, inode->i_ino,
1206 (long long) inode->i_size,
1207 inode->i_sb->s_blocksize_bits, inode->i_sb->s_blocksize);
1208
1209 journal->j_maxlen = inode->i_size >> inode->i_sb->s_blocksize_bits;
1210 journal->j_blocksize = inode->i_sb->s_blocksize;
8e85fb3f 1211 jbd2_stats_proc_init(journal);
470decc6
DK
1212
1213 /* journal descriptor can store up to n blocks -bzzz */
1214 n = journal->j_blocksize / sizeof(journal_block_tag_t);
1215 journal->j_wbufsize = n;
1216 journal->j_wbuf = kmalloc(n * sizeof(struct buffer_head*), GFP_KERNEL);
1217 if (!journal->j_wbuf) {
25985edc 1218 printk(KERN_ERR "%s: Can't allocate bhs for commit thread\n",
329d291f 1219 __func__);
4b905671 1220 goto out_err;
470decc6
DK
1221 }
1222
f7f4bccb 1223 err = jbd2_journal_bmap(journal, 0, &blocknr);
470decc6
DK
1224 /* If that failed, give up */
1225 if (err) {
3c26bdb4 1226 printk(KERN_ERR "%s: Cannot locate journal superblock\n",
329d291f 1227 __func__);
4b905671 1228 goto out_err;
470decc6
DK
1229 }
1230
1231 bh = __getblk(journal->j_dev, blocknr, journal->j_blocksize);
4b905671
JK
1232 if (!bh) {
1233 printk(KERN_ERR
1234 "%s: Cannot get buffer for journal superblock\n",
1235 __func__);
1236 goto out_err;
1237 }
470decc6
DK
1238 journal->j_sb_buffer = bh;
1239 journal->j_superblock = (journal_superblock_t *)bh->b_data;
1240
1241 return journal;
4b905671 1242out_err:
7b02bec0 1243 kfree(journal->j_wbuf);
4b905671
JK
1244 jbd2_stats_proc_exit(journal);
1245 kfree(journal);
1246 return NULL;
470decc6
DK
1247}
1248
1249/*
1250 * If the journal init or create aborts, we need to mark the journal
1251 * superblock as being NULL to prevent the journal destroy from writing
1252 * back a bogus superblock.
1253 */
1254static void journal_fail_superblock (journal_t *journal)
1255{
1256 struct buffer_head *bh = journal->j_sb_buffer;
1257 brelse(bh);
1258 journal->j_sb_buffer = NULL;
1259}
1260
1261/*
1262 * Given a journal_t structure, initialise the various fields for
1263 * startup of a new journaling session. We use this both when creating
1264 * a journal, and after recovering an old journal to reset it for
1265 * subsequent use.
1266 */
1267
1268static int journal_reset(journal_t *journal)
1269{
1270 journal_superblock_t *sb = journal->j_superblock;
18eba7aa 1271 unsigned long long first, last;
470decc6
DK
1272
1273 first = be32_to_cpu(sb->s_first);
1274 last = be32_to_cpu(sb->s_maxlen);
f6f50e28 1275 if (first + JBD2_MIN_JOURNAL_BLOCKS > last + 1) {
f2a44523 1276 printk(KERN_ERR "JBD2: Journal too short (blocks %llu-%llu).\n",
f6f50e28
JK
1277 first, last);
1278 journal_fail_superblock(journal);
1279 return -EINVAL;
1280 }
470decc6
DK
1281
1282 journal->j_first = first;
1283 journal->j_last = last;
1284
1285 journal->j_head = first;
1286 journal->j_tail = first;
1287 journal->j_free = last - first;
1288
1289 journal->j_tail_sequence = journal->j_transaction_sequence;
1290 journal->j_commit_sequence = journal->j_transaction_sequence - 1;
1291 journal->j_commit_request = journal->j_commit_sequence;
1292
1293 journal->j_max_transaction_buffers = journal->j_maxlen / 4;
1294
470decc6
DK
1295 /*
1296 * As a special case, if the on-disk copy is already marked as needing
24bcc89c
JK
1297 * no recovery (s_start == 0), then we can safely defer the superblock
1298 * update until the next commit by setting JBD2_FLUSHED. This avoids
470decc6
DK
1299 * attempting a write to a potential-readonly device.
1300 */
24bcc89c 1301 if (sb->s_start == 0) {
f2a44523 1302 jbd_debug(1, "JBD2: Skipping superblock update on recovered sb "
470decc6
DK
1303 "(start %ld, seq %d, errno %d)\n",
1304 journal->j_tail, journal->j_tail_sequence,
1305 journal->j_errno);
24bcc89c
JK
1306 journal->j_flags |= JBD2_FLUSHED;
1307 } else {
a78bb11d
JK
1308 /* Lock here to make assertions happy... */
1309 mutex_lock(&journal->j_checkpoint_mutex);
79feb521
JK
1310 /*
1311 * Update log tail information. We use WRITE_FUA since new
1312 * transaction will start reusing journal space and so we
1313 * must make sure information about current log tail is on
1314 * disk before that.
1315 */
1316 jbd2_journal_update_sb_log_tail(journal,
1317 journal->j_tail_sequence,
1318 journal->j_tail,
1319 WRITE_FUA);
a78bb11d 1320 mutex_unlock(&journal->j_checkpoint_mutex);
470decc6 1321 }
24bcc89c
JK
1322 return jbd2_journal_start_thread(journal);
1323}
470decc6 1324
c507ecae 1325static int jbd2_write_superblock(journal_t *journal, int write_op)
24bcc89c
JK
1326{
1327 struct buffer_head *bh = journal->j_sb_buffer;
5f81e313 1328 journal_superblock_t *sb = journal->j_superblock;
79feb521 1329 int ret;
470decc6 1330
79feb521
JK
1331 trace_jbd2_write_superblock(journal, write_op);
1332 if (!(journal->j_flags & JBD2_BARRIER))
1333 write_op &= ~(REQ_FUA | REQ_FLUSH);
1334 lock_buffer(bh);
914258bf
TT
1335 if (buffer_write_io_error(bh)) {
1336 /*
1337 * Oh, dear. A previous attempt to write the journal
1338 * superblock failed. This could happen because the
1339 * USB device was yanked out. Or it could happen to
1340 * be a transient write error and maybe the block will
1341 * be remapped. Nothing we can do but to retry the
1342 * write and hope for the best.
1343 */
1344 printk(KERN_ERR "JBD2: previous I/O error detected "
1345 "for journal superblock update for %s.\n",
1346 journal->j_devname);
1347 clear_buffer_write_io_error(bh);
1348 set_buffer_uptodate(bh);
1349 }
5f81e313 1350 jbd2_superblock_csum_set(journal, sb);
79feb521
JK
1351 get_bh(bh);
1352 bh->b_end_io = end_buffer_write_sync;
1353 ret = submit_bh(write_op, bh);
1354 wait_on_buffer(bh);
24bcc89c 1355 if (buffer_write_io_error(bh)) {
24bcc89c
JK
1356 clear_buffer_write_io_error(bh);
1357 set_buffer_uptodate(bh);
79feb521
JK
1358 ret = -EIO;
1359 }
1360 if (ret) {
1361 printk(KERN_ERR "JBD2: Error %d detected when updating "
1362 "journal superblock for %s.\n", ret,
1363 journal->j_devname);
c507ecae 1364 jbd2_journal_abort(journal, ret);
24bcc89c 1365 }
c507ecae
JQ
1366
1367 return ret;
24bcc89c
JK
1368}
1369
1370/**
1371 * jbd2_journal_update_sb_log_tail() - Update log tail in journal sb on disk.
1372 * @journal: The journal to update.
79feb521
JK
1373 * @tail_tid: TID of the new transaction at the tail of the log
1374 * @tail_block: The first block of the transaction at the tail of the log
1375 * @write_op: With which operation should we write the journal sb
24bcc89c
JK
1376 *
1377 * Update a journal's superblock information about log tail and write it to
1378 * disk, waiting for the IO to complete.
1379 */
c507ecae 1380int jbd2_journal_update_sb_log_tail(journal_t *journal, tid_t tail_tid,
79feb521 1381 unsigned long tail_block, int write_op)
24bcc89c
JK
1382{
1383 journal_superblock_t *sb = journal->j_superblock;
c507ecae 1384 int ret;
24bcc89c 1385
a78bb11d 1386 BUG_ON(!mutex_is_locked(&journal->j_checkpoint_mutex));
79feb521
JK
1387 jbd_debug(1, "JBD2: updating superblock (start %lu, seq %u)\n",
1388 tail_block, tail_tid);
470decc6 1389
79feb521
JK
1390 sb->s_sequence = cpu_to_be32(tail_tid);
1391 sb->s_start = cpu_to_be32(tail_block);
470decc6 1392
c507ecae
JQ
1393 ret = jbd2_write_superblock(journal, write_op);
1394 if (ret)
1395 goto out;
470decc6 1396
24bcc89c
JK
1397 /* Log is no longer empty */
1398 write_lock(&journal->j_state_lock);
1399 WARN_ON(!sb->s_sequence);
1400 journal->j_flags &= ~JBD2_FLUSHED;
1401 write_unlock(&journal->j_state_lock);
c507ecae
JQ
1402
1403out:
1404 return ret;
24bcc89c 1405}
2201c590 1406
24bcc89c
JK
1407/**
1408 * jbd2_mark_journal_empty() - Mark on disk journal as empty.
1409 * @journal: The journal to update.
7493d128 1410 * @write_op: With which operation should we write the journal sb
24bcc89c
JK
1411 *
1412 * Update a journal's dynamic superblock fields to show that journal is empty.
1413 * Write updated superblock to disk waiting for IO to complete.
1414 */
7493d128 1415static void jbd2_mark_journal_empty(journal_t *journal, int write_op)
24bcc89c
JK
1416{
1417 journal_superblock_t *sb = journal->j_superblock;
914258bf 1418
a78bb11d 1419 BUG_ON(!mutex_is_locked(&journal->j_checkpoint_mutex));
a931da6a 1420 read_lock(&journal->j_state_lock);
eeecef0a
ES
1421 /* Is it already empty? */
1422 if (sb->s_start == 0) {
1423 read_unlock(&journal->j_state_lock);
1424 return;
1425 }
24bcc89c
JK
1426 jbd_debug(1, "JBD2: Marking journal as empty (seq %d)\n",
1427 journal->j_tail_sequence);
470decc6
DK
1428
1429 sb->s_sequence = cpu_to_be32(journal->j_tail_sequence);
24bcc89c 1430 sb->s_start = cpu_to_be32(0);
a931da6a 1431 read_unlock(&journal->j_state_lock);
470decc6 1432
7493d128 1433 jbd2_write_superblock(journal, write_op);
470decc6 1434
24bcc89c 1435 /* Log is no longer empty */
a931da6a 1436 write_lock(&journal->j_state_lock);
24bcc89c 1437 journal->j_flags |= JBD2_FLUSHED;
a931da6a 1438 write_unlock(&journal->j_state_lock);
470decc6
DK
1439}
1440
24bcc89c
JK
1441
1442/**
1443 * jbd2_journal_update_sb_errno() - Update error in the journal.
1444 * @journal: The journal to update.
1445 *
1446 * Update a journal's errno. Write updated superblock to disk waiting for IO
1447 * to complete.
1448 */
d796c52e 1449void jbd2_journal_update_sb_errno(journal_t *journal)
24bcc89c
JK
1450{
1451 journal_superblock_t *sb = journal->j_superblock;
1452
1453 read_lock(&journal->j_state_lock);
1454 jbd_debug(1, "JBD2: updating superblock error (errno %d)\n",
1455 journal->j_errno);
1456 sb->s_errno = cpu_to_be32(journal->j_errno);
1457 read_unlock(&journal->j_state_lock);
1458
79feb521 1459 jbd2_write_superblock(journal, WRITE_SYNC);
24bcc89c 1460}
d796c52e 1461EXPORT_SYMBOL(jbd2_journal_update_sb_errno);
24bcc89c 1462
470decc6
DK
1463/*
1464 * Read the superblock for a given journal, performing initial
1465 * validation of the format.
1466 */
470decc6
DK
1467static int journal_get_superblock(journal_t *journal)
1468{
1469 struct buffer_head *bh;
1470 journal_superblock_t *sb;
1471 int err = -EIO;
1472
1473 bh = journal->j_sb_buffer;
1474
1475 J_ASSERT(bh != NULL);
1476 if (!buffer_uptodate(bh)) {
1477 ll_rw_block(READ, 1, &bh);
1478 wait_on_buffer(bh);
1479 if (!buffer_uptodate(bh)) {
f2a44523
EG
1480 printk(KERN_ERR
1481 "JBD2: IO error reading journal superblock\n");
470decc6
DK
1482 goto out;
1483 }
1484 }
1485
25ed6e8a
DW
1486 if (buffer_verified(bh))
1487 return 0;
1488
470decc6
DK
1489 sb = journal->j_superblock;
1490
1491 err = -EINVAL;
1492
f7f4bccb 1493 if (sb->s_header.h_magic != cpu_to_be32(JBD2_MAGIC_NUMBER) ||
470decc6 1494 sb->s_blocksize != cpu_to_be32(journal->j_blocksize)) {
f2a44523 1495 printk(KERN_WARNING "JBD2: no valid journal superblock found\n");
470decc6
DK
1496 goto out;
1497 }
1498
1499 switch(be32_to_cpu(sb->s_header.h_blocktype)) {
f7f4bccb 1500 case JBD2_SUPERBLOCK_V1:
470decc6
DK
1501 journal->j_format_version = 1;
1502 break;
f7f4bccb 1503 case JBD2_SUPERBLOCK_V2:
470decc6
DK
1504 journal->j_format_version = 2;
1505 break;
1506 default:
f2a44523 1507 printk(KERN_WARNING "JBD2: unrecognised superblock format ID\n");
470decc6
DK
1508 goto out;
1509 }
1510
1511 if (be32_to_cpu(sb->s_maxlen) < journal->j_maxlen)
1512 journal->j_maxlen = be32_to_cpu(sb->s_maxlen);
1513 else if (be32_to_cpu(sb->s_maxlen) > journal->j_maxlen) {
f2a44523 1514 printk(KERN_WARNING "JBD2: journal file too short\n");
470decc6
DK
1515 goto out;
1516 }
1517
8762202d
EG
1518 if (be32_to_cpu(sb->s_first) == 0 ||
1519 be32_to_cpu(sb->s_first) >= journal->j_maxlen) {
1520 printk(KERN_WARNING
1521 "JBD2: Invalid start block of journal: %u\n",
1522 be32_to_cpu(sb->s_first));
1523 goto out;
1524 }
1525
25ed6e8a
DW
1526 if (JBD2_HAS_COMPAT_FEATURE(journal, JBD2_FEATURE_COMPAT_CHECKSUM) &&
1527 JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2)) {
1528 /* Can't have checksum v1 and v2 on at the same time! */
1529 printk(KERN_ERR "JBD: Can't enable checksumming v1 and v2 "
1530 "at the same time!\n");
1531 goto out;
1532 }
1533
1534 if (!jbd2_verify_csum_type(journal, sb)) {
1535 printk(KERN_ERR "JBD: Unknown checksum type\n");
1536 goto out;
1537 }
1538
01b5adce
DW
1539 /* Load the checksum driver */
1540 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2)) {
1541 journal->j_chksum_driver = crypto_alloc_shash("crc32c", 0, 0);
1542 if (IS_ERR(journal->j_chksum_driver)) {
1543 printk(KERN_ERR "JBD: Cannot load crc32c driver.\n");
1544 err = PTR_ERR(journal->j_chksum_driver);
1545 journal->j_chksum_driver = NULL;
1546 goto out;
1547 }
1548 }
1549
4fd5ea43
DW
1550 /* Check superblock checksum */
1551 if (!jbd2_superblock_csum_verify(journal, sb)) {
1552 printk(KERN_ERR "JBD: journal checksum error\n");
1553 goto out;
1554 }
1555
1556 /* Precompute checksum seed for all metadata */
1557 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2))
1558 journal->j_csum_seed = jbd2_chksum(journal, ~0, sb->s_uuid,
1559 sizeof(sb->s_uuid));
1560
25ed6e8a
DW
1561 set_buffer_verified(bh);
1562
470decc6
DK
1563 return 0;
1564
1565out:
1566 journal_fail_superblock(journal);
1567 return err;
1568}
1569
1570/*
1571 * Load the on-disk journal superblock and read the key fields into the
1572 * journal_t.
1573 */
1574
1575static int load_superblock(journal_t *journal)
1576{
1577 int err;
1578 journal_superblock_t *sb;
1579
1580 err = journal_get_superblock(journal);
1581 if (err)
1582 return err;
1583
1584 sb = journal->j_superblock;
1585
1586 journal->j_tail_sequence = be32_to_cpu(sb->s_sequence);
1587 journal->j_tail = be32_to_cpu(sb->s_start);
1588 journal->j_first = be32_to_cpu(sb->s_first);
1589 journal->j_last = be32_to_cpu(sb->s_maxlen);
1590 journal->j_errno = be32_to_cpu(sb->s_errno);
1591
1592 return 0;
1593}
1594
1595
1596/**
f7f4bccb 1597 * int jbd2_journal_load() - Read journal from disk.
470decc6
DK
1598 * @journal: Journal to act on.
1599 *
1600 * Given a journal_t structure which tells us which disk blocks contain
1601 * a journal, read the journal from disk to initialise the in-memory
1602 * structures.
1603 */
f7f4bccb 1604int jbd2_journal_load(journal_t *journal)
470decc6
DK
1605{
1606 int err;
1607 journal_superblock_t *sb;
1608
1609 err = load_superblock(journal);
1610 if (err)
1611 return err;
1612
1613 sb = journal->j_superblock;
1614 /* If this is a V2 superblock, then we have to check the
1615 * features flags on it. */
1616
1617 if (journal->j_format_version >= 2) {
1618 if ((sb->s_feature_ro_compat &
f7f4bccb 1619 ~cpu_to_be32(JBD2_KNOWN_ROCOMPAT_FEATURES)) ||
470decc6 1620 (sb->s_feature_incompat &
f7f4bccb 1621 ~cpu_to_be32(JBD2_KNOWN_INCOMPAT_FEATURES))) {
f2a44523
EG
1622 printk(KERN_WARNING
1623 "JBD2: Unrecognised features on journal\n");
470decc6
DK
1624 return -EINVAL;
1625 }
1626 }
1627
d2eecb03
TT
1628 /*
1629 * Create a slab for this blocksize
1630 */
1631 err = jbd2_journal_create_slab(be32_to_cpu(sb->s_blocksize));
1632 if (err)
1633 return err;
1634
470decc6
DK
1635 /* Let the recovery code check whether it needs to recover any
1636 * data from the journal. */
f7f4bccb 1637 if (jbd2_journal_recover(journal))
470decc6
DK
1638 goto recovery_error;
1639
e6a47428
TT
1640 if (journal->j_failed_commit) {
1641 printk(KERN_ERR "JBD2: journal transaction %u on %s "
1642 "is corrupt.\n", journal->j_failed_commit,
1643 journal->j_devname);
1644 return -EIO;
1645 }
1646
470decc6
DK
1647 /* OK, we've finished with the dynamic journal bits:
1648 * reinitialise the dynamic contents of the superblock in memory
1649 * and reset them on disk. */
1650 if (journal_reset(journal))
1651 goto recovery_error;
1652
f7f4bccb
MC
1653 journal->j_flags &= ~JBD2_ABORT;
1654 journal->j_flags |= JBD2_LOADED;
470decc6
DK
1655 return 0;
1656
1657recovery_error:
f2a44523 1658 printk(KERN_WARNING "JBD2: recovery failed\n");
470decc6
DK
1659 return -EIO;
1660}
1661
1662/**
f7f4bccb 1663 * void jbd2_journal_destroy() - Release a journal_t structure.
470decc6
DK
1664 * @journal: Journal to act on.
1665 *
1666 * Release a journal_t structure once it is no longer in use by the
1667 * journaled object.
44519faf 1668 * Return <0 if we couldn't clean up the journal.
470decc6 1669 */
44519faf 1670int jbd2_journal_destroy(journal_t *journal)
470decc6 1671{
44519faf
HK
1672 int err = 0;
1673
470decc6
DK
1674 /* Wait for the commit thread to wake up and die. */
1675 journal_kill_thread(journal);
1676
1677 /* Force a final log commit */
1678 if (journal->j_running_transaction)
f7f4bccb 1679 jbd2_journal_commit_transaction(journal);
470decc6
DK
1680
1681 /* Force any old transactions to disk */
1682
1683 /* Totally anal locking here... */
1684 spin_lock(&journal->j_list_lock);
1685 while (journal->j_checkpoint_transactions != NULL) {
1686 spin_unlock(&journal->j_list_lock);
1a0d3786 1687 mutex_lock(&journal->j_checkpoint_mutex);
f7f4bccb 1688 jbd2_log_do_checkpoint(journal);
1a0d3786 1689 mutex_unlock(&journal->j_checkpoint_mutex);
470decc6
DK
1690 spin_lock(&journal->j_list_lock);
1691 }
1692
1693 J_ASSERT(journal->j_running_transaction == NULL);
1694 J_ASSERT(journal->j_committing_transaction == NULL);
1695 J_ASSERT(journal->j_checkpoint_transactions == NULL);
1696 spin_unlock(&journal->j_list_lock);
1697
470decc6 1698 if (journal->j_sb_buffer) {
44519faf 1699 if (!is_journal_aborted(journal)) {
a78bb11d 1700 mutex_lock(&journal->j_checkpoint_mutex);
7493d128
OH
1701
1702 write_lock(&journal->j_state_lock);
1703 journal->j_tail_sequence =
1704 ++journal->j_transaction_sequence;
1705 write_unlock(&journal->j_state_lock);
1706
1707 jbd2_mark_journal_empty(journal, WRITE_FLUSH_FUA);
a78bb11d
JK
1708 mutex_unlock(&journal->j_checkpoint_mutex);
1709 } else
44519faf 1710 err = -EIO;
470decc6
DK
1711 brelse(journal->j_sb_buffer);
1712 }
1713
8e85fb3f
JL
1714 if (journal->j_proc_entry)
1715 jbd2_stats_proc_exit(journal);
470decc6
DK
1716 if (journal->j_inode)
1717 iput(journal->j_inode);
1718 if (journal->j_revoke)
f7f4bccb 1719 jbd2_journal_destroy_revoke(journal);
01b5adce
DW
1720 if (journal->j_chksum_driver)
1721 crypto_free_shash(journal->j_chksum_driver);
470decc6
DK
1722 kfree(journal->j_wbuf);
1723 kfree(journal);
44519faf
HK
1724
1725 return err;
470decc6
DK
1726}
1727
1728
1729/**
f7f4bccb 1730 *int jbd2_journal_check_used_features () - Check if features specified are used.
470decc6
DK
1731 * @journal: Journal to check.
1732 * @compat: bitmask of compatible features
1733 * @ro: bitmask of features that force read-only mount
1734 * @incompat: bitmask of incompatible features
1735 *
1736 * Check whether the journal uses all of a given set of
1737 * features. Return true (non-zero) if it does.
1738 **/
1739
f7f4bccb 1740int jbd2_journal_check_used_features (journal_t *journal, unsigned long compat,
470decc6
DK
1741 unsigned long ro, unsigned long incompat)
1742{
1743 journal_superblock_t *sb;
1744
1745 if (!compat && !ro && !incompat)
1746 return 1;
1113e1b5
PL
1747 /* Load journal superblock if it is not loaded yet. */
1748 if (journal->j_format_version == 0 &&
1749 journal_get_superblock(journal) != 0)
1750 return 0;
470decc6
DK
1751 if (journal->j_format_version == 1)
1752 return 0;
1753
1754 sb = journal->j_superblock;
1755
1756 if (((be32_to_cpu(sb->s_feature_compat) & compat) == compat) &&
1757 ((be32_to_cpu(sb->s_feature_ro_compat) & ro) == ro) &&
1758 ((be32_to_cpu(sb->s_feature_incompat) & incompat) == incompat))
1759 return 1;
1760
1761 return 0;
1762}
1763
1764/**
f7f4bccb 1765 * int jbd2_journal_check_available_features() - Check feature set in journalling layer
470decc6
DK
1766 * @journal: Journal to check.
1767 * @compat: bitmask of compatible features
1768 * @ro: bitmask of features that force read-only mount
1769 * @incompat: bitmask of incompatible features
1770 *
1771 * Check whether the journaling code supports the use of
1772 * all of a given set of features on this journal. Return true
1773 * (non-zero) if it can. */
1774
f7f4bccb 1775int jbd2_journal_check_available_features (journal_t *journal, unsigned long compat,
470decc6
DK
1776 unsigned long ro, unsigned long incompat)
1777{
470decc6
DK
1778 if (!compat && !ro && !incompat)
1779 return 1;
1780
470decc6
DK
1781 /* We can support any known requested features iff the
1782 * superblock is in version 2. Otherwise we fail to support any
1783 * extended sb features. */
1784
1785 if (journal->j_format_version != 2)
1786 return 0;
1787
f7f4bccb
MC
1788 if ((compat & JBD2_KNOWN_COMPAT_FEATURES) == compat &&
1789 (ro & JBD2_KNOWN_ROCOMPAT_FEATURES) == ro &&
1790 (incompat & JBD2_KNOWN_INCOMPAT_FEATURES) == incompat)
470decc6
DK
1791 return 1;
1792
1793 return 0;
1794}
1795
1796/**
f7f4bccb 1797 * int jbd2_journal_set_features () - Mark a given journal feature in the superblock
470decc6
DK
1798 * @journal: Journal to act on.
1799 * @compat: bitmask of compatible features
1800 * @ro: bitmask of features that force read-only mount
1801 * @incompat: bitmask of incompatible features
1802 *
1803 * Mark a given journal feature as present on the
1804 * superblock. Returns true if the requested features could be set.
1805 *
1806 */
1807
f7f4bccb 1808int jbd2_journal_set_features (journal_t *journal, unsigned long compat,
470decc6
DK
1809 unsigned long ro, unsigned long incompat)
1810{
25ed6e8a
DW
1811#define INCOMPAT_FEATURE_ON(f) \
1812 ((incompat & (f)) && !(sb->s_feature_incompat & cpu_to_be32(f)))
1813#define COMPAT_FEATURE_ON(f) \
1814 ((compat & (f)) && !(sb->s_feature_compat & cpu_to_be32(f)))
470decc6
DK
1815 journal_superblock_t *sb;
1816
f7f4bccb 1817 if (jbd2_journal_check_used_features(journal, compat, ro, incompat))
470decc6
DK
1818 return 1;
1819
f7f4bccb 1820 if (!jbd2_journal_check_available_features(journal, compat, ro, incompat))
470decc6
DK
1821 return 0;
1822
25ed6e8a
DW
1823 /* Asking for checksumming v2 and v1? Only give them v2. */
1824 if (incompat & JBD2_FEATURE_INCOMPAT_CSUM_V2 &&
1825 compat & JBD2_FEATURE_COMPAT_CHECKSUM)
1826 compat &= ~JBD2_FEATURE_COMPAT_CHECKSUM;
1827
470decc6
DK
1828 jbd_debug(1, "Setting new features 0x%lx/0x%lx/0x%lx\n",
1829 compat, ro, incompat);
1830
1831 sb = journal->j_superblock;
1832
25ed6e8a
DW
1833 /* If enabling v2 checksums, update superblock */
1834 if (INCOMPAT_FEATURE_ON(JBD2_FEATURE_INCOMPAT_CSUM_V2)) {
1835 sb->s_checksum_type = JBD2_CRC32C_CHKSUM;
1836 sb->s_feature_compat &=
1837 ~cpu_to_be32(JBD2_FEATURE_COMPAT_CHECKSUM);
01b5adce
DW
1838
1839 /* Load the checksum driver */
1840 if (journal->j_chksum_driver == NULL) {
1841 journal->j_chksum_driver = crypto_alloc_shash("crc32c",
1842 0, 0);
1843 if (IS_ERR(journal->j_chksum_driver)) {
1844 printk(KERN_ERR "JBD: Cannot load crc32c "
1845 "driver.\n");
1846 journal->j_chksum_driver = NULL;
1847 return 0;
1848 }
1849 }
4fd5ea43
DW
1850
1851 /* Precompute checksum seed for all metadata */
1852 if (JBD2_HAS_INCOMPAT_FEATURE(journal,
1853 JBD2_FEATURE_INCOMPAT_CSUM_V2))
1854 journal->j_csum_seed = jbd2_chksum(journal, ~0,
1855 sb->s_uuid,
1856 sizeof(sb->s_uuid));
25ed6e8a
DW
1857 }
1858
1859 /* If enabling v1 checksums, downgrade superblock */
1860 if (COMPAT_FEATURE_ON(JBD2_FEATURE_COMPAT_CHECKSUM))
1861 sb->s_feature_incompat &=
1862 ~cpu_to_be32(JBD2_FEATURE_INCOMPAT_CSUM_V2);
1863
470decc6
DK
1864 sb->s_feature_compat |= cpu_to_be32(compat);
1865 sb->s_feature_ro_compat |= cpu_to_be32(ro);
1866 sb->s_feature_incompat |= cpu_to_be32(incompat);
1867
1868 return 1;
25ed6e8a
DW
1869#undef COMPAT_FEATURE_ON
1870#undef INCOMPAT_FEATURE_ON
470decc6
DK
1871}
1872
818d276c
GS
1873/*
1874 * jbd2_journal_clear_features () - Clear a given journal feature in the
1875 * superblock
1876 * @journal: Journal to act on.
1877 * @compat: bitmask of compatible features
1878 * @ro: bitmask of features that force read-only mount
1879 * @incompat: bitmask of incompatible features
1880 *
1881 * Clear a given journal feature as present on the
1882 * superblock.
1883 */
1884void jbd2_journal_clear_features(journal_t *journal, unsigned long compat,
1885 unsigned long ro, unsigned long incompat)
1886{
1887 journal_superblock_t *sb;
1888
1889 jbd_debug(1, "Clear features 0x%lx/0x%lx/0x%lx\n",
1890 compat, ro, incompat);
1891
1892 sb = journal->j_superblock;
1893
1894 sb->s_feature_compat &= ~cpu_to_be32(compat);
1895 sb->s_feature_ro_compat &= ~cpu_to_be32(ro);
1896 sb->s_feature_incompat &= ~cpu_to_be32(incompat);
1897}
1898EXPORT_SYMBOL(jbd2_journal_clear_features);
470decc6 1899
470decc6 1900/**
f7f4bccb 1901 * int jbd2_journal_flush () - Flush journal
470decc6
DK
1902 * @journal: Journal to act on.
1903 *
1904 * Flush all data for a given journal to disk and empty the journal.
1905 * Filesystems can use this when remounting readonly to ensure that
1906 * recovery does not need to happen on remount.
1907 */
1908
f7f4bccb 1909int jbd2_journal_flush(journal_t *journal)
470decc6
DK
1910{
1911 int err = 0;
1912 transaction_t *transaction = NULL;
470decc6 1913
a931da6a 1914 write_lock(&journal->j_state_lock);
470decc6
DK
1915
1916 /* Force everything buffered to the log... */
1917 if (journal->j_running_transaction) {
1918 transaction = journal->j_running_transaction;
f7f4bccb 1919 __jbd2_log_start_commit(journal, transaction->t_tid);
470decc6
DK
1920 } else if (journal->j_committing_transaction)
1921 transaction = journal->j_committing_transaction;
1922
1923 /* Wait for the log commit to complete... */
1924 if (transaction) {
1925 tid_t tid = transaction->t_tid;
1926
a931da6a 1927 write_unlock(&journal->j_state_lock);
f7f4bccb 1928 jbd2_log_wait_commit(journal, tid);
470decc6 1929 } else {
a931da6a 1930 write_unlock(&journal->j_state_lock);
470decc6
DK
1931 }
1932
1933 /* ...and flush everything in the log out to disk. */
1934 spin_lock(&journal->j_list_lock);
1935 while (!err && journal->j_checkpoint_transactions != NULL) {
1936 spin_unlock(&journal->j_list_lock);
44519faf 1937 mutex_lock(&journal->j_checkpoint_mutex);
f7f4bccb 1938 err = jbd2_log_do_checkpoint(journal);
44519faf 1939 mutex_unlock(&journal->j_checkpoint_mutex);
470decc6
DK
1940 spin_lock(&journal->j_list_lock);
1941 }
1942 spin_unlock(&journal->j_list_lock);
44519faf
HK
1943
1944 if (is_journal_aborted(journal))
1945 return -EIO;
1946
a78bb11d 1947 mutex_lock(&journal->j_checkpoint_mutex);
c507ecae
JQ
1948 if (!err) {
1949 err = jbd2_cleanup_journal_tail(journal);
1950 if (err < 0) {
1951 mutex_unlock(&journal->j_checkpoint_mutex);
1952 goto out;
1953 }
1954 err = 0;
1955 }
470decc6
DK
1956
1957 /* Finally, mark the journal as really needing no recovery.
1958 * This sets s_start==0 in the underlying superblock, which is
1959 * the magic code for a fully-recovered superblock. Any future
1960 * commits of data to the journal will restore the current
1961 * s_start value. */
7493d128 1962 jbd2_mark_journal_empty(journal, WRITE_FUA);
a78bb11d 1963 mutex_unlock(&journal->j_checkpoint_mutex);
a931da6a 1964 write_lock(&journal->j_state_lock);
470decc6
DK
1965 J_ASSERT(!journal->j_running_transaction);
1966 J_ASSERT(!journal->j_committing_transaction);
1967 J_ASSERT(!journal->j_checkpoint_transactions);
1968 J_ASSERT(journal->j_head == journal->j_tail);
1969 J_ASSERT(journal->j_tail_sequence == journal->j_transaction_sequence);
a931da6a 1970 write_unlock(&journal->j_state_lock);
c507ecae
JQ
1971out:
1972 return err;
470decc6
DK
1973}
1974
1975/**
f7f4bccb 1976 * int jbd2_journal_wipe() - Wipe journal contents
470decc6
DK
1977 * @journal: Journal to act on.
1978 * @write: flag (see below)
1979 *
1980 * Wipe out all of the contents of a journal, safely. This will produce
1981 * a warning if the journal contains any valid recovery information.
f7f4bccb 1982 * Must be called between journal_init_*() and jbd2_journal_load().
470decc6
DK
1983 *
1984 * If 'write' is non-zero, then we wipe out the journal on disk; otherwise
1985 * we merely suppress recovery.
1986 */
1987
f7f4bccb 1988int jbd2_journal_wipe(journal_t *journal, int write)
470decc6 1989{
470decc6
DK
1990 int err = 0;
1991
f7f4bccb 1992 J_ASSERT (!(journal->j_flags & JBD2_LOADED));
470decc6
DK
1993
1994 err = load_superblock(journal);
1995 if (err)
1996 return err;
1997
470decc6
DK
1998 if (!journal->j_tail)
1999 goto no_recovery;
2000
f2a44523 2001 printk(KERN_WARNING "JBD2: %s recovery information on journal\n",
470decc6
DK
2002 write ? "Clearing" : "Ignoring");
2003
f7f4bccb 2004 err = jbd2_journal_skip_recovery(journal);
a78bb11d
JK
2005 if (write) {
2006 /* Lock to make assertions happy... */
2007 mutex_lock(&journal->j_checkpoint_mutex);
7493d128 2008 jbd2_mark_journal_empty(journal, WRITE_FUA);
a78bb11d
JK
2009 mutex_unlock(&journal->j_checkpoint_mutex);
2010 }
470decc6
DK
2011
2012 no_recovery:
2013 return err;
2014}
2015
470decc6
DK
2016/*
2017 * Journal abort has very specific semantics, which we describe
2018 * for journal abort.
2019 *
bfcd3555 2020 * Two internal functions, which provide abort to the jbd layer
470decc6
DK
2021 * itself are here.
2022 */
2023
2024/*
2025 * Quick version for internal journal use (doesn't lock the journal).
2026 * Aborts hard --- we mark the abort as occurred, but do _nothing_ else,
2027 * and don't attempt to make any other journal updates.
2028 */
f7f4bccb 2029void __jbd2_journal_abort_hard(journal_t *journal)
470decc6
DK
2030{
2031 transaction_t *transaction;
470decc6 2032
f7f4bccb 2033 if (journal->j_flags & JBD2_ABORT)
470decc6
DK
2034 return;
2035
2036 printk(KERN_ERR "Aborting journal on device %s.\n",
05496769 2037 journal->j_devname);
470decc6 2038
a931da6a 2039 write_lock(&journal->j_state_lock);
f7f4bccb 2040 journal->j_flags |= JBD2_ABORT;
470decc6
DK
2041 transaction = journal->j_running_transaction;
2042 if (transaction)
f7f4bccb 2043 __jbd2_log_start_commit(journal, transaction->t_tid);
a931da6a 2044 write_unlock(&journal->j_state_lock);
470decc6
DK
2045}
2046
2047/* Soft abort: record the abort error status in the journal superblock,
2048 * but don't do any other IO. */
2049static void __journal_abort_soft (journal_t *journal, int errno)
2050{
f7f4bccb 2051 if (journal->j_flags & JBD2_ABORT)
470decc6
DK
2052 return;
2053
2054 if (!journal->j_errno)
2055 journal->j_errno = errno;
2056
f7f4bccb 2057 __jbd2_journal_abort_hard(journal);
470decc6 2058
fe4b6c26 2059 if (errno) {
24bcc89c 2060 jbd2_journal_update_sb_errno(journal);
fe4b6c26
DJ
2061 write_lock(&journal->j_state_lock);
2062 journal->j_flags |= JBD2_REC_ERR;
2063 write_unlock(&journal->j_state_lock);
2064 }
470decc6
DK
2065}
2066
2067/**
f7f4bccb 2068 * void jbd2_journal_abort () - Shutdown the journal immediately.
470decc6
DK
2069 * @journal: the journal to shutdown.
2070 * @errno: an error number to record in the journal indicating
2071 * the reason for the shutdown.
2072 *
2073 * Perform a complete, immediate shutdown of the ENTIRE
2074 * journal (not of a single transaction). This operation cannot be
2075 * undone without closing and reopening the journal.
2076 *
f7f4bccb 2077 * The jbd2_journal_abort function is intended to support higher level error
470decc6
DK
2078 * recovery mechanisms such as the ext2/ext3 remount-readonly error
2079 * mode.
2080 *
2081 * Journal abort has very specific semantics. Any existing dirty,
2082 * unjournaled buffers in the main filesystem will still be written to
2083 * disk by bdflush, but the journaling mechanism will be suspended
2084 * immediately and no further transaction commits will be honoured.
2085 *
2086 * Any dirty, journaled buffers will be written back to disk without
2087 * hitting the journal. Atomicity cannot be guaranteed on an aborted
2088 * filesystem, but we _do_ attempt to leave as much data as possible
2089 * behind for fsck to use for cleanup.
2090 *
2091 * Any attempt to get a new transaction handle on a journal which is in
2092 * ABORT state will just result in an -EROFS error return. A
f7f4bccb 2093 * jbd2_journal_stop on an existing handle will return -EIO if we have
470decc6
DK
2094 * entered abort state during the update.
2095 *
2096 * Recursive transactions are not disturbed by journal abort until the
f7f4bccb 2097 * final jbd2_journal_stop, which will receive the -EIO error.
470decc6 2098 *
f7f4bccb 2099 * Finally, the jbd2_journal_abort call allows the caller to supply an errno
470decc6
DK
2100 * which will be recorded (if possible) in the journal superblock. This
2101 * allows a client to record failure conditions in the middle of a
2102 * transaction without having to complete the transaction to record the
2103 * failure to disk. ext3_error, for example, now uses this
2104 * functionality.
2105 *
2106 * Errors which originate from within the journaling layer will NOT
2107 * supply an errno; a null errno implies that absolutely no further
2108 * writes are done to the journal (unless there are any already in
2109 * progress).
2110 *
2111 */
2112
f7f4bccb 2113void jbd2_journal_abort(journal_t *journal, int errno)
470decc6
DK
2114{
2115 __journal_abort_soft(journal, errno);
2116}
2117
2118/**
f7f4bccb 2119 * int jbd2_journal_errno () - returns the journal's error state.
470decc6
DK
2120 * @journal: journal to examine.
2121 *
bfcd3555 2122 * This is the errno number set with jbd2_journal_abort(), the last
470decc6
DK
2123 * time the journal was mounted - if the journal was stopped
2124 * without calling abort this will be 0.
2125 *
2126 * If the journal has been aborted on this mount time -EROFS will
2127 * be returned.
2128 */
f7f4bccb 2129int jbd2_journal_errno(journal_t *journal)
470decc6
DK
2130{
2131 int err;
2132
a931da6a 2133 read_lock(&journal->j_state_lock);
f7f4bccb 2134 if (journal->j_flags & JBD2_ABORT)
470decc6
DK
2135 err = -EROFS;
2136 else
2137 err = journal->j_errno;
a931da6a 2138 read_unlock(&journal->j_state_lock);
470decc6
DK
2139 return err;
2140}
2141
2142/**
f7f4bccb 2143 * int jbd2_journal_clear_err () - clears the journal's error state
470decc6
DK
2144 * @journal: journal to act on.
2145 *
bfcd3555 2146 * An error must be cleared or acked to take a FS out of readonly
470decc6
DK
2147 * mode.
2148 */
f7f4bccb 2149int jbd2_journal_clear_err(journal_t *journal)
470decc6
DK
2150{
2151 int err = 0;
2152
a931da6a 2153 write_lock(&journal->j_state_lock);
f7f4bccb 2154 if (journal->j_flags & JBD2_ABORT)
470decc6
DK
2155 err = -EROFS;
2156 else
2157 journal->j_errno = 0;
a931da6a 2158 write_unlock(&journal->j_state_lock);
470decc6
DK
2159 return err;
2160}
2161
2162/**
f7f4bccb 2163 * void jbd2_journal_ack_err() - Ack journal err.
470decc6
DK
2164 * @journal: journal to act on.
2165 *
bfcd3555 2166 * An error must be cleared or acked to take a FS out of readonly
470decc6
DK
2167 * mode.
2168 */
f7f4bccb 2169void jbd2_journal_ack_err(journal_t *journal)
470decc6 2170{
a931da6a 2171 write_lock(&journal->j_state_lock);
470decc6 2172 if (journal->j_errno)
f7f4bccb 2173 journal->j_flags |= JBD2_ACK_ERR;
a931da6a 2174 write_unlock(&journal->j_state_lock);
470decc6
DK
2175}
2176
f7f4bccb 2177int jbd2_journal_blocks_per_page(struct inode *inode)
470decc6
DK
2178{
2179 return 1 << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
2180}
2181
b517bea1
ZB
2182/*
2183 * helper functions to deal with 32 or 64bit block numbers.
2184 */
2185size_t journal_tag_bytes(journal_t *journal)
2186{
c3900875
DW
2187 journal_block_tag_t tag;
2188 size_t x = 0;
2189
2190 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2))
2191 x += sizeof(tag.t_checksum);
2192
b517bea1 2193 if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_64BIT))
c3900875 2194 return x + JBD2_TAG_SIZE64;
b517bea1 2195 else
c3900875 2196 return x + JBD2_TAG_SIZE32;
b517bea1
ZB
2197}
2198
d2eecb03
TT
2199/*
2200 * JBD memory management
2201 *
2202 * These functions are used to allocate block-sized chunks of memory
2203 * used for making copies of buffer_head data. Very often it will be
2204 * page-sized chunks of data, but sometimes it will be in
2205 * sub-page-size chunks. (For example, 16k pages on Power systems
2206 * with a 4k block file system.) For blocks smaller than a page, we
2207 * use a SLAB allocator. There are slab caches for each block size,
2208 * which are allocated at mount time, if necessary, and we only free
2209 * (all of) the slab caches when/if the jbd2 module is unloaded. For
2210 * this reason we don't need to a mutex to protect access to
2211 * jbd2_slab[] allocating or releasing memory; only in
2212 * jbd2_journal_create_slab().
2213 */
2214#define JBD2_MAX_SLABS 8
2215static struct kmem_cache *jbd2_slab[JBD2_MAX_SLABS];
d2eecb03
TT
2216
2217static const char *jbd2_slab_names[JBD2_MAX_SLABS] = {
2218 "jbd2_1k", "jbd2_2k", "jbd2_4k", "jbd2_8k",
2219 "jbd2_16k", "jbd2_32k", "jbd2_64k", "jbd2_128k"
2220};
2221
2222
2223static void jbd2_journal_destroy_slabs(void)
2224{
2225 int i;
2226
2227 for (i = 0; i < JBD2_MAX_SLABS; i++) {
2228 if (jbd2_slab[i])
2229 kmem_cache_destroy(jbd2_slab[i]);
2230 jbd2_slab[i] = NULL;
2231 }
2232}
2233
2234static int jbd2_journal_create_slab(size_t size)
2235{
51dfacde 2236 static DEFINE_MUTEX(jbd2_slab_create_mutex);
d2eecb03
TT
2237 int i = order_base_2(size) - 10;
2238 size_t slab_size;
2239
2240 if (size == PAGE_SIZE)
2241 return 0;
2242
2243 if (i >= JBD2_MAX_SLABS)
2244 return -EINVAL;
2245
2246 if (unlikely(i < 0))
2247 i = 0;
51dfacde 2248 mutex_lock(&jbd2_slab_create_mutex);
d2eecb03 2249 if (jbd2_slab[i]) {
51dfacde 2250 mutex_unlock(&jbd2_slab_create_mutex);
d2eecb03
TT
2251 return 0; /* Already created */
2252 }
2253
2254 slab_size = 1 << (i+10);
2255 jbd2_slab[i] = kmem_cache_create(jbd2_slab_names[i], slab_size,
2256 slab_size, 0, NULL);
51dfacde 2257 mutex_unlock(&jbd2_slab_create_mutex);
d2eecb03
TT
2258 if (!jbd2_slab[i]) {
2259 printk(KERN_EMERG "JBD2: no memory for jbd2_slab cache\n");
2260 return -ENOMEM;
2261 }
2262 return 0;
2263}
2264
2265static struct kmem_cache *get_slab(size_t size)
2266{
2267 int i = order_base_2(size) - 10;
2268
2269 BUG_ON(i >= JBD2_MAX_SLABS);
2270 if (unlikely(i < 0))
2271 i = 0;
8ac97b74 2272 BUG_ON(jbd2_slab[i] == NULL);
d2eecb03
TT
2273 return jbd2_slab[i];
2274}
2275
2276void *jbd2_alloc(size_t size, gfp_t flags)
2277{
2278 void *ptr;
2279
2280 BUG_ON(size & (size-1)); /* Must be a power of 2 */
2281
2282 flags |= __GFP_REPEAT;
2283 if (size == PAGE_SIZE)
2284 ptr = (void *)__get_free_pages(flags, 0);
2285 else if (size > PAGE_SIZE) {
2286 int order = get_order(size);
2287
2288 if (order < 3)
2289 ptr = (void *)__get_free_pages(flags, order);
2290 else
2291 ptr = vmalloc(size);
2292 } else
2293 ptr = kmem_cache_alloc(get_slab(size), flags);
2294
2295 /* Check alignment; SLUB has gotten this wrong in the past,
2296 * and this can lead to user data corruption! */
2297 BUG_ON(((unsigned long) ptr) & (size-1));
2298
2299 return ptr;
2300}
2301
2302void jbd2_free(void *ptr, size_t size)
2303{
2304 if (size == PAGE_SIZE) {
2305 free_pages((unsigned long)ptr, 0);
2306 return;
2307 }
2308 if (size > PAGE_SIZE) {
2309 int order = get_order(size);
2310
2311 if (order < 3)
2312 free_pages((unsigned long)ptr, order);
2313 else
2314 vfree(ptr);
2315 return;
2316 }
2317 kmem_cache_free(get_slab(size), ptr);
2318};
2319
470decc6
DK
2320/*
2321 * Journal_head storage management
2322 */
e18b890b 2323static struct kmem_cache *jbd2_journal_head_cache;
e23291b9 2324#ifdef CONFIG_JBD2_DEBUG
470decc6
DK
2325static atomic_t nr_journal_heads = ATOMIC_INIT(0);
2326#endif
2327
4185a2ac 2328static int jbd2_journal_init_journal_head_cache(void)
470decc6
DK
2329{
2330 int retval;
2331
1076d17a 2332 J_ASSERT(jbd2_journal_head_cache == NULL);
a920e941 2333 jbd2_journal_head_cache = kmem_cache_create("jbd2_journal_head",
470decc6
DK
2334 sizeof(struct journal_head),
2335 0, /* offset */
77160957 2336 SLAB_TEMPORARY, /* flags */
20c2df83 2337 NULL); /* ctor */
470decc6 2338 retval = 0;
1076d17a 2339 if (!jbd2_journal_head_cache) {
470decc6 2340 retval = -ENOMEM;
f2a44523 2341 printk(KERN_EMERG "JBD2: no memory for journal_head cache\n");
470decc6
DK
2342 }
2343 return retval;
2344}
2345
4185a2ac 2346static void jbd2_journal_destroy_journal_head_cache(void)
470decc6 2347{
8a9362eb
DG
2348 if (jbd2_journal_head_cache) {
2349 kmem_cache_destroy(jbd2_journal_head_cache);
2350 jbd2_journal_head_cache = NULL;
2351 }
470decc6
DK
2352}
2353
2354/*
2355 * journal_head splicing and dicing
2356 */
2357static struct journal_head *journal_alloc_journal_head(void)
2358{
2359 struct journal_head *ret;
470decc6 2360
e23291b9 2361#ifdef CONFIG_JBD2_DEBUG
470decc6
DK
2362 atomic_inc(&nr_journal_heads);
2363#endif
f7f4bccb 2364 ret = kmem_cache_alloc(jbd2_journal_head_cache, GFP_NOFS);
1076d17a 2365 if (!ret) {
470decc6 2366 jbd_debug(1, "out of memory for journal_head\n");
670be5a7 2367 pr_notice_ratelimited("ENOMEM in %s, retrying.\n", __func__);
1076d17a 2368 while (!ret) {
470decc6 2369 yield();
f7f4bccb 2370 ret = kmem_cache_alloc(jbd2_journal_head_cache, GFP_NOFS);
470decc6
DK
2371 }
2372 }
2373 return ret;
2374}
2375
2376static void journal_free_journal_head(struct journal_head *jh)
2377{
e23291b9 2378#ifdef CONFIG_JBD2_DEBUG
470decc6 2379 atomic_dec(&nr_journal_heads);
cd02ff0b 2380 memset(jh, JBD2_POISON_FREE, sizeof(*jh));
470decc6 2381#endif
f7f4bccb 2382 kmem_cache_free(jbd2_journal_head_cache, jh);
470decc6
DK
2383}
2384
2385/*
2386 * A journal_head is attached to a buffer_head whenever JBD has an
2387 * interest in the buffer.
2388 *
2389 * Whenever a buffer has an attached journal_head, its ->b_state:BH_JBD bit
2390 * is set. This bit is tested in core kernel code where we need to take
2391 * JBD-specific actions. Testing the zeroness of ->b_private is not reliable
2392 * there.
2393 *
2394 * When a buffer has its BH_JBD bit set, its ->b_count is elevated by one.
2395 *
2396 * When a buffer has its BH_JBD bit set it is immune from being released by
2397 * core kernel code, mainly via ->b_count.
2398 *
de1b7941
JK
2399 * A journal_head is detached from its buffer_head when the journal_head's
2400 * b_jcount reaches zero. Running transaction (b_transaction) and checkpoint
2401 * transaction (b_cp_transaction) hold their references to b_jcount.
470decc6
DK
2402 *
2403 * Various places in the kernel want to attach a journal_head to a buffer_head
2404 * _before_ attaching the journal_head to a transaction. To protect the
f7f4bccb 2405 * journal_head in this situation, jbd2_journal_add_journal_head elevates the
470decc6 2406 * journal_head's b_jcount refcount by one. The caller must call
f7f4bccb 2407 * jbd2_journal_put_journal_head() to undo this.
470decc6
DK
2408 *
2409 * So the typical usage would be:
2410 *
2411 * (Attach a journal_head if needed. Increments b_jcount)
f7f4bccb 2412 * struct journal_head *jh = jbd2_journal_add_journal_head(bh);
470decc6 2413 * ...
de1b7941
JK
2414 * (Get another reference for transaction)
2415 * jbd2_journal_grab_journal_head(bh);
470decc6 2416 * jh->b_transaction = xxx;
de1b7941 2417 * (Put original reference)
f7f4bccb 2418 * jbd2_journal_put_journal_head(jh);
470decc6
DK
2419 */
2420
2421/*
2422 * Give a buffer_head a journal_head.
2423 *
470decc6
DK
2424 * May sleep.
2425 */
f7f4bccb 2426struct journal_head *jbd2_journal_add_journal_head(struct buffer_head *bh)
470decc6
DK
2427{
2428 struct journal_head *jh;
2429 struct journal_head *new_jh = NULL;
2430
2431repeat:
2432 if (!buffer_jbd(bh)) {
2433 new_jh = journal_alloc_journal_head();
2434 memset(new_jh, 0, sizeof(*new_jh));
2435 }
2436
2437 jbd_lock_bh_journal_head(bh);
2438 if (buffer_jbd(bh)) {
2439 jh = bh2jh(bh);
2440 } else {
2441 J_ASSERT_BH(bh,
2442 (atomic_read(&bh->b_count) > 0) ||
2443 (bh->b_page && bh->b_page->mapping));
2444
2445 if (!new_jh) {
2446 jbd_unlock_bh_journal_head(bh);
2447 goto repeat;
2448 }
2449
2450 jh = new_jh;
2451 new_jh = NULL; /* We consumed it */
2452 set_buffer_jbd(bh);
2453 bh->b_private = jh;
2454 jh->b_bh = bh;
2455 get_bh(bh);
2456 BUFFER_TRACE(bh, "added journal_head");
2457 }
2458 jh->b_jcount++;
2459 jbd_unlock_bh_journal_head(bh);
2460 if (new_jh)
2461 journal_free_journal_head(new_jh);
2462 return bh->b_private;
2463}
2464
2465/*
2466 * Grab a ref against this buffer_head's journal_head. If it ended up not
2467 * having a journal_head, return NULL
2468 */
f7f4bccb 2469struct journal_head *jbd2_journal_grab_journal_head(struct buffer_head *bh)
470decc6
DK
2470{
2471 struct journal_head *jh = NULL;
2472
2473 jbd_lock_bh_journal_head(bh);
2474 if (buffer_jbd(bh)) {
2475 jh = bh2jh(bh);
2476 jh->b_jcount++;
2477 }
2478 jbd_unlock_bh_journal_head(bh);
2479 return jh;
2480}
2481
2482static void __journal_remove_journal_head(struct buffer_head *bh)
2483{
2484 struct journal_head *jh = bh2jh(bh);
2485
2486 J_ASSERT_JH(jh, jh->b_jcount >= 0);
de1b7941
JK
2487 J_ASSERT_JH(jh, jh->b_transaction == NULL);
2488 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
2489 J_ASSERT_JH(jh, jh->b_cp_transaction == NULL);
2490 J_ASSERT_JH(jh, jh->b_jlist == BJ_None);
2491 J_ASSERT_BH(bh, buffer_jbd(bh));
2492 J_ASSERT_BH(bh, jh2bh(jh) == bh);
2493 BUFFER_TRACE(bh, "remove journal_head");
2494 if (jh->b_frozen_data) {
2495 printk(KERN_WARNING "%s: freeing b_frozen_data\n", __func__);
2496 jbd2_free(jh->b_frozen_data, bh->b_size);
470decc6 2497 }
de1b7941
JK
2498 if (jh->b_committed_data) {
2499 printk(KERN_WARNING "%s: freeing b_committed_data\n", __func__);
2500 jbd2_free(jh->b_committed_data, bh->b_size);
2501 }
2502 bh->b_private = NULL;
2503 jh->b_bh = NULL; /* debug, really */
2504 clear_buffer_jbd(bh);
2505 journal_free_journal_head(jh);
470decc6
DK
2506}
2507
2508/*
de1b7941 2509 * Drop a reference on the passed journal_head. If it fell to zero then
470decc6
DK
2510 * release the journal_head from the buffer_head.
2511 */
f7f4bccb 2512void jbd2_journal_put_journal_head(struct journal_head *jh)
470decc6
DK
2513{
2514 struct buffer_head *bh = jh2bh(jh);
2515
2516 jbd_lock_bh_journal_head(bh);
2517 J_ASSERT_JH(jh, jh->b_jcount > 0);
2518 --jh->b_jcount;
de1b7941 2519 if (!jh->b_jcount) {
470decc6 2520 __journal_remove_journal_head(bh);
de1b7941 2521 jbd_unlock_bh_journal_head(bh);
470decc6 2522 __brelse(bh);
de1b7941
JK
2523 } else
2524 jbd_unlock_bh_journal_head(bh);
470decc6
DK
2525}
2526
c851ed54
JK
2527/*
2528 * Initialize jbd inode head
2529 */
2530void jbd2_journal_init_jbd_inode(struct jbd2_inode *jinode, struct inode *inode)
2531{
2532 jinode->i_transaction = NULL;
2533 jinode->i_next_transaction = NULL;
2534 jinode->i_vfs_inode = inode;
2535 jinode->i_flags = 0;
2536 INIT_LIST_HEAD(&jinode->i_list);
2537}
2538
2539/*
2540 * Function to be called before we start removing inode from memory (i.e.,
2541 * clear_inode() is a fine place to be called from). It removes inode from
2542 * transaction's lists.
2543 */
2544void jbd2_journal_release_jbd_inode(journal_t *journal,
2545 struct jbd2_inode *jinode)
2546{
c851ed54
JK
2547 if (!journal)
2548 return;
2549restart:
2550 spin_lock(&journal->j_list_lock);
2551 /* Is commit writing out inode - we have to wait */
39e3ac25 2552 if (test_bit(__JI_COMMIT_RUNNING, &jinode->i_flags)) {
c851ed54
JK
2553 wait_queue_head_t *wq;
2554 DEFINE_WAIT_BIT(wait, &jinode->i_flags, __JI_COMMIT_RUNNING);
2555 wq = bit_waitqueue(&jinode->i_flags, __JI_COMMIT_RUNNING);
2556 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
2557 spin_unlock(&journal->j_list_lock);
2558 schedule();
2559 finish_wait(wq, &wait.wait);
2560 goto restart;
2561 }
2562
c851ed54
JK
2563 if (jinode->i_transaction) {
2564 list_del(&jinode->i_list);
2565 jinode->i_transaction = NULL;
2566 }
2567 spin_unlock(&journal->j_list_lock);
2568}
2569
470decc6 2570
8e85fb3f
JL
2571#ifdef CONFIG_PROC_FS
2572
2573#define JBD2_STATS_PROC_NAME "fs/jbd2"
2574
2575static void __init jbd2_create_jbd_stats_proc_entry(void)
2576{
2577 proc_jbd2_stats = proc_mkdir(JBD2_STATS_PROC_NAME, NULL);
2578}
2579
2580static void __exit jbd2_remove_jbd_stats_proc_entry(void)
2581{
2582 if (proc_jbd2_stats)
2583 remove_proc_entry(JBD2_STATS_PROC_NAME, NULL);
2584}
2585
2586#else
2587
2588#define jbd2_create_jbd_stats_proc_entry() do {} while (0)
2589#define jbd2_remove_jbd_stats_proc_entry() do {} while (0)
2590
2591#endif
2592
8aefcd55 2593struct kmem_cache *jbd2_handle_cache, *jbd2_inode_cache;
470decc6 2594
4185a2ac 2595static int __init jbd2_journal_init_handle_cache(void)
470decc6 2596{
8aefcd55 2597 jbd2_handle_cache = KMEM_CACHE(jbd2_journal_handle, SLAB_TEMPORARY);
f7f4bccb 2598 if (jbd2_handle_cache == NULL) {
8aefcd55
TT
2599 printk(KERN_EMERG "JBD2: failed to create handle cache\n");
2600 return -ENOMEM;
2601 }
2602 jbd2_inode_cache = KMEM_CACHE(jbd2_inode, 0);
2603 if (jbd2_inode_cache == NULL) {
2604 printk(KERN_EMERG "JBD2: failed to create inode cache\n");
2605 kmem_cache_destroy(jbd2_handle_cache);
470decc6
DK
2606 return -ENOMEM;
2607 }
2608 return 0;
2609}
2610
f7f4bccb 2611static void jbd2_journal_destroy_handle_cache(void)
470decc6 2612{
f7f4bccb
MC
2613 if (jbd2_handle_cache)
2614 kmem_cache_destroy(jbd2_handle_cache);
8aefcd55
TT
2615 if (jbd2_inode_cache)
2616 kmem_cache_destroy(jbd2_inode_cache);
2617
470decc6
DK
2618}
2619
2620/*
2621 * Module startup and shutdown
2622 */
2623
2624static int __init journal_init_caches(void)
2625{
2626 int ret;
2627
f7f4bccb 2628 ret = jbd2_journal_init_revoke_caches();
470decc6 2629 if (ret == 0)
4185a2ac 2630 ret = jbd2_journal_init_journal_head_cache();
470decc6 2631 if (ret == 0)
4185a2ac 2632 ret = jbd2_journal_init_handle_cache();
470decc6 2633 if (ret == 0)
0c2022ec 2634 ret = jbd2_journal_init_transaction_cache();
470decc6
DK
2635 return ret;
2636}
2637
f7f4bccb 2638static void jbd2_journal_destroy_caches(void)
470decc6 2639{
f7f4bccb 2640 jbd2_journal_destroy_revoke_caches();
4185a2ac 2641 jbd2_journal_destroy_journal_head_cache();
f7f4bccb 2642 jbd2_journal_destroy_handle_cache();
0c2022ec 2643 jbd2_journal_destroy_transaction_cache();
d2eecb03 2644 jbd2_journal_destroy_slabs();
470decc6
DK
2645}
2646
2647static int __init journal_init(void)
2648{
2649 int ret;
2650
2651 BUILD_BUG_ON(sizeof(struct journal_superblock_s) != 1024);
2652
2653 ret = journal_init_caches();
620de4e1 2654 if (ret == 0) {
620de4e1
DG
2655 jbd2_create_jbd_stats_proc_entry();
2656 } else {
f7f4bccb 2657 jbd2_journal_destroy_caches();
620de4e1 2658 }
470decc6
DK
2659 return ret;
2660}
2661
2662static void __exit journal_exit(void)
2663{
e23291b9 2664#ifdef CONFIG_JBD2_DEBUG
470decc6
DK
2665 int n = atomic_read(&nr_journal_heads);
2666 if (n)
f2a44523 2667 printk(KERN_EMERG "JBD2: leaked %d journal_heads!\n", n);
470decc6 2668#endif
8e85fb3f 2669 jbd2_remove_jbd_stats_proc_entry();
f7f4bccb 2670 jbd2_journal_destroy_caches();
470decc6
DK
2671}
2672
2673MODULE_LICENSE("GPL");
2674module_init(journal_init);
2675module_exit(journal_exit);
2676