jbd2: fix BH_JWrite setting in checkpointing code
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / jbd2 / transaction.c
CommitLineData
470decc6 1/*
58862699 2 * linux/fs/jbd2/transaction.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 transaction handling code; part of the ext2fs
13 * journaling system.
14 *
15 * This file manages transactions (compound commits managed by the
16 * journaling code) and handles (individual atomic operations by the
17 * filesystem).
18 */
19
20#include <linux/time.h>
21#include <linux/fs.h>
f7f4bccb 22#include <linux/jbd2.h>
470decc6
DK
23#include <linux/errno.h>
24#include <linux/slab.h>
25#include <linux/timer.h>
470decc6
DK
26#include <linux/mm.h>
27#include <linux/highmem.h>
e07f7183 28#include <linux/hrtimer.h>
47def826 29#include <linux/backing-dev.h>
44705754 30#include <linux/bug.h>
47def826 31#include <linux/module.h>
470decc6 32
7ddae860 33static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh);
de1b7941 34static void __jbd2_journal_unfile_buffer(struct journal_head *jh);
7ddae860 35
0c2022ec
YY
36static struct kmem_cache *transaction_cache;
37int __init jbd2_journal_init_transaction_cache(void)
38{
39 J_ASSERT(!transaction_cache);
40 transaction_cache = kmem_cache_create("jbd2_transaction_s",
41 sizeof(transaction_t),
42 0,
43 SLAB_HWCACHE_ALIGN|SLAB_TEMPORARY,
44 NULL);
45 if (transaction_cache)
46 return 0;
47 return -ENOMEM;
48}
49
50void jbd2_journal_destroy_transaction_cache(void)
51{
52 if (transaction_cache) {
53 kmem_cache_destroy(transaction_cache);
54 transaction_cache = NULL;
55 }
56}
57
58void jbd2_journal_free_transaction(transaction_t *transaction)
59{
60 if (unlikely(ZERO_OR_NULL_PTR(transaction)))
61 return;
62 kmem_cache_free(transaction_cache, transaction);
63}
64
470decc6 65/*
f7f4bccb 66 * jbd2_get_transaction: obtain a new transaction_t object.
470decc6
DK
67 *
68 * Simply allocate and initialise a new transaction. Create it in
69 * RUNNING state and add it to the current journal (which should not
70 * have an existing running transaction: we only make a new transaction
71 * once we have started to commit the old one).
72 *
73 * Preconditions:
74 * The journal MUST be locked. We don't perform atomic mallocs on the
75 * new transaction and we can't block without protecting against other
76 * processes trying to touch the journal while it is in transition.
77 *
470decc6
DK
78 */
79
80static transaction_t *
f7f4bccb 81jbd2_get_transaction(journal_t *journal, transaction_t *transaction)
470decc6
DK
82{
83 transaction->t_journal = journal;
84 transaction->t_state = T_RUNNING;
e07f7183 85 transaction->t_start_time = ktime_get();
470decc6
DK
86 transaction->t_tid = journal->j_transaction_sequence++;
87 transaction->t_expires = jiffies + journal->j_commit_interval;
88 spin_lock_init(&transaction->t_handle_lock);
a51dca9c
TT
89 atomic_set(&transaction->t_updates, 0);
90 atomic_set(&transaction->t_outstanding_credits, 0);
8dd42046 91 atomic_set(&transaction->t_handle_count, 0);
c851ed54 92 INIT_LIST_HEAD(&transaction->t_inode_list);
3e624fc7 93 INIT_LIST_HEAD(&transaction->t_private_list);
470decc6
DK
94
95 /* Set up the commit timer for the new transaction. */
b1f485f2 96 journal->j_commit_timer.expires = round_jiffies_up(transaction->t_expires);
470decc6
DK
97 add_timer(&journal->j_commit_timer);
98
99 J_ASSERT(journal->j_running_transaction == NULL);
100 journal->j_running_transaction = transaction;
8e85fb3f
JL
101 transaction->t_max_wait = 0;
102 transaction->t_start = jiffies;
470decc6
DK
103
104 return transaction;
105}
106
107/*
108 * Handle management.
109 *
110 * A handle_t is an object which represents a single atomic update to a
111 * filesystem, and which tracks all of the modifications which form part
112 * of that one update.
113 */
114
6d0bf005 115/*
28e35e42 116 * Update transaction's maximum wait time, if debugging is enabled.
6d0bf005
TT
117 *
118 * In order for t_max_wait to be reliable, it must be protected by a
119 * lock. But doing so will mean that start_this_handle() can not be
120 * run in parallel on SMP systems, which limits our scalability. So
121 * unless debugging is enabled, we no longer update t_max_wait, which
122 * means that maximum wait time reported by the jbd2_run_stats
123 * tracepoint will always be zero.
124 */
28e35e42
TM
125static inline void update_t_max_wait(transaction_t *transaction,
126 unsigned long ts)
6d0bf005
TT
127{
128#ifdef CONFIG_JBD2_DEBUG
6d0bf005
TT
129 if (jbd2_journal_enable_debug &&
130 time_after(transaction->t_start, ts)) {
131 ts = jbd2_time_diff(ts, transaction->t_start);
132 spin_lock(&transaction->t_handle_lock);
133 if (ts > transaction->t_max_wait)
134 transaction->t_max_wait = ts;
135 spin_unlock(&transaction->t_handle_lock);
136 }
137#endif
138}
139
470decc6
DK
140/*
141 * start_this_handle: Given a handle, deal with any locking or stalling
142 * needed to make sure that there is enough journal space for the handle
143 * to begin. Attach the handle to a transaction and set up the
144 * transaction's buffer credits.
145 */
146
47def826 147static int start_this_handle(journal_t *journal, handle_t *handle,
d2159fb7 148 gfp_t gfp_mask)
470decc6 149{
e4471831
TT
150 transaction_t *transaction, *new_transaction = NULL;
151 tid_t tid;
152 int needed, need_to_start;
153 int nblocks = handle->h_buffer_credits;
28e35e42 154 unsigned long ts = jiffies;
470decc6
DK
155
156 if (nblocks > journal->j_max_transaction_buffers) {
f2a44523 157 printk(KERN_ERR "JBD2: %s wants too many credits (%d > %d)\n",
470decc6
DK
158 current->comm, nblocks,
159 journal->j_max_transaction_buffers);
47def826 160 return -ENOSPC;
470decc6
DK
161 }
162
163alloc_transaction:
164 if (!journal->j_running_transaction) {
0c2022ec
YY
165 new_transaction = kmem_cache_alloc(transaction_cache,
166 gfp_mask | __GFP_ZERO);
470decc6 167 if (!new_transaction) {
47def826
TT
168 /*
169 * If __GFP_FS is not present, then we may be
170 * being called from inside the fs writeback
171 * layer, so we MUST NOT fail. Since
172 * __GFP_NOFAIL is going away, we will arrange
173 * to retry the allocation ourselves.
174 */
175 if ((gfp_mask & __GFP_FS) == 0) {
176 congestion_wait(BLK_RW_ASYNC, HZ/50);
177 goto alloc_transaction;
178 }
179 return -ENOMEM;
470decc6 180 }
470decc6
DK
181 }
182
183 jbd_debug(3, "New handle %p going live.\n", handle);
184
470decc6
DK
185 /*
186 * We need to hold j_state_lock until t_updates has been incremented,
187 * for proper journal barrier handling
188 */
a931da6a
TT
189repeat:
190 read_lock(&journal->j_state_lock);
5c2178e7 191 BUG_ON(journal->j_flags & JBD2_UNMOUNT);
470decc6 192 if (is_journal_aborted(journal) ||
f7f4bccb 193 (journal->j_errno != 0 && !(journal->j_flags & JBD2_ACK_ERR))) {
a931da6a 194 read_unlock(&journal->j_state_lock);
0c2022ec 195 jbd2_journal_free_transaction(new_transaction);
47def826 196 return -EROFS;
470decc6
DK
197 }
198
199 /* Wait on the journal's transaction barrier if necessary */
200 if (journal->j_barrier_count) {
a931da6a 201 read_unlock(&journal->j_state_lock);
470decc6
DK
202 wait_event(journal->j_wait_transaction_locked,
203 journal->j_barrier_count == 0);
204 goto repeat;
205 }
206
207 if (!journal->j_running_transaction) {
a931da6a
TT
208 read_unlock(&journal->j_state_lock);
209 if (!new_transaction)
470decc6 210 goto alloc_transaction;
a931da6a
TT
211 write_lock(&journal->j_state_lock);
212 if (!journal->j_running_transaction) {
213 jbd2_get_transaction(journal, new_transaction);
214 new_transaction = NULL;
470decc6 215 }
a931da6a
TT
216 write_unlock(&journal->j_state_lock);
217 goto repeat;
470decc6
DK
218 }
219
220 transaction = journal->j_running_transaction;
221
222 /*
223 * If the current transaction is locked down for commit, wait for the
224 * lock to be released.
225 */
226 if (transaction->t_state == T_LOCKED) {
227 DEFINE_WAIT(wait);
228
229 prepare_to_wait(&journal->j_wait_transaction_locked,
230 &wait, TASK_UNINTERRUPTIBLE);
a931da6a 231 read_unlock(&journal->j_state_lock);
470decc6
DK
232 schedule();
233 finish_wait(&journal->j_wait_transaction_locked, &wait);
234 goto repeat;
235 }
236
237 /*
238 * If there is not enough space left in the log to write all potential
239 * buffers requested by this operation, we need to stall pending a log
240 * checkpoint to free some more log space.
241 */
8dd42046
TT
242 needed = atomic_add_return(nblocks,
243 &transaction->t_outstanding_credits);
470decc6
DK
244
245 if (needed > journal->j_max_transaction_buffers) {
246 /*
247 * If the current transaction is already too large, then start
248 * to commit it: we can then go back and attach this handle to
249 * a new transaction.
250 */
251 DEFINE_WAIT(wait);
252
253 jbd_debug(2, "Handle %p starting new commit...\n", handle);
8dd42046 254 atomic_sub(nblocks, &transaction->t_outstanding_credits);
470decc6
DK
255 prepare_to_wait(&journal->j_wait_transaction_locked, &wait,
256 TASK_UNINTERRUPTIBLE);
e4471831
TT
257 tid = transaction->t_tid;
258 need_to_start = !tid_geq(journal->j_commit_request, tid);
a931da6a 259 read_unlock(&journal->j_state_lock);
e4471831
TT
260 if (need_to_start)
261 jbd2_log_start_commit(journal, tid);
470decc6
DK
262 schedule();
263 finish_wait(&journal->j_wait_transaction_locked, &wait);
264 goto repeat;
265 }
266
267 /*
268 * The commit code assumes that it can get enough log space
269 * without forcing a checkpoint. This is *critical* for
270 * correctness: a checkpoint of a buffer which is also
271 * associated with a committing transaction creates a deadlock,
272 * so commit simply cannot force through checkpoints.
273 *
274 * We must therefore ensure the necessary space in the journal
275 * *before* starting to dirty potentially checkpointed buffers
276 * in the new transaction.
277 *
278 * The worst part is, any transaction currently committing can
279 * reduce the free space arbitrarily. Be careful to account for
280 * those buffers when checkpointing.
281 */
282
283 /*
284 * @@@ AKPM: This seems rather over-defensive. We're giving commit
285 * a _lot_ of headroom: 1/4 of the journal plus the size of
286 * the committing transaction. Really, we only need to give it
287 * committing_transaction->t_outstanding_credits plus "enough" for
288 * the log control blocks.
a34f0b31 289 * Also, this test is inconsistent with the matching one in
f7f4bccb 290 * jbd2_journal_extend().
470decc6 291 */
f7f4bccb 292 if (__jbd2_log_space_left(journal) < jbd_space_needed(journal)) {
470decc6 293 jbd_debug(2, "Handle %p waiting for checkpoint...\n", handle);
8dd42046 294 atomic_sub(nblocks, &transaction->t_outstanding_credits);
a931da6a
TT
295 read_unlock(&journal->j_state_lock);
296 write_lock(&journal->j_state_lock);
297 if (__jbd2_log_space_left(journal) < jbd_space_needed(journal))
298 __jbd2_log_wait_for_space(journal);
299 write_unlock(&journal->j_state_lock);
300 goto repeat;
470decc6
DK
301 }
302
303 /* OK, account for the buffers that this operation expects to
8dd42046 304 * use and add the handle to the running transaction.
8dd42046 305 */
28e35e42 306 update_t_max_wait(transaction, ts);
470decc6 307 handle->h_transaction = transaction;
a51dca9c 308 atomic_inc(&transaction->t_updates);
8dd42046 309 atomic_inc(&transaction->t_handle_count);
470decc6 310 jbd_debug(4, "Handle %p given %d credits (total %d, free %d)\n",
a51dca9c
TT
311 handle, nblocks,
312 atomic_read(&transaction->t_outstanding_credits),
f7f4bccb 313 __jbd2_log_space_left(journal));
a931da6a 314 read_unlock(&journal->j_state_lock);
9599b0e5
JK
315
316 lock_map_acquire(&handle->h_lockdep_map);
0c2022ec 317 jbd2_journal_free_transaction(new_transaction);
47def826 318 return 0;
470decc6
DK
319}
320
7b751066
MC
321static struct lock_class_key jbd2_handle_key;
322
470decc6
DK
323/* Allocate a new handle. This should probably be in a slab... */
324static handle_t *new_handle(int nblocks)
325{
af1e76d6 326 handle_t *handle = jbd2_alloc_handle(GFP_NOFS);
470decc6
DK
327 if (!handle)
328 return NULL;
329 memset(handle, 0, sizeof(*handle));
330 handle->h_buffer_credits = nblocks;
331 handle->h_ref = 1;
332
7b751066
MC
333 lockdep_init_map(&handle->h_lockdep_map, "jbd2_handle",
334 &jbd2_handle_key, 0);
335
470decc6
DK
336 return handle;
337}
338
339/**
f7f4bccb 340 * handle_t *jbd2_journal_start() - Obtain a new handle.
470decc6
DK
341 * @journal: Journal to start transaction on.
342 * @nblocks: number of block buffer we might modify
343 *
344 * We make sure that the transaction can guarantee at least nblocks of
345 * modified buffers in the log. We block until the log can guarantee
346 * that much space.
347 *
348 * This function is visible to journal users (like ext3fs), so is not
349 * called with the journal already locked.
350 *
c867516d
EG
351 * Return a pointer to a newly allocated handle, or an ERR_PTR() value
352 * on failure.
470decc6 353 */
d2159fb7 354handle_t *jbd2__journal_start(journal_t *journal, int nblocks, gfp_t gfp_mask)
470decc6
DK
355{
356 handle_t *handle = journal_current_handle();
357 int err;
358
359 if (!journal)
360 return ERR_PTR(-EROFS);
361
362 if (handle) {
363 J_ASSERT(handle->h_transaction->t_journal == journal);
364 handle->h_ref++;
365 return handle;
366 }
367
368 handle = new_handle(nblocks);
369 if (!handle)
370 return ERR_PTR(-ENOMEM);
371
372 current->journal_info = handle;
373
47def826 374 err = start_this_handle(journal, handle, gfp_mask);
470decc6 375 if (err < 0) {
af1e76d6 376 jbd2_free_handle(handle);
470decc6
DK
377 current->journal_info = NULL;
378 handle = ERR_PTR(err);
379 }
380 return handle;
381}
47def826
TT
382EXPORT_SYMBOL(jbd2__journal_start);
383
384
385handle_t *jbd2_journal_start(journal_t *journal, int nblocks)
386{
387 return jbd2__journal_start(journal, nblocks, GFP_NOFS);
388}
389EXPORT_SYMBOL(jbd2_journal_start);
390
470decc6
DK
391
392/**
f7f4bccb 393 * int jbd2_journal_extend() - extend buffer credits.
470decc6
DK
394 * @handle: handle to 'extend'
395 * @nblocks: nr blocks to try to extend by.
396 *
397 * Some transactions, such as large extends and truncates, can be done
398 * atomically all at once or in several stages. The operation requests
399 * a credit for a number of buffer modications in advance, but can
400 * extend its credit if it needs more.
401 *
f7f4bccb 402 * jbd2_journal_extend tries to give the running handle more buffer credits.
470decc6
DK
403 * It does not guarantee that allocation - this is a best-effort only.
404 * The calling process MUST be able to deal cleanly with a failure to
405 * extend here.
406 *
407 * Return 0 on success, non-zero on failure.
408 *
409 * return code < 0 implies an error
410 * return code > 0 implies normal transaction-full status.
411 */
f7f4bccb 412int jbd2_journal_extend(handle_t *handle, int nblocks)
470decc6
DK
413{
414 transaction_t *transaction = handle->h_transaction;
415 journal_t *journal = transaction->t_journal;
416 int result;
417 int wanted;
418
419 result = -EIO;
420 if (is_handle_aborted(handle))
421 goto out;
422
423 result = 1;
424
a931da6a 425 read_lock(&journal->j_state_lock);
470decc6
DK
426
427 /* Don't extend a locked-down transaction! */
428 if (handle->h_transaction->t_state != T_RUNNING) {
429 jbd_debug(3, "denied handle %p %d blocks: "
430 "transaction not running\n", handle, nblocks);
431 goto error_out;
432 }
433
434 spin_lock(&transaction->t_handle_lock);
a51dca9c 435 wanted = atomic_read(&transaction->t_outstanding_credits) + nblocks;
470decc6
DK
436
437 if (wanted > journal->j_max_transaction_buffers) {
438 jbd_debug(3, "denied handle %p %d blocks: "
439 "transaction too large\n", handle, nblocks);
440 goto unlock;
441 }
442
f7f4bccb 443 if (wanted > __jbd2_log_space_left(journal)) {
470decc6
DK
444 jbd_debug(3, "denied handle %p %d blocks: "
445 "insufficient log space\n", handle, nblocks);
446 goto unlock;
447 }
448
449 handle->h_buffer_credits += nblocks;
a51dca9c 450 atomic_add(nblocks, &transaction->t_outstanding_credits);
470decc6
DK
451 result = 0;
452
453 jbd_debug(3, "extended handle %p by %d\n", handle, nblocks);
454unlock:
455 spin_unlock(&transaction->t_handle_lock);
456error_out:
a931da6a 457 read_unlock(&journal->j_state_lock);
470decc6
DK
458out:
459 return result;
460}
461
462
463/**
f7f4bccb 464 * int jbd2_journal_restart() - restart a handle .
470decc6
DK
465 * @handle: handle to restart
466 * @nblocks: nr credits requested
467 *
468 * Restart a handle for a multi-transaction filesystem
469 * operation.
470 *
f7f4bccb
MC
471 * If the jbd2_journal_extend() call above fails to grant new buffer credits
472 * to a running handle, a call to jbd2_journal_restart will commit the
470decc6
DK
473 * handle's transaction so far and reattach the handle to a new
474 * transaction capabable of guaranteeing the requested number of
475 * credits.
476 */
d2159fb7 477int jbd2__journal_restart(handle_t *handle, int nblocks, gfp_t gfp_mask)
470decc6
DK
478{
479 transaction_t *transaction = handle->h_transaction;
480 journal_t *journal = transaction->t_journal;
e4471831
TT
481 tid_t tid;
482 int need_to_start, ret;
470decc6
DK
483
484 /* If we've had an abort of any type, don't even think about
485 * actually doing the restart! */
486 if (is_handle_aborted(handle))
487 return 0;
488
489 /*
490 * First unlink the handle from its current transaction, and start the
491 * commit on that.
492 */
a51dca9c 493 J_ASSERT(atomic_read(&transaction->t_updates) > 0);
470decc6
DK
494 J_ASSERT(journal_current_handle() == handle);
495
a931da6a 496 read_lock(&journal->j_state_lock);
470decc6 497 spin_lock(&transaction->t_handle_lock);
a51dca9c
TT
498 atomic_sub(handle->h_buffer_credits,
499 &transaction->t_outstanding_credits);
500 if (atomic_dec_and_test(&transaction->t_updates))
470decc6
DK
501 wake_up(&journal->j_wait_updates);
502 spin_unlock(&transaction->t_handle_lock);
503
504 jbd_debug(2, "restarting handle %p\n", handle);
e4471831
TT
505 tid = transaction->t_tid;
506 need_to_start = !tid_geq(journal->j_commit_request, tid);
a931da6a 507 read_unlock(&journal->j_state_lock);
e4471831
TT
508 if (need_to_start)
509 jbd2_log_start_commit(journal, tid);
470decc6 510
9599b0e5 511 lock_map_release(&handle->h_lockdep_map);
470decc6 512 handle->h_buffer_credits = nblocks;
47def826 513 ret = start_this_handle(journal, handle, gfp_mask);
470decc6
DK
514 return ret;
515}
47def826 516EXPORT_SYMBOL(jbd2__journal_restart);
470decc6
DK
517
518
47def826
TT
519int jbd2_journal_restart(handle_t *handle, int nblocks)
520{
521 return jbd2__journal_restart(handle, nblocks, GFP_NOFS);
522}
523EXPORT_SYMBOL(jbd2_journal_restart);
524
470decc6 525/**
f7f4bccb 526 * void jbd2_journal_lock_updates () - establish a transaction barrier.
470decc6
DK
527 * @journal: Journal to establish a barrier on.
528 *
529 * This locks out any further updates from being started, and blocks
530 * until all existing updates have completed, returning only once the
531 * journal is in a quiescent state with no updates running.
532 *
533 * The journal lock should not be held on entry.
534 */
f7f4bccb 535void jbd2_journal_lock_updates(journal_t *journal)
470decc6
DK
536{
537 DEFINE_WAIT(wait);
538
a931da6a 539 write_lock(&journal->j_state_lock);
470decc6
DK
540 ++journal->j_barrier_count;
541
542 /* Wait until there are no running updates */
543 while (1) {
544 transaction_t *transaction = journal->j_running_transaction;
545
546 if (!transaction)
547 break;
548
549 spin_lock(&transaction->t_handle_lock);
9837d8e9
JK
550 prepare_to_wait(&journal->j_wait_updates, &wait,
551 TASK_UNINTERRUPTIBLE);
a51dca9c 552 if (!atomic_read(&transaction->t_updates)) {
470decc6 553 spin_unlock(&transaction->t_handle_lock);
9837d8e9 554 finish_wait(&journal->j_wait_updates, &wait);
470decc6
DK
555 break;
556 }
470decc6 557 spin_unlock(&transaction->t_handle_lock);
a931da6a 558 write_unlock(&journal->j_state_lock);
470decc6
DK
559 schedule();
560 finish_wait(&journal->j_wait_updates, &wait);
a931da6a 561 write_lock(&journal->j_state_lock);
470decc6 562 }
a931da6a 563 write_unlock(&journal->j_state_lock);
470decc6
DK
564
565 /*
566 * We have now established a barrier against other normal updates, but
f7f4bccb 567 * we also need to barrier against other jbd2_journal_lock_updates() calls
470decc6
DK
568 * to make sure that we serialise special journal-locked operations
569 * too.
570 */
571 mutex_lock(&journal->j_barrier);
572}
573
574/**
f7f4bccb 575 * void jbd2_journal_unlock_updates (journal_t* journal) - release barrier
470decc6
DK
576 * @journal: Journal to release the barrier on.
577 *
f7f4bccb 578 * Release a transaction barrier obtained with jbd2_journal_lock_updates().
470decc6
DK
579 *
580 * Should be called without the journal lock held.
581 */
f7f4bccb 582void jbd2_journal_unlock_updates (journal_t *journal)
470decc6
DK
583{
584 J_ASSERT(journal->j_barrier_count != 0);
585
586 mutex_unlock(&journal->j_barrier);
a931da6a 587 write_lock(&journal->j_state_lock);
470decc6 588 --journal->j_barrier_count;
a931da6a 589 write_unlock(&journal->j_state_lock);
470decc6
DK
590 wake_up(&journal->j_wait_transaction_locked);
591}
592
f91d1d04 593static void warn_dirty_buffer(struct buffer_head *bh)
470decc6 594{
f91d1d04 595 char b[BDEVNAME_SIZE];
470decc6 596
f91d1d04 597 printk(KERN_WARNING
f2a44523 598 "JBD2: Spotted dirty metadata buffer (dev = %s, blocknr = %llu). "
f91d1d04
JK
599 "There's a risk of filesystem corruption in case of system "
600 "crash.\n",
601 bdevname(bh->b_bdev, b), (unsigned long long)bh->b_blocknr);
470decc6
DK
602}
603
604/*
605 * If the buffer is already part of the current transaction, then there
606 * is nothing we need to do. If it is already part of a prior
607 * transaction which we are still committing to disk, then we need to
608 * make sure that we do not overwrite the old copy: we do copy-out to
609 * preserve the copy going to disk. We also account the buffer against
610 * the handle's metadata buffer credits (unless the buffer is already
611 * part of the transaction, that is).
612 *
613 */
614static int
615do_get_write_access(handle_t *handle, struct journal_head *jh,
616 int force_copy)
617{
618 struct buffer_head *bh;
619 transaction_t *transaction;
620 journal_t *journal;
621 int error;
622 char *frozen_buffer = NULL;
623 int need_copy = 0;
624
625 if (is_handle_aborted(handle))
626 return -EROFS;
627
628 transaction = handle->h_transaction;
629 journal = transaction->t_journal;
630
cfef2c6a 631 jbd_debug(5, "journal_head %p, force_copy %d\n", jh, force_copy);
470decc6
DK
632
633 JBUFFER_TRACE(jh, "entry");
634repeat:
635 bh = jh2bh(jh);
636
637 /* @@@ Need to check for errors here at some point. */
638
639 lock_buffer(bh);
640 jbd_lock_bh_state(bh);
641
642 /* We now hold the buffer lock so it is safe to query the buffer
643 * state. Is the buffer dirty?
644 *
645 * If so, there are two possibilities. The buffer may be
646 * non-journaled, and undergoing a quite legitimate writeback.
647 * Otherwise, it is journaled, and we don't expect dirty buffers
648 * in that state (the buffers should be marked JBD_Dirty
649 * instead.) So either the IO is being done under our own
650 * control and this is a bug, or it's a third party IO such as
651 * dump(8) (which may leave the buffer scheduled for read ---
652 * ie. locked but not dirty) or tune2fs (which may actually have
653 * the buffer dirtied, ugh.) */
654
655 if (buffer_dirty(bh)) {
656 /*
657 * First question: is this buffer already part of the current
658 * transaction or the existing committing transaction?
659 */
660 if (jh->b_transaction) {
661 J_ASSERT_JH(jh,
662 jh->b_transaction == transaction ||
663 jh->b_transaction ==
664 journal->j_committing_transaction);
665 if (jh->b_next_transaction)
666 J_ASSERT_JH(jh, jh->b_next_transaction ==
667 transaction);
f91d1d04 668 warn_dirty_buffer(bh);
470decc6
DK
669 }
670 /*
671 * In any case we need to clean the dirty flag and we must
672 * do it under the buffer lock to be sure we don't race
673 * with running write-out.
674 */
f91d1d04
JK
675 JBUFFER_TRACE(jh, "Journalling dirty buffer");
676 clear_buffer_dirty(bh);
677 set_buffer_jbddirty(bh);
470decc6
DK
678 }
679
680 unlock_buffer(bh);
681
682 error = -EROFS;
683 if (is_handle_aborted(handle)) {
684 jbd_unlock_bh_state(bh);
685 goto out;
686 }
687 error = 0;
688
689 /*
690 * The buffer is already part of this transaction if b_transaction or
691 * b_next_transaction points to it
692 */
693 if (jh->b_transaction == transaction ||
694 jh->b_next_transaction == transaction)
695 goto done;
696
9fc7c63a
JB
697 /*
698 * this is the first time this transaction is touching this buffer,
699 * reset the modified flag
700 */
701 jh->b_modified = 0;
702
470decc6
DK
703 /*
704 * If there is already a copy-out version of this buffer, then we don't
705 * need to make another one
706 */
707 if (jh->b_frozen_data) {
708 JBUFFER_TRACE(jh, "has frozen data");
709 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
710 jh->b_next_transaction = transaction;
711 goto done;
712 }
713
714 /* Is there data here we need to preserve? */
715
716 if (jh->b_transaction && jh->b_transaction != transaction) {
717 JBUFFER_TRACE(jh, "owned by older transaction");
718 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
719 J_ASSERT_JH(jh, jh->b_transaction ==
720 journal->j_committing_transaction);
721
722 /* There is one case we have to be very careful about.
723 * If the committing transaction is currently writing
724 * this buffer out to disk and has NOT made a copy-out,
725 * then we cannot modify the buffer contents at all
726 * right now. The essence of copy-out is that it is the
727 * extra copy, not the primary copy, which gets
728 * journaled. If the primary copy is already going to
729 * disk then we cannot do copy-out here. */
730
731 if (jh->b_jlist == BJ_Shadow) {
732 DEFINE_WAIT_BIT(wait, &bh->b_state, BH_Unshadow);
733 wait_queue_head_t *wqh;
734
735 wqh = bit_waitqueue(&bh->b_state, BH_Unshadow);
736
737 JBUFFER_TRACE(jh, "on shadow: sleep");
738 jbd_unlock_bh_state(bh);
739 /* commit wakes up all shadow buffers after IO */
740 for ( ; ; ) {
741 prepare_to_wait(wqh, &wait.wait,
742 TASK_UNINTERRUPTIBLE);
743 if (jh->b_jlist != BJ_Shadow)
744 break;
745 schedule();
746 }
747 finish_wait(wqh, &wait.wait);
748 goto repeat;
749 }
750
751 /* Only do the copy if the currently-owning transaction
752 * still needs it. If it is on the Forget list, the
753 * committing transaction is past that stage. The
754 * buffer had better remain locked during the kmalloc,
755 * but that should be true --- we hold the journal lock
756 * still and the buffer is already on the BUF_JOURNAL
757 * list so won't be flushed.
758 *
759 * Subtle point, though: if this is a get_undo_access,
760 * then we will be relying on the frozen_data to contain
761 * the new value of the committed_data record after the
762 * transaction, so we HAVE to force the frozen_data copy
763 * in that case. */
764
765 if (jh->b_jlist != BJ_Forget || force_copy) {
766 JBUFFER_TRACE(jh, "generate frozen data");
767 if (!frozen_buffer) {
768 JBUFFER_TRACE(jh, "allocate memory for buffer");
769 jbd_unlock_bh_state(bh);
770 frozen_buffer =
af1e76d6 771 jbd2_alloc(jh2bh(jh)->b_size,
470decc6
DK
772 GFP_NOFS);
773 if (!frozen_buffer) {
774 printk(KERN_EMERG
775 "%s: OOM for frozen_buffer\n",
329d291f 776 __func__);
470decc6
DK
777 JBUFFER_TRACE(jh, "oom!");
778 error = -ENOMEM;
779 jbd_lock_bh_state(bh);
780 goto done;
781 }
782 goto repeat;
783 }
784 jh->b_frozen_data = frozen_buffer;
785 frozen_buffer = NULL;
786 need_copy = 1;
787 }
788 jh->b_next_transaction = transaction;
789 }
790
791
792 /*
793 * Finally, if the buffer is not journaled right now, we need to make
794 * sure it doesn't get written to disk before the caller actually
795 * commits the new data
796 */
797 if (!jh->b_transaction) {
798 JBUFFER_TRACE(jh, "no transaction");
799 J_ASSERT_JH(jh, !jh->b_next_transaction);
470decc6
DK
800 JBUFFER_TRACE(jh, "file as BJ_Reserved");
801 spin_lock(&journal->j_list_lock);
f7f4bccb 802 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
470decc6
DK
803 spin_unlock(&journal->j_list_lock);
804 }
805
806done:
807 if (need_copy) {
808 struct page *page;
809 int offset;
810 char *source;
811
812 J_EXPECT_JH(jh, buffer_uptodate(jh2bh(jh)),
813 "Possible IO failure.\n");
814 page = jh2bh(jh)->b_page;
a1dd5331 815 offset = offset_in_page(jh2bh(jh)->b_data);
470decc6 816 source = kmap_atomic(page, KM_USER0);
13ceef09
JK
817 /* Fire data frozen trigger just before we copy the data */
818 jbd2_buffer_frozen_trigger(jh, source + offset,
819 jh->b_triggers);
470decc6
DK
820 memcpy(jh->b_frozen_data, source+offset, jh2bh(jh)->b_size);
821 kunmap_atomic(source, KM_USER0);
e06c8227
JB
822
823 /*
824 * Now that the frozen data is saved off, we need to store
825 * any matching triggers.
826 */
827 jh->b_frozen_triggers = jh->b_triggers;
470decc6
DK
828 }
829 jbd_unlock_bh_state(bh);
830
831 /*
832 * If we are about to journal a buffer, then any revoke pending on it is
833 * no longer valid
834 */
f7f4bccb 835 jbd2_journal_cancel_revoke(handle, jh);
470decc6
DK
836
837out:
838 if (unlikely(frozen_buffer)) /* It's usually NULL */
af1e76d6 839 jbd2_free(frozen_buffer, bh->b_size);
470decc6
DK
840
841 JBUFFER_TRACE(jh, "exit");
842 return error;
843}
844
845/**
f7f4bccb 846 * int jbd2_journal_get_write_access() - notify intent to modify a buffer for metadata (not data) update.
470decc6
DK
847 * @handle: transaction to add buffer modifications to
848 * @bh: bh to be used for metadata writes
470decc6
DK
849 *
850 * Returns an error code or 0 on success.
851 *
852 * In full data journalling mode the buffer may be of type BJ_AsyncData,
853 * because we're write()ing a buffer which is also part of a shared mapping.
854 */
855
f7f4bccb 856int jbd2_journal_get_write_access(handle_t *handle, struct buffer_head *bh)
470decc6 857{
f7f4bccb 858 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
470decc6
DK
859 int rc;
860
861 /* We do not want to get caught playing with fields which the
862 * log thread also manipulates. Make sure that the buffer
863 * completes any outstanding IO before proceeding. */
864 rc = do_get_write_access(handle, jh, 0);
f7f4bccb 865 jbd2_journal_put_journal_head(jh);
470decc6
DK
866 return rc;
867}
868
869
870/*
871 * When the user wants to journal a newly created buffer_head
872 * (ie. getblk() returned a new buffer and we are going to populate it
873 * manually rather than reading off disk), then we need to keep the
874 * buffer_head locked until it has been completely filled with new
875 * data. In this case, we should be able to make the assertion that
876 * the bh is not already part of an existing transaction.
877 *
878 * The buffer should already be locked by the caller by this point.
879 * There is no lock ranking violation: it was a newly created,
880 * unlocked buffer beforehand. */
881
882/**
f7f4bccb 883 * int jbd2_journal_get_create_access () - notify intent to use newly created bh
470decc6
DK
884 * @handle: transaction to new buffer to
885 * @bh: new buffer.
886 *
887 * Call this if you create a new bh.
888 */
f7f4bccb 889int jbd2_journal_get_create_access(handle_t *handle, struct buffer_head *bh)
470decc6
DK
890{
891 transaction_t *transaction = handle->h_transaction;
892 journal_t *journal = transaction->t_journal;
f7f4bccb 893 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
470decc6
DK
894 int err;
895
896 jbd_debug(5, "journal_head %p\n", jh);
897 err = -EROFS;
898 if (is_handle_aborted(handle))
899 goto out;
900 err = 0;
901
902 JBUFFER_TRACE(jh, "entry");
903 /*
904 * The buffer may already belong to this transaction due to pre-zeroing
905 * in the filesystem's new_block code. It may also be on the previous,
906 * committing transaction's lists, but it HAS to be in Forget state in
907 * that case: the transaction must have deleted the buffer for it to be
908 * reused here.
909 */
910 jbd_lock_bh_state(bh);
911 spin_lock(&journal->j_list_lock);
912 J_ASSERT_JH(jh, (jh->b_transaction == transaction ||
913 jh->b_transaction == NULL ||
914 (jh->b_transaction == journal->j_committing_transaction &&
915 jh->b_jlist == BJ_Forget)));
916
917 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
918 J_ASSERT_JH(jh, buffer_locked(jh2bh(jh)));
919
920 if (jh->b_transaction == NULL) {
f91d1d04
JK
921 /*
922 * Previous jbd2_journal_forget() could have left the buffer
923 * with jbddirty bit set because it was being committed. When
924 * the commit finished, we've filed the buffer for
925 * checkpointing and marked it dirty. Now we are reallocating
926 * the buffer so the transaction freeing it must have
927 * committed and so it's safe to clear the dirty bit.
928 */
929 clear_buffer_dirty(jh2bh(jh));
9fc7c63a
JB
930 /* first access by this transaction */
931 jh->b_modified = 0;
932
470decc6 933 JBUFFER_TRACE(jh, "file as BJ_Reserved");
f7f4bccb 934 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
470decc6 935 } else if (jh->b_transaction == journal->j_committing_transaction) {
9fc7c63a
JB
936 /* first access by this transaction */
937 jh->b_modified = 0;
938
470decc6
DK
939 JBUFFER_TRACE(jh, "set next transaction");
940 jh->b_next_transaction = transaction;
941 }
942 spin_unlock(&journal->j_list_lock);
943 jbd_unlock_bh_state(bh);
944
945 /*
946 * akpm: I added this. ext3_alloc_branch can pick up new indirect
947 * blocks which contain freed but then revoked metadata. We need
948 * to cancel the revoke in case we end up freeing it yet again
949 * and the reallocating as data - this would cause a second revoke,
950 * which hits an assertion error.
951 */
952 JBUFFER_TRACE(jh, "cancelling revoke");
f7f4bccb 953 jbd2_journal_cancel_revoke(handle, jh);
470decc6 954out:
3991b400 955 jbd2_journal_put_journal_head(jh);
470decc6
DK
956 return err;
957}
958
959/**
f7f4bccb 960 * int jbd2_journal_get_undo_access() - Notify intent to modify metadata with
470decc6
DK
961 * non-rewindable consequences
962 * @handle: transaction
963 * @bh: buffer to undo
470decc6
DK
964 *
965 * Sometimes there is a need to distinguish between metadata which has
966 * been committed to disk and that which has not. The ext3fs code uses
967 * this for freeing and allocating space, we have to make sure that we
968 * do not reuse freed space until the deallocation has been committed,
969 * since if we overwrote that space we would make the delete
970 * un-rewindable in case of a crash.
971 *
f7f4bccb 972 * To deal with that, jbd2_journal_get_undo_access requests write access to a
470decc6
DK
973 * buffer for parts of non-rewindable operations such as delete
974 * operations on the bitmaps. The journaling code must keep a copy of
975 * the buffer's contents prior to the undo_access call until such time
976 * as we know that the buffer has definitely been committed to disk.
977 *
978 * We never need to know which transaction the committed data is part
979 * of, buffers touched here are guaranteed to be dirtied later and so
980 * will be committed to a new transaction in due course, at which point
981 * we can discard the old committed data pointer.
982 *
983 * Returns error number or 0 on success.
984 */
f7f4bccb 985int jbd2_journal_get_undo_access(handle_t *handle, struct buffer_head *bh)
470decc6
DK
986{
987 int err;
f7f4bccb 988 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
470decc6
DK
989 char *committed_data = NULL;
990
991 JBUFFER_TRACE(jh, "entry");
992
993 /*
994 * Do this first --- it can drop the journal lock, so we want to
995 * make sure that obtaining the committed_data is done
996 * atomically wrt. completion of any outstanding commits.
997 */
998 err = do_get_write_access(handle, jh, 1);
999 if (err)
1000 goto out;
1001
1002repeat:
1003 if (!jh->b_committed_data) {
af1e76d6 1004 committed_data = jbd2_alloc(jh2bh(jh)->b_size, GFP_NOFS);
470decc6
DK
1005 if (!committed_data) {
1006 printk(KERN_EMERG "%s: No memory for committed data\n",
329d291f 1007 __func__);
470decc6
DK
1008 err = -ENOMEM;
1009 goto out;
1010 }
1011 }
1012
1013 jbd_lock_bh_state(bh);
1014 if (!jh->b_committed_data) {
1015 /* Copy out the current buffer contents into the
1016 * preserved, committed copy. */
1017 JBUFFER_TRACE(jh, "generate b_committed data");
1018 if (!committed_data) {
1019 jbd_unlock_bh_state(bh);
1020 goto repeat;
1021 }
1022
1023 jh->b_committed_data = committed_data;
1024 committed_data = NULL;
1025 memcpy(jh->b_committed_data, bh->b_data, bh->b_size);
1026 }
1027 jbd_unlock_bh_state(bh);
1028out:
f7f4bccb 1029 jbd2_journal_put_journal_head(jh);
470decc6 1030 if (unlikely(committed_data))
af1e76d6 1031 jbd2_free(committed_data, bh->b_size);
470decc6
DK
1032 return err;
1033}
1034
e06c8227
JB
1035/**
1036 * void jbd2_journal_set_triggers() - Add triggers for commit writeout
1037 * @bh: buffer to trigger on
1038 * @type: struct jbd2_buffer_trigger_type containing the trigger(s).
1039 *
1040 * Set any triggers on this journal_head. This is always safe, because
1041 * triggers for a committing buffer will be saved off, and triggers for
1042 * a running transaction will match the buffer in that transaction.
1043 *
1044 * Call with NULL to clear the triggers.
1045 */
1046void jbd2_journal_set_triggers(struct buffer_head *bh,
1047 struct jbd2_buffer_trigger_type *type)
1048{
1049 struct journal_head *jh = bh2jh(bh);
1050
1051 jh->b_triggers = type;
1052}
1053
13ceef09 1054void jbd2_buffer_frozen_trigger(struct journal_head *jh, void *mapped_data,
e06c8227
JB
1055 struct jbd2_buffer_trigger_type *triggers)
1056{
1057 struct buffer_head *bh = jh2bh(jh);
1058
13ceef09 1059 if (!triggers || !triggers->t_frozen)
e06c8227
JB
1060 return;
1061
13ceef09 1062 triggers->t_frozen(triggers, bh, mapped_data, bh->b_size);
e06c8227
JB
1063}
1064
1065void jbd2_buffer_abort_trigger(struct journal_head *jh,
1066 struct jbd2_buffer_trigger_type *triggers)
1067{
1068 if (!triggers || !triggers->t_abort)
1069 return;
1070
1071 triggers->t_abort(triggers, jh2bh(jh));
1072}
1073
1074
1075
470decc6 1076/**
f7f4bccb 1077 * int jbd2_journal_dirty_metadata() - mark a buffer as containing dirty metadata
470decc6
DK
1078 * @handle: transaction to add buffer to.
1079 * @bh: buffer to mark
1080 *
1081 * mark dirty metadata which needs to be journaled as part of the current
1082 * transaction.
1083 *
9ea7a0df
TT
1084 * The buffer must have previously had jbd2_journal_get_write_access()
1085 * called so that it has a valid journal_head attached to the buffer
1086 * head.
1087 *
470decc6
DK
1088 * The buffer is placed on the transaction's metadata list and is marked
1089 * as belonging to the transaction.
1090 *
1091 * Returns error number or 0 on success.
1092 *
1093 * Special care needs to be taken if the buffer already belongs to the
1094 * current committing transaction (in which case we should have frozen
1095 * data present for that commit). In that case, we don't relink the
1096 * buffer: that only gets done when the old transaction finally
1097 * completes its commit.
1098 */
f7f4bccb 1099int jbd2_journal_dirty_metadata(handle_t *handle, struct buffer_head *bh)
470decc6
DK
1100{
1101 transaction_t *transaction = handle->h_transaction;
1102 journal_t *journal = transaction->t_journal;
1103 struct journal_head *jh = bh2jh(bh);
9ea7a0df 1104 int ret = 0;
470decc6
DK
1105
1106 jbd_debug(5, "journal_head %p\n", jh);
1107 JBUFFER_TRACE(jh, "entry");
1108 if (is_handle_aborted(handle))
1109 goto out;
9ea7a0df
TT
1110 if (!buffer_jbd(bh)) {
1111 ret = -EUCLEAN;
1112 goto out;
1113 }
470decc6
DK
1114
1115 jbd_lock_bh_state(bh);
1116
1117 if (jh->b_modified == 0) {
1118 /*
1119 * This buffer's got modified and becoming part
1120 * of the transaction. This needs to be done
1121 * once a transaction -bzzz
1122 */
1123 jh->b_modified = 1;
1124 J_ASSERT_JH(jh, handle->h_buffer_credits > 0);
1125 handle->h_buffer_credits--;
1126 }
1127
1128 /*
1129 * fastpath, to avoid expensive locking. If this buffer is already
1130 * on the running transaction's metadata list there is nothing to do.
1131 * Nobody can take it off again because there is a handle open.
1132 * I _think_ we're OK here with SMP barriers - a mistaken decision will
1133 * result in this test being false, so we go in and take the locks.
1134 */
1135 if (jh->b_transaction == transaction && jh->b_jlist == BJ_Metadata) {
1136 JBUFFER_TRACE(jh, "fastpath");
9ea7a0df
TT
1137 if (unlikely(jh->b_transaction !=
1138 journal->j_running_transaction)) {
1139 printk(KERN_EMERG "JBD: %s: "
1140 "jh->b_transaction (%llu, %p, %u) != "
1141 "journal->j_running_transaction (%p, %u)",
1142 journal->j_devname,
1143 (unsigned long long) bh->b_blocknr,
1144 jh->b_transaction,
1145 jh->b_transaction ? jh->b_transaction->t_tid : 0,
1146 journal->j_running_transaction,
1147 journal->j_running_transaction ?
1148 journal->j_running_transaction->t_tid : 0);
1149 ret = -EINVAL;
1150 }
470decc6
DK
1151 goto out_unlock_bh;
1152 }
1153
1154 set_buffer_jbddirty(bh);
1155
1156 /*
1157 * Metadata already on the current transaction list doesn't
1158 * need to be filed. Metadata on another transaction's list must
1159 * be committing, and will be refiled once the commit completes:
1160 * leave it alone for now.
1161 */
1162 if (jh->b_transaction != transaction) {
1163 JBUFFER_TRACE(jh, "already on other transaction");
9ea7a0df
TT
1164 if (unlikely(jh->b_transaction !=
1165 journal->j_committing_transaction)) {
1166 printk(KERN_EMERG "JBD: %s: "
1167 "jh->b_transaction (%llu, %p, %u) != "
1168 "journal->j_committing_transaction (%p, %u)",
1169 journal->j_devname,
1170 (unsigned long long) bh->b_blocknr,
1171 jh->b_transaction,
1172 jh->b_transaction ? jh->b_transaction->t_tid : 0,
1173 journal->j_committing_transaction,
1174 journal->j_committing_transaction ?
1175 journal->j_committing_transaction->t_tid : 0);
1176 ret = -EINVAL;
1177 }
1178 if (unlikely(jh->b_next_transaction != transaction)) {
1179 printk(KERN_EMERG "JBD: %s: "
1180 "jh->b_next_transaction (%llu, %p, %u) != "
1181 "transaction (%p, %u)",
1182 journal->j_devname,
1183 (unsigned long long) bh->b_blocknr,
1184 jh->b_next_transaction,
1185 jh->b_next_transaction ?
1186 jh->b_next_transaction->t_tid : 0,
1187 transaction, transaction->t_tid);
1188 ret = -EINVAL;
1189 }
470decc6
DK
1190 /* And this case is illegal: we can't reuse another
1191 * transaction's data buffer, ever. */
1192 goto out_unlock_bh;
1193 }
1194
1195 /* That test should have eliminated the following case: */
4019191b 1196 J_ASSERT_JH(jh, jh->b_frozen_data == NULL);
470decc6
DK
1197
1198 JBUFFER_TRACE(jh, "file as BJ_Metadata");
1199 spin_lock(&journal->j_list_lock);
f7f4bccb 1200 __jbd2_journal_file_buffer(jh, handle->h_transaction, BJ_Metadata);
470decc6
DK
1201 spin_unlock(&journal->j_list_lock);
1202out_unlock_bh:
1203 jbd_unlock_bh_state(bh);
1204out:
1205 JBUFFER_TRACE(jh, "exit");
44705754 1206 WARN_ON(ret); /* All errors are bugs, so dump the stack */
9ea7a0df 1207 return ret;
470decc6
DK
1208}
1209
1210/*
f7f4bccb 1211 * jbd2_journal_release_buffer: undo a get_write_access without any buffer
470decc6
DK
1212 * updates, if the update decided in the end that it didn't need access.
1213 *
1214 */
1215void
f7f4bccb 1216jbd2_journal_release_buffer(handle_t *handle, struct buffer_head *bh)
470decc6
DK
1217{
1218 BUFFER_TRACE(bh, "entry");
1219}
1220
1221/**
f7f4bccb 1222 * void jbd2_journal_forget() - bforget() for potentially-journaled buffers.
470decc6
DK
1223 * @handle: transaction handle
1224 * @bh: bh to 'forget'
1225 *
1226 * We can only do the bforget if there are no commits pending against the
1227 * buffer. If the buffer is dirty in the current running transaction we
1228 * can safely unlink it.
1229 *
1230 * bh may not be a journalled buffer at all - it may be a non-JBD
1231 * buffer which came off the hashtable. Check for this.
1232 *
1233 * Decrements bh->b_count by one.
1234 *
1235 * Allow this call even if the handle has aborted --- it may be part of
1236 * the caller's cleanup after an abort.
1237 */
f7f4bccb 1238int jbd2_journal_forget (handle_t *handle, struct buffer_head *bh)
470decc6
DK
1239{
1240 transaction_t *transaction = handle->h_transaction;
1241 journal_t *journal = transaction->t_journal;
1242 struct journal_head *jh;
1243 int drop_reserve = 0;
1244 int err = 0;
1dfc3220 1245 int was_modified = 0;
470decc6
DK
1246
1247 BUFFER_TRACE(bh, "entry");
1248
1249 jbd_lock_bh_state(bh);
1250 spin_lock(&journal->j_list_lock);
1251
1252 if (!buffer_jbd(bh))
1253 goto not_jbd;
1254 jh = bh2jh(bh);
1255
1256 /* Critical error: attempting to delete a bitmap buffer, maybe?
1257 * Don't do any jbd operations, and return an error. */
1258 if (!J_EXPECT_JH(jh, !jh->b_committed_data,
1259 "inconsistent data on disk")) {
1260 err = -EIO;
1261 goto not_jbd;
1262 }
1263
1dfc3220
JB
1264 /* keep track of wether or not this transaction modified us */
1265 was_modified = jh->b_modified;
1266
470decc6
DK
1267 /*
1268 * The buffer's going from the transaction, we must drop
1269 * all references -bzzz
1270 */
1271 jh->b_modified = 0;
1272
1273 if (jh->b_transaction == handle->h_transaction) {
1274 J_ASSERT_JH(jh, !jh->b_frozen_data);
1275
1276 /* If we are forgetting a buffer which is already part
1277 * of this transaction, then we can just drop it from
1278 * the transaction immediately. */
1279 clear_buffer_dirty(bh);
1280 clear_buffer_jbddirty(bh);
1281
1282 JBUFFER_TRACE(jh, "belongs to current transaction: unfile");
1283
1dfc3220
JB
1284 /*
1285 * we only want to drop a reference if this transaction
1286 * modified the buffer
1287 */
1288 if (was_modified)
1289 drop_reserve = 1;
470decc6
DK
1290
1291 /*
1292 * We are no longer going to journal this buffer.
1293 * However, the commit of this transaction is still
1294 * important to the buffer: the delete that we are now
1295 * processing might obsolete an old log entry, so by
1296 * committing, we can satisfy the buffer's checkpoint.
1297 *
1298 * So, if we have a checkpoint on the buffer, we should
1299 * now refile the buffer on our BJ_Forget list so that
1300 * we know to remove the checkpoint after we commit.
1301 */
1302
1303 if (jh->b_cp_transaction) {
f7f4bccb
MC
1304 __jbd2_journal_temp_unlink_buffer(jh);
1305 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
470decc6 1306 } else {
f7f4bccb 1307 __jbd2_journal_unfile_buffer(jh);
470decc6
DK
1308 if (!buffer_jbd(bh)) {
1309 spin_unlock(&journal->j_list_lock);
1310 jbd_unlock_bh_state(bh);
1311 __bforget(bh);
1312 goto drop;
1313 }
1314 }
1315 } else if (jh->b_transaction) {
1316 J_ASSERT_JH(jh, (jh->b_transaction ==
1317 journal->j_committing_transaction));
1318 /* However, if the buffer is still owned by a prior
1319 * (committing) transaction, we can't drop it yet... */
1320 JBUFFER_TRACE(jh, "belongs to older transaction");
1321 /* ... but we CAN drop it from the new transaction if we
1322 * have also modified it since the original commit. */
1323
1324 if (jh->b_next_transaction) {
1325 J_ASSERT(jh->b_next_transaction == transaction);
1326 jh->b_next_transaction = NULL;
1dfc3220
JB
1327
1328 /*
1329 * only drop a reference if this transaction modified
1330 * the buffer
1331 */
1332 if (was_modified)
1333 drop_reserve = 1;
470decc6
DK
1334 }
1335 }
1336
1337not_jbd:
1338 spin_unlock(&journal->j_list_lock);
1339 jbd_unlock_bh_state(bh);
1340 __brelse(bh);
1341drop:
1342 if (drop_reserve) {
1343 /* no need to reserve log space for this block -bzzz */
1344 handle->h_buffer_credits++;
1345 }
1346 return err;
1347}
1348
1349/**
f7f4bccb 1350 * int jbd2_journal_stop() - complete a transaction
470decc6
DK
1351 * @handle: tranaction to complete.
1352 *
1353 * All done for a particular handle.
1354 *
1355 * There is not much action needed here. We just return any remaining
1356 * buffer credits to the transaction and remove the handle. The only
1357 * complication is that we need to start a commit operation if the
1358 * filesystem is marked for synchronous update.
1359 *
f7f4bccb 1360 * jbd2_journal_stop itself will not usually return an error, but it may
470decc6 1361 * do so in unusual circumstances. In particular, expect it to
f7f4bccb 1362 * return -EIO if a jbd2_journal_abort has been executed since the
470decc6
DK
1363 * transaction began.
1364 */
f7f4bccb 1365int jbd2_journal_stop(handle_t *handle)
470decc6
DK
1366{
1367 transaction_t *transaction = handle->h_transaction;
1368 journal_t *journal = transaction->t_journal;
a51dca9c
TT
1369 int err, wait_for_commit = 0;
1370 tid_t tid;
470decc6
DK
1371 pid_t pid;
1372
470decc6
DK
1373 J_ASSERT(journal_current_handle() == handle);
1374
1375 if (is_handle_aborted(handle))
1376 err = -EIO;
3e2a532b 1377 else {
a51dca9c 1378 J_ASSERT(atomic_read(&transaction->t_updates) > 0);
470decc6 1379 err = 0;
3e2a532b 1380 }
470decc6
DK
1381
1382 if (--handle->h_ref > 0) {
1383 jbd_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1,
1384 handle->h_ref);
1385 return err;
1386 }
1387
1388 jbd_debug(4, "Handle %p going down\n", handle);
1389
1390 /*
1391 * Implement synchronous transaction batching. If the handle
1392 * was synchronous, don't force a commit immediately. Let's
e07f7183
JB
1393 * yield and let another thread piggyback onto this
1394 * transaction. Keep doing that while new threads continue to
1395 * arrive. It doesn't cost much - we're about to run a commit
1396 * and sleep on IO anyway. Speeds up many-threaded, many-dir
1397 * operations by 30x or more...
1398 *
1399 * We try and optimize the sleep time against what the
1400 * underlying disk can do, instead of having a static sleep
1401 * time. This is useful for the case where our storage is so
1402 * fast that it is more optimal to go ahead and force a flush
1403 * and wait for the transaction to be committed than it is to
1404 * wait for an arbitrary amount of time for new writers to
1405 * join the transaction. We achieve this by measuring how
1406 * long it takes to commit a transaction, and compare it with
1407 * how long this transaction has been running, and if run time
1408 * < commit time then we sleep for the delta and commit. This
1409 * greatly helps super fast disks that would see slowdowns as
1410 * more threads started doing fsyncs.
470decc6 1411 *
e07f7183
JB
1412 * But don't do this if this process was the most recent one
1413 * to perform a synchronous write. We do this to detect the
1414 * case where a single process is doing a stream of sync
1415 * writes. No point in waiting for joiners in that case.
470decc6
DK
1416 */
1417 pid = current->pid;
1418 if (handle->h_sync && journal->j_last_sync_writer != pid) {
e07f7183
JB
1419 u64 commit_time, trans_time;
1420
470decc6 1421 journal->j_last_sync_writer = pid;
e07f7183 1422
a931da6a 1423 read_lock(&journal->j_state_lock);
e07f7183 1424 commit_time = journal->j_average_commit_time;
a931da6a 1425 read_unlock(&journal->j_state_lock);
e07f7183
JB
1426
1427 trans_time = ktime_to_ns(ktime_sub(ktime_get(),
1428 transaction->t_start_time));
1429
30773840
TT
1430 commit_time = max_t(u64, commit_time,
1431 1000*journal->j_min_batch_time);
e07f7183 1432 commit_time = min_t(u64, commit_time,
30773840 1433 1000*journal->j_max_batch_time);
e07f7183
JB
1434
1435 if (trans_time < commit_time) {
1436 ktime_t expires = ktime_add_ns(ktime_get(),
1437 commit_time);
1438 set_current_state(TASK_UNINTERRUPTIBLE);
1439 schedule_hrtimeout(&expires, HRTIMER_MODE_ABS);
1440 }
470decc6
DK
1441 }
1442
7058548c
TT
1443 if (handle->h_sync)
1444 transaction->t_synchronous_commit = 1;
470decc6 1445 current->journal_info = NULL;
a51dca9c
TT
1446 atomic_sub(handle->h_buffer_credits,
1447 &transaction->t_outstanding_credits);
470decc6
DK
1448
1449 /*
1450 * If the handle is marked SYNC, we need to set another commit
1451 * going! We also want to force a commit if the current
1452 * transaction is occupying too much of the log, or if the
1453 * transaction is too old now.
1454 */
1455 if (handle->h_sync ||
a51dca9c
TT
1456 (atomic_read(&transaction->t_outstanding_credits) >
1457 journal->j_max_transaction_buffers) ||
1458 time_after_eq(jiffies, transaction->t_expires)) {
470decc6
DK
1459 /* Do this even for aborted journals: an abort still
1460 * completes the commit thread, it just doesn't write
1461 * anything to disk. */
470decc6 1462
470decc6
DK
1463 jbd_debug(2, "transaction too old, requesting commit for "
1464 "handle %p\n", handle);
1465 /* This is non-blocking */
c35a56a0 1466 jbd2_log_start_commit(journal, transaction->t_tid);
470decc6
DK
1467
1468 /*
f7f4bccb 1469 * Special case: JBD2_SYNC synchronous updates require us
470decc6
DK
1470 * to wait for the commit to complete.
1471 */
1472 if (handle->h_sync && !(current->flags & PF_MEMALLOC))
a51dca9c 1473 wait_for_commit = 1;
470decc6
DK
1474 }
1475
a51dca9c
TT
1476 /*
1477 * Once we drop t_updates, if it goes to zero the transaction
25985edc 1478 * could start committing on us and eventually disappear. So
a51dca9c
TT
1479 * once we do this, we must not dereference transaction
1480 * pointer again.
1481 */
1482 tid = transaction->t_tid;
1483 if (atomic_dec_and_test(&transaction->t_updates)) {
1484 wake_up(&journal->j_wait_updates);
1485 if (journal->j_barrier_count)
1486 wake_up(&journal->j_wait_transaction_locked);
1487 }
1488
1489 if (wait_for_commit)
1490 err = jbd2_log_wait_commit(journal, tid);
1491
3295f0ef 1492 lock_map_release(&handle->h_lockdep_map);
7b751066 1493
af1e76d6 1494 jbd2_free_handle(handle);
470decc6
DK
1495 return err;
1496}
1497
5648ba5b
RD
1498/**
1499 * int jbd2_journal_force_commit() - force any uncommitted transactions
470decc6
DK
1500 * @journal: journal to force
1501 *
1502 * For synchronous operations: force any uncommitted transactions
1503 * to disk. May seem kludgy, but it reuses all the handle batching
1504 * code in a very simple manner.
1505 */
f7f4bccb 1506int jbd2_journal_force_commit(journal_t *journal)
470decc6
DK
1507{
1508 handle_t *handle;
1509 int ret;
1510
f7f4bccb 1511 handle = jbd2_journal_start(journal, 1);
470decc6
DK
1512 if (IS_ERR(handle)) {
1513 ret = PTR_ERR(handle);
1514 } else {
1515 handle->h_sync = 1;
f7f4bccb 1516 ret = jbd2_journal_stop(handle);
470decc6
DK
1517 }
1518 return ret;
1519}
1520
1521/*
1522 *
1523 * List management code snippets: various functions for manipulating the
1524 * transaction buffer lists.
1525 *
1526 */
1527
1528/*
1529 * Append a buffer to a transaction list, given the transaction's list head
1530 * pointer.
1531 *
1532 * j_list_lock is held.
1533 *
1534 * jbd_lock_bh_state(jh2bh(jh)) is held.
1535 */
1536
1537static inline void
1538__blist_add_buffer(struct journal_head **list, struct journal_head *jh)
1539{
1540 if (!*list) {
1541 jh->b_tnext = jh->b_tprev = jh;
1542 *list = jh;
1543 } else {
1544 /* Insert at the tail of the list to preserve order */
1545 struct journal_head *first = *list, *last = first->b_tprev;
1546 jh->b_tprev = last;
1547 jh->b_tnext = first;
1548 last->b_tnext = first->b_tprev = jh;
1549 }
1550}
1551
1552/*
1553 * Remove a buffer from a transaction list, given the transaction's list
1554 * head pointer.
1555 *
1556 * Called with j_list_lock held, and the journal may not be locked.
1557 *
1558 * jbd_lock_bh_state(jh2bh(jh)) is held.
1559 */
1560
1561static inline void
1562__blist_del_buffer(struct journal_head **list, struct journal_head *jh)
1563{
1564 if (*list == jh) {
1565 *list = jh->b_tnext;
1566 if (*list == jh)
1567 *list = NULL;
1568 }
1569 jh->b_tprev->b_tnext = jh->b_tnext;
1570 jh->b_tnext->b_tprev = jh->b_tprev;
1571}
1572
1573/*
1574 * Remove a buffer from the appropriate transaction list.
1575 *
1576 * Note that this function can *change* the value of
87c89c23
JK
1577 * bh->b_transaction->t_buffers, t_forget, t_iobuf_list, t_shadow_list,
1578 * t_log_list or t_reserved_list. If the caller is holding onto a copy of one
1579 * of these pointers, it could go bad. Generally the caller needs to re-read
1580 * the pointer from the transaction_t.
470decc6
DK
1581 *
1582 * Called under j_list_lock. The journal may not be locked.
1583 */
f7f4bccb 1584void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh)
470decc6
DK
1585{
1586 struct journal_head **list = NULL;
1587 transaction_t *transaction;
1588 struct buffer_head *bh = jh2bh(jh);
1589
1590 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
1591 transaction = jh->b_transaction;
1592 if (transaction)
1593 assert_spin_locked(&transaction->t_journal->j_list_lock);
1594
1595 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
1596 if (jh->b_jlist != BJ_None)
4019191b 1597 J_ASSERT_JH(jh, transaction != NULL);
470decc6
DK
1598
1599 switch (jh->b_jlist) {
1600 case BJ_None:
1601 return;
470decc6
DK
1602 case BJ_Metadata:
1603 transaction->t_nr_buffers--;
1604 J_ASSERT_JH(jh, transaction->t_nr_buffers >= 0);
1605 list = &transaction->t_buffers;
1606 break;
1607 case BJ_Forget:
1608 list = &transaction->t_forget;
1609 break;
1610 case BJ_IO:
1611 list = &transaction->t_iobuf_list;
1612 break;
1613 case BJ_Shadow:
1614 list = &transaction->t_shadow_list;
1615 break;
1616 case BJ_LogCtl:
1617 list = &transaction->t_log_list;
1618 break;
1619 case BJ_Reserved:
1620 list = &transaction->t_reserved_list;
1621 break;
470decc6
DK
1622 }
1623
1624 __blist_del_buffer(list, jh);
1625 jh->b_jlist = BJ_None;
1626 if (test_clear_buffer_jbddirty(bh))
1627 mark_buffer_dirty(bh); /* Expose it to the VM */
1628}
1629
de1b7941
JK
1630/*
1631 * Remove buffer from all transactions.
1632 *
1633 * Called with bh_state lock and j_list_lock
1634 *
1635 * jh and bh may be already freed when this function returns.
1636 */
1637static void __jbd2_journal_unfile_buffer(struct journal_head *jh)
470decc6 1638{
f7f4bccb 1639 __jbd2_journal_temp_unlink_buffer(jh);
470decc6 1640 jh->b_transaction = NULL;
de1b7941 1641 jbd2_journal_put_journal_head(jh);
470decc6
DK
1642}
1643
f7f4bccb 1644void jbd2_journal_unfile_buffer(journal_t *journal, struct journal_head *jh)
470decc6 1645{
de1b7941
JK
1646 struct buffer_head *bh = jh2bh(jh);
1647
1648 /* Get reference so that buffer cannot be freed before we unlock it */
1649 get_bh(bh);
1650 jbd_lock_bh_state(bh);
470decc6 1651 spin_lock(&journal->j_list_lock);
f7f4bccb 1652 __jbd2_journal_unfile_buffer(jh);
470decc6 1653 spin_unlock(&journal->j_list_lock);
de1b7941
JK
1654 jbd_unlock_bh_state(bh);
1655 __brelse(bh);
470decc6
DK
1656}
1657
1658/*
f7f4bccb 1659 * Called from jbd2_journal_try_to_free_buffers().
470decc6
DK
1660 *
1661 * Called under jbd_lock_bh_state(bh)
1662 */
1663static void
1664__journal_try_to_free_buffer(journal_t *journal, struct buffer_head *bh)
1665{
1666 struct journal_head *jh;
1667
1668 jh = bh2jh(bh);
1669
1670 if (buffer_locked(bh) || buffer_dirty(bh))
1671 goto out;
1672
4019191b 1673 if (jh->b_next_transaction != NULL)
470decc6
DK
1674 goto out;
1675
1676 spin_lock(&journal->j_list_lock);
87c89c23 1677 if (jh->b_cp_transaction != NULL && jh->b_transaction == NULL) {
470decc6
DK
1678 /* written-back checkpointed metadata buffer */
1679 if (jh->b_jlist == BJ_None) {
1680 JBUFFER_TRACE(jh, "remove from checkpoint list");
f7f4bccb 1681 __jbd2_journal_remove_checkpoint(jh);
470decc6
DK
1682 }
1683 }
1684 spin_unlock(&journal->j_list_lock);
1685out:
1686 return;
1687}
1688
470decc6 1689/**
f7f4bccb 1690 * int jbd2_journal_try_to_free_buffers() - try to free page buffers.
470decc6
DK
1691 * @journal: journal for operation
1692 * @page: to try and free
530576bb
MC
1693 * @gfp_mask: we use the mask to detect how hard should we try to release
1694 * buffers. If __GFP_WAIT and __GFP_FS is set, we wait for commit code to
1695 * release the buffers.
470decc6
DK
1696 *
1697 *
1698 * For all the buffers on this page,
1699 * if they are fully written out ordered data, move them onto BUF_CLEAN
1700 * so try_to_free_buffers() can reap them.
1701 *
1702 * This function returns non-zero if we wish try_to_free_buffers()
1703 * to be called. We do this if the page is releasable by try_to_free_buffers().
1704 * We also do it if the page has locked or dirty buffers and the caller wants
1705 * us to perform sync or async writeout.
1706 *
1707 * This complicates JBD locking somewhat. We aren't protected by the
1708 * BKL here. We wish to remove the buffer from its committing or
f7f4bccb 1709 * running transaction's ->t_datalist via __jbd2_journal_unfile_buffer.
470decc6
DK
1710 *
1711 * This may *change* the value of transaction_t->t_datalist, so anyone
1712 * who looks at t_datalist needs to lock against this function.
1713 *
f7f4bccb
MC
1714 * Even worse, someone may be doing a jbd2_journal_dirty_data on this
1715 * buffer. So we need to lock against that. jbd2_journal_dirty_data()
470decc6
DK
1716 * will come out of the lock with the buffer dirty, which makes it
1717 * ineligible for release here.
1718 *
1719 * Who else is affected by this? hmm... Really the only contender
1720 * is do_get_write_access() - it could be looking at the buffer while
1721 * journal_try_to_free_buffer() is changing its state. But that
1722 * cannot happen because we never reallocate freed data as metadata
1723 * while the data is part of a transaction. Yes?
530576bb
MC
1724 *
1725 * Return 0 on failure, 1 on success
470decc6 1726 */
f7f4bccb 1727int jbd2_journal_try_to_free_buffers(journal_t *journal,
530576bb 1728 struct page *page, gfp_t gfp_mask)
470decc6
DK
1729{
1730 struct buffer_head *head;
1731 struct buffer_head *bh;
1732 int ret = 0;
1733
1734 J_ASSERT(PageLocked(page));
1735
1736 head = page_buffers(page);
1737 bh = head;
1738 do {
1739 struct journal_head *jh;
1740
1741 /*
1742 * We take our own ref against the journal_head here to avoid
1743 * having to add tons of locking around each instance of
530576bb 1744 * jbd2_journal_put_journal_head().
470decc6 1745 */
f7f4bccb 1746 jh = jbd2_journal_grab_journal_head(bh);
470decc6
DK
1747 if (!jh)
1748 continue;
1749
1750 jbd_lock_bh_state(bh);
1751 __journal_try_to_free_buffer(journal, bh);
f7f4bccb 1752 jbd2_journal_put_journal_head(jh);
470decc6
DK
1753 jbd_unlock_bh_state(bh);
1754 if (buffer_jbd(bh))
1755 goto busy;
1756 } while ((bh = bh->b_this_page) != head);
530576bb 1757
470decc6 1758 ret = try_to_free_buffers(page);
530576bb 1759
470decc6
DK
1760busy:
1761 return ret;
1762}
1763
1764/*
1765 * This buffer is no longer needed. If it is on an older transaction's
1766 * checkpoint list we need to record it on this transaction's forget list
1767 * to pin this buffer (and hence its checkpointing transaction) down until
1768 * this transaction commits. If the buffer isn't on a checkpoint list, we
1769 * release it.
1770 * Returns non-zero if JBD no longer has an interest in the buffer.
1771 *
1772 * Called under j_list_lock.
1773 *
1774 * Called under jbd_lock_bh_state(bh).
1775 */
1776static int __dispose_buffer(struct journal_head *jh, transaction_t *transaction)
1777{
1778 int may_free = 1;
1779 struct buffer_head *bh = jh2bh(jh);
1780
470decc6
DK
1781 if (jh->b_cp_transaction) {
1782 JBUFFER_TRACE(jh, "on running+cp transaction");
de1b7941 1783 __jbd2_journal_temp_unlink_buffer(jh);
f91d1d04
JK
1784 /*
1785 * We don't want to write the buffer anymore, clear the
1786 * bit so that we don't confuse checks in
1787 * __journal_file_buffer
1788 */
1789 clear_buffer_dirty(bh);
f7f4bccb 1790 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
470decc6
DK
1791 may_free = 0;
1792 } else {
1793 JBUFFER_TRACE(jh, "on running transaction");
de1b7941 1794 __jbd2_journal_unfile_buffer(jh);
470decc6
DK
1795 }
1796 return may_free;
1797}
1798
1799/*
f7f4bccb 1800 * jbd2_journal_invalidatepage
470decc6
DK
1801 *
1802 * This code is tricky. It has a number of cases to deal with.
1803 *
1804 * There are two invariants which this code relies on:
1805 *
1806 * i_size must be updated on disk before we start calling invalidatepage on the
1807 * data.
1808 *
1809 * This is done in ext3 by defining an ext3_setattr method which
1810 * updates i_size before truncate gets going. By maintaining this
1811 * invariant, we can be sure that it is safe to throw away any buffers
1812 * attached to the current transaction: once the transaction commits,
1813 * we know that the data will not be needed.
1814 *
1815 * Note however that we can *not* throw away data belonging to the
1816 * previous, committing transaction!
1817 *
1818 * Any disk blocks which *are* part of the previous, committing
1819 * transaction (and which therefore cannot be discarded immediately) are
1820 * not going to be reused in the new running transaction
1821 *
1822 * The bitmap committed_data images guarantee this: any block which is
1823 * allocated in one transaction and removed in the next will be marked
1824 * as in-use in the committed_data bitmap, so cannot be reused until
1825 * the next transaction to delete the block commits. This means that
1826 * leaving committing buffers dirty is quite safe: the disk blocks
1827 * cannot be reallocated to a different file and so buffer aliasing is
1828 * not possible.
1829 *
1830 *
1831 * The above applies mainly to ordered data mode. In writeback mode we
1832 * don't make guarantees about the order in which data hits disk --- in
1833 * particular we don't guarantee that new dirty data is flushed before
1834 * transaction commit --- so it is always safe just to discard data
1835 * immediately in that mode. --sct
1836 */
1837
1838/*
1839 * The journal_unmap_buffer helper function returns zero if the buffer
1840 * concerned remains pinned as an anonymous buffer belonging to an older
1841 * transaction.
1842 *
1843 * We're outside-transaction here. Either or both of j_running_transaction
1844 * and j_committing_transaction may be NULL.
1845 */
1846static int journal_unmap_buffer(journal_t *journal, struct buffer_head *bh)
1847{
1848 transaction_t *transaction;
1849 struct journal_head *jh;
1850 int may_free = 1;
1851 int ret;
1852
1853 BUFFER_TRACE(bh, "entry");
1854
1855 /*
1856 * It is safe to proceed here without the j_list_lock because the
1857 * buffers cannot be stolen by try_to_free_buffers as long as we are
1858 * holding the page lock. --sct
1859 */
1860
1861 if (!buffer_jbd(bh))
1862 goto zap_buffer_unlocked;
1863
87c89c23 1864 /* OK, we have data buffer in journaled mode */
a931da6a 1865 write_lock(&journal->j_state_lock);
470decc6
DK
1866 jbd_lock_bh_state(bh);
1867 spin_lock(&journal->j_list_lock);
1868
f7f4bccb 1869 jh = jbd2_journal_grab_journal_head(bh);
470decc6
DK
1870 if (!jh)
1871 goto zap_buffer_no_jh;
1872
ba869023 1873 /*
1874 * We cannot remove the buffer from checkpoint lists until the
1875 * transaction adding inode to orphan list (let's call it T)
1876 * is committed. Otherwise if the transaction changing the
1877 * buffer would be cleaned from the journal before T is
1878 * committed, a crash will cause that the correct contents of
1879 * the buffer will be lost. On the other hand we have to
1880 * clear the buffer dirty bit at latest at the moment when the
1881 * transaction marking the buffer as freed in the filesystem
1882 * structures is committed because from that moment on the
1883 * buffer can be reallocated and used by a different page.
1884 * Since the block hasn't been freed yet but the inode has
1885 * already been added to orphan list, it is safe for us to add
1886 * the buffer to BJ_Forget list of the newest transaction.
1887 */
470decc6
DK
1888 transaction = jh->b_transaction;
1889 if (transaction == NULL) {
1890 /* First case: not on any transaction. If it
1891 * has no checkpoint link, then we can zap it:
1892 * it's a writeback-mode buffer so we don't care
1893 * if it hits disk safely. */
1894 if (!jh->b_cp_transaction) {
1895 JBUFFER_TRACE(jh, "not on any transaction: zap");
1896 goto zap_buffer;
1897 }
1898
1899 if (!buffer_dirty(bh)) {
1900 /* bdflush has written it. We can drop it now */
1901 goto zap_buffer;
1902 }
1903
1904 /* OK, it must be in the journal but still not
1905 * written fully to disk: it's metadata or
1906 * journaled data... */
1907
1908 if (journal->j_running_transaction) {
1909 /* ... and once the current transaction has
1910 * committed, the buffer won't be needed any
1911 * longer. */
1912 JBUFFER_TRACE(jh, "checkpointed: add to BJ_Forget");
1913 ret = __dispose_buffer(jh,
1914 journal->j_running_transaction);
f7f4bccb 1915 jbd2_journal_put_journal_head(jh);
470decc6
DK
1916 spin_unlock(&journal->j_list_lock);
1917 jbd_unlock_bh_state(bh);
a931da6a 1918 write_unlock(&journal->j_state_lock);
470decc6
DK
1919 return ret;
1920 } else {
1921 /* There is no currently-running transaction. So the
1922 * orphan record which we wrote for this file must have
1923 * passed into commit. We must attach this buffer to
1924 * the committing transaction, if it exists. */
1925 if (journal->j_committing_transaction) {
1926 JBUFFER_TRACE(jh, "give to committing trans");
1927 ret = __dispose_buffer(jh,
1928 journal->j_committing_transaction);
f7f4bccb 1929 jbd2_journal_put_journal_head(jh);
470decc6
DK
1930 spin_unlock(&journal->j_list_lock);
1931 jbd_unlock_bh_state(bh);
a931da6a 1932 write_unlock(&journal->j_state_lock);
470decc6
DK
1933 return ret;
1934 } else {
1935 /* The orphan record's transaction has
1936 * committed. We can cleanse this buffer */
1937 clear_buffer_jbddirty(bh);
1938 goto zap_buffer;
1939 }
1940 }
1941 } else if (transaction == journal->j_committing_transaction) {
9b57988d 1942 JBUFFER_TRACE(jh, "on committing transaction");
470decc6 1943 /*
ba869023 1944 * The buffer is committing, we simply cannot touch
1945 * it. So we just set j_next_transaction to the
1946 * running transaction (if there is one) and mark
1947 * buffer as freed so that commit code knows it should
1948 * clear dirty bits when it is done with the buffer.
1949 */
470decc6 1950 set_buffer_freed(bh);
ba869023 1951 if (journal->j_running_transaction && buffer_jbddirty(bh))
1952 jh->b_next_transaction = journal->j_running_transaction;
f7f4bccb 1953 jbd2_journal_put_journal_head(jh);
470decc6
DK
1954 spin_unlock(&journal->j_list_lock);
1955 jbd_unlock_bh_state(bh);
a931da6a 1956 write_unlock(&journal->j_state_lock);
470decc6
DK
1957 return 0;
1958 } else {
1959 /* Good, the buffer belongs to the running transaction.
1960 * We are writing our own transaction's data, not any
1961 * previous one's, so it is safe to throw it away
1962 * (remember that we expect the filesystem to have set
1963 * i_size already for this truncate so recovery will not
1964 * expose the disk blocks we are discarding here.) */
1965 J_ASSERT_JH(jh, transaction == journal->j_running_transaction);
9b57988d 1966 JBUFFER_TRACE(jh, "on running transaction");
470decc6
DK
1967 may_free = __dispose_buffer(jh, transaction);
1968 }
1969
1970zap_buffer:
f7f4bccb 1971 jbd2_journal_put_journal_head(jh);
470decc6
DK
1972zap_buffer_no_jh:
1973 spin_unlock(&journal->j_list_lock);
1974 jbd_unlock_bh_state(bh);
a931da6a 1975 write_unlock(&journal->j_state_lock);
470decc6
DK
1976zap_buffer_unlocked:
1977 clear_buffer_dirty(bh);
1978 J_ASSERT_BH(bh, !buffer_jbddirty(bh));
1979 clear_buffer_mapped(bh);
1980 clear_buffer_req(bh);
1981 clear_buffer_new(bh);
15291164
ES
1982 clear_buffer_delay(bh);
1983 clear_buffer_unwritten(bh);
470decc6
DK
1984 bh->b_bdev = NULL;
1985 return may_free;
1986}
1987
1988/**
f7f4bccb 1989 * void jbd2_journal_invalidatepage()
470decc6
DK
1990 * @journal: journal to use for flush...
1991 * @page: page to flush
1992 * @offset: length of page to invalidate.
1993 *
1994 * Reap page buffers containing data after offset in page.
1995 *
1996 */
f7f4bccb 1997void jbd2_journal_invalidatepage(journal_t *journal,
470decc6
DK
1998 struct page *page,
1999 unsigned long offset)
2000{
2001 struct buffer_head *head, *bh, *next;
2002 unsigned int curr_off = 0;
2003 int may_free = 1;
2004
2005 if (!PageLocked(page))
2006 BUG();
2007 if (!page_has_buffers(page))
2008 return;
2009
2010 /* We will potentially be playing with lists other than just the
2011 * data lists (especially for journaled data mode), so be
2012 * cautious in our locking. */
2013
2014 head = bh = page_buffers(page);
2015 do {
2016 unsigned int next_off = curr_off + bh->b_size;
2017 next = bh->b_this_page;
2018
2019 if (offset <= curr_off) {
2020 /* This block is wholly outside the truncation point */
2021 lock_buffer(bh);
2022 may_free &= journal_unmap_buffer(journal, bh);
2023 unlock_buffer(bh);
2024 }
2025 curr_off = next_off;
2026 bh = next;
2027
2028 } while (bh != head);
2029
2030 if (!offset) {
2031 if (may_free && try_to_free_buffers(page))
2032 J_ASSERT(!page_has_buffers(page));
2033 }
2034}
2035
2036/*
2037 * File a buffer on the given transaction list.
2038 */
f7f4bccb 2039void __jbd2_journal_file_buffer(struct journal_head *jh,
470decc6
DK
2040 transaction_t *transaction, int jlist)
2041{
2042 struct journal_head **list = NULL;
2043 int was_dirty = 0;
2044 struct buffer_head *bh = jh2bh(jh);
2045
2046 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2047 assert_spin_locked(&transaction->t_journal->j_list_lock);
2048
2049 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
2050 J_ASSERT_JH(jh, jh->b_transaction == transaction ||
4019191b 2051 jh->b_transaction == NULL);
470decc6
DK
2052
2053 if (jh->b_transaction && jh->b_jlist == jlist)
2054 return;
2055
470decc6
DK
2056 if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
2057 jlist == BJ_Shadow || jlist == BJ_Forget) {
f91d1d04
JK
2058 /*
2059 * For metadata buffers, we track dirty bit in buffer_jbddirty
2060 * instead of buffer_dirty. We should not see a dirty bit set
2061 * here because we clear it in do_get_write_access but e.g.
2062 * tune2fs can modify the sb and set the dirty bit at any time
2063 * so we try to gracefully handle that.
2064 */
2065 if (buffer_dirty(bh))
2066 warn_dirty_buffer(bh);
470decc6
DK
2067 if (test_clear_buffer_dirty(bh) ||
2068 test_clear_buffer_jbddirty(bh))
2069 was_dirty = 1;
2070 }
2071
2072 if (jh->b_transaction)
f7f4bccb 2073 __jbd2_journal_temp_unlink_buffer(jh);
de1b7941
JK
2074 else
2075 jbd2_journal_grab_journal_head(bh);
470decc6
DK
2076 jh->b_transaction = transaction;
2077
2078 switch (jlist) {
2079 case BJ_None:
2080 J_ASSERT_JH(jh, !jh->b_committed_data);
2081 J_ASSERT_JH(jh, !jh->b_frozen_data);
2082 return;
470decc6
DK
2083 case BJ_Metadata:
2084 transaction->t_nr_buffers++;
2085 list = &transaction->t_buffers;
2086 break;
2087 case BJ_Forget:
2088 list = &transaction->t_forget;
2089 break;
2090 case BJ_IO:
2091 list = &transaction->t_iobuf_list;
2092 break;
2093 case BJ_Shadow:
2094 list = &transaction->t_shadow_list;
2095 break;
2096 case BJ_LogCtl:
2097 list = &transaction->t_log_list;
2098 break;
2099 case BJ_Reserved:
2100 list = &transaction->t_reserved_list;
2101 break;
470decc6
DK
2102 }
2103
2104 __blist_add_buffer(list, jh);
2105 jh->b_jlist = jlist;
2106
2107 if (was_dirty)
2108 set_buffer_jbddirty(bh);
2109}
2110
f7f4bccb 2111void jbd2_journal_file_buffer(struct journal_head *jh,
470decc6
DK
2112 transaction_t *transaction, int jlist)
2113{
2114 jbd_lock_bh_state(jh2bh(jh));
2115 spin_lock(&transaction->t_journal->j_list_lock);
f7f4bccb 2116 __jbd2_journal_file_buffer(jh, transaction, jlist);
470decc6
DK
2117 spin_unlock(&transaction->t_journal->j_list_lock);
2118 jbd_unlock_bh_state(jh2bh(jh));
2119}
2120
2121/*
2122 * Remove a buffer from its current buffer list in preparation for
2123 * dropping it from its current transaction entirely. If the buffer has
2124 * already started to be used by a subsequent transaction, refile the
2125 * buffer on that transaction's metadata list.
2126 *
de1b7941 2127 * Called under j_list_lock
470decc6 2128 * Called under jbd_lock_bh_state(jh2bh(jh))
de1b7941
JK
2129 *
2130 * jh and bh may be already free when this function returns
470decc6 2131 */
f7f4bccb 2132void __jbd2_journal_refile_buffer(struct journal_head *jh)
470decc6 2133{
ba869023 2134 int was_dirty, jlist;
470decc6
DK
2135 struct buffer_head *bh = jh2bh(jh);
2136
2137 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2138 if (jh->b_transaction)
2139 assert_spin_locked(&jh->b_transaction->t_journal->j_list_lock);
2140
2141 /* If the buffer is now unused, just drop it. */
2142 if (jh->b_next_transaction == NULL) {
f7f4bccb 2143 __jbd2_journal_unfile_buffer(jh);
470decc6
DK
2144 return;
2145 }
2146
2147 /*
2148 * It has been modified by a later transaction: add it to the new
2149 * transaction's metadata list.
2150 */
2151
2152 was_dirty = test_clear_buffer_jbddirty(bh);
f7f4bccb 2153 __jbd2_journal_temp_unlink_buffer(jh);
de1b7941
JK
2154 /*
2155 * We set b_transaction here because b_next_transaction will inherit
2156 * our jh reference and thus __jbd2_journal_file_buffer() must not
2157 * take a new one.
2158 */
470decc6
DK
2159 jh->b_transaction = jh->b_next_transaction;
2160 jh->b_next_transaction = NULL;
ba869023 2161 if (buffer_freed(bh))
2162 jlist = BJ_Forget;
2163 else if (jh->b_modified)
2164 jlist = BJ_Metadata;
2165 else
2166 jlist = BJ_Reserved;
2167 __jbd2_journal_file_buffer(jh, jh->b_transaction, jlist);
470decc6
DK
2168 J_ASSERT_JH(jh, jh->b_transaction->t_state == T_RUNNING);
2169
2170 if (was_dirty)
2171 set_buffer_jbddirty(bh);
2172}
2173
2174/*
de1b7941
JK
2175 * __jbd2_journal_refile_buffer() with necessary locking added. We take our
2176 * bh reference so that we can safely unlock bh.
2177 *
2178 * The jh and bh may be freed by this call.
470decc6 2179 */
f7f4bccb 2180void jbd2_journal_refile_buffer(journal_t *journal, struct journal_head *jh)
470decc6
DK
2181{
2182 struct buffer_head *bh = jh2bh(jh);
2183
de1b7941
JK
2184 /* Get reference so that buffer cannot be freed before we unlock it */
2185 get_bh(bh);
470decc6
DK
2186 jbd_lock_bh_state(bh);
2187 spin_lock(&journal->j_list_lock);
f7f4bccb 2188 __jbd2_journal_refile_buffer(jh);
470decc6 2189 jbd_unlock_bh_state(bh);
470decc6
DK
2190 spin_unlock(&journal->j_list_lock);
2191 __brelse(bh);
2192}
c851ed54
JK
2193
2194/*
2195 * File inode in the inode list of the handle's transaction
2196 */
2197int jbd2_journal_file_inode(handle_t *handle, struct jbd2_inode *jinode)
2198{
2199 transaction_t *transaction = handle->h_transaction;
2200 journal_t *journal = transaction->t_journal;
2201
2202 if (is_handle_aborted(handle))
2203 return -EIO;
2204
2205 jbd_debug(4, "Adding inode %lu, tid:%d\n", jinode->i_vfs_inode->i_ino,
2206 transaction->t_tid);
2207
2208 /*
2209 * First check whether inode isn't already on the transaction's
2210 * lists without taking the lock. Note that this check is safe
2211 * without the lock as we cannot race with somebody removing inode
2212 * from the transaction. The reason is that we remove inode from the
2213 * transaction only in journal_release_jbd_inode() and when we commit
2214 * the transaction. We are guarded from the first case by holding
2215 * a reference to the inode. We are safe against the second case
2216 * because if jinode->i_transaction == transaction, commit code
2217 * cannot touch the transaction because we hold reference to it,
2218 * and if jinode->i_next_transaction == transaction, commit code
2219 * will only file the inode where we want it.
2220 */
2221 if (jinode->i_transaction == transaction ||
2222 jinode->i_next_transaction == transaction)
2223 return 0;
2224
2225 spin_lock(&journal->j_list_lock);
2226
2227 if (jinode->i_transaction == transaction ||
2228 jinode->i_next_transaction == transaction)
2229 goto done;
2230
81be12c8
JK
2231 /*
2232 * We only ever set this variable to 1 so the test is safe. Since
2233 * t_need_data_flush is likely to be set, we do the test to save some
2234 * cacheline bouncing
2235 */
2236 if (!transaction->t_need_data_flush)
2237 transaction->t_need_data_flush = 1;
c851ed54
JK
2238 /* On some different transaction's list - should be
2239 * the committing one */
2240 if (jinode->i_transaction) {
2241 J_ASSERT(jinode->i_next_transaction == NULL);
2242 J_ASSERT(jinode->i_transaction ==
2243 journal->j_committing_transaction);
2244 jinode->i_next_transaction = transaction;
2245 goto done;
2246 }
2247 /* Not on any transaction list... */
2248 J_ASSERT(!jinode->i_next_transaction);
2249 jinode->i_transaction = transaction;
2250 list_add(&jinode->i_list, &transaction->t_inode_list);
2251done:
2252 spin_unlock(&journal->j_list_lock);
2253
2254 return 0;
2255}
2256
2257/*
7f5aa215
JK
2258 * File truncate and transaction commit interact with each other in a
2259 * non-trivial way. If a transaction writing data block A is
2260 * committing, we cannot discard the data by truncate until we have
2261 * written them. Otherwise if we crashed after the transaction with
2262 * write has committed but before the transaction with truncate has
2263 * committed, we could see stale data in block A. This function is a
2264 * helper to solve this problem. It starts writeout of the truncated
2265 * part in case it is in the committing transaction.
2266 *
2267 * Filesystem code must call this function when inode is journaled in
2268 * ordered mode before truncation happens and after the inode has been
2269 * placed on orphan list with the new inode size. The second condition
2270 * avoids the race that someone writes new data and we start
2271 * committing the transaction after this function has been called but
2272 * before a transaction for truncate is started (and furthermore it
2273 * allows us to optimize the case where the addition to orphan list
2274 * happens in the same transaction as write --- we don't have to write
2275 * any data in such case).
c851ed54 2276 */
7f5aa215
JK
2277int jbd2_journal_begin_ordered_truncate(journal_t *journal,
2278 struct jbd2_inode *jinode,
c851ed54
JK
2279 loff_t new_size)
2280{
7f5aa215 2281 transaction_t *inode_trans, *commit_trans;
c851ed54
JK
2282 int ret = 0;
2283
7f5aa215
JK
2284 /* This is a quick check to avoid locking if not necessary */
2285 if (!jinode->i_transaction)
c851ed54 2286 goto out;
7f5aa215
JK
2287 /* Locks are here just to force reading of recent values, it is
2288 * enough that the transaction was not committing before we started
2289 * a transaction adding the inode to orphan list */
a931da6a 2290 read_lock(&journal->j_state_lock);
c851ed54 2291 commit_trans = journal->j_committing_transaction;
a931da6a 2292 read_unlock(&journal->j_state_lock);
7f5aa215
JK
2293 spin_lock(&journal->j_list_lock);
2294 inode_trans = jinode->i_transaction;
2295 spin_unlock(&journal->j_list_lock);
2296 if (inode_trans == commit_trans) {
2297 ret = filemap_fdatawrite_range(jinode->i_vfs_inode->i_mapping,
c851ed54
JK
2298 new_size, LLONG_MAX);
2299 if (ret)
2300 jbd2_journal_abort(journal, ret);
2301 }
2302out:
2303 return ret;
2304}