blob: a160c3f665f9c68eaec73030ddcee9a8a713c61a [file] [log] [blame]
Theodore Ts'of5166762017-12-17 22:00:59 -05001// SPDX-License-Identifier: GPL-2.0+
Dave Kleikamp470decc2006-10-11 01:20:57 -07002/*
Uwe Kleine-König58862692007-05-09 07:51:49 +02003 * linux/fs/jbd2/transaction.c
Dave Kleikamp470decc2006-10-11 01:20:57 -07004 *
5 * Written by Stephen C. Tweedie <sct@redhat.com>, 1998
6 *
7 * Copyright 1998 Red Hat corp --- All Rights Reserved
8 *
Dave Kleikamp470decc2006-10-11 01:20:57 -07009 * Generic filesystem transaction handling code; part of the ext2fs
10 * journaling system.
11 *
12 * This file manages transactions (compound commits managed by the
13 * journaling code) and handles (individual atomic operations by the
14 * filesystem).
15 */
16
17#include <linux/time.h>
18#include <linux/fs.h>
Mingming Caof7f4bcc2006-10-11 01:20:59 -070019#include <linux/jbd2.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070020#include <linux/errno.h>
21#include <linux/slab.h>
22#include <linux/timer.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070023#include <linux/mm.h>
24#include <linux/highmem.h>
Josef Bacike07f7182008-11-26 01:14:26 -050025#include <linux/hrtimer.h>
Theodore Ts'o47def822010-07-27 11:56:05 -040026#include <linux/backing-dev.h>
Randy Dunlap44705752011-10-27 04:05:13 -040027#include <linux/bug.h>
Theodore Ts'o47def822010-07-27 11:56:05 -040028#include <linux/module.h>
Michal Hocko81378da2017-05-03 14:53:22 -070029#include <linux/sched/mm.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070030
Theodore Ts'o343d9c22013-02-08 13:00:22 -050031#include <trace/events/jbd2.h>
32
Adrian Bunk7ddae862006-12-06 20:38:27 -080033static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh);
Jan Karade1b7942011-06-13 15:38:22 -040034static void __jbd2_journal_unfile_buffer(struct journal_head *jh);
Adrian Bunk7ddae862006-12-06 20:38:27 -080035
Yongqiang Yang0c2022e2012-02-20 17:53:02 -050036static 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);
Chengguang Xu0d521542019-05-10 21:15:47 -040045 if (!transaction_cache) {
46 pr_emerg("JBD2: failed to create transaction cache\n");
47 return -ENOMEM;
48 }
49 return 0;
Yongqiang Yang0c2022e2012-02-20 17:53:02 -050050}
51
52void jbd2_journal_destroy_transaction_cache(void)
53{
Wang Long8bdd5b62018-05-20 22:38:26 -040054 kmem_cache_destroy(transaction_cache);
55 transaction_cache = NULL;
Yongqiang Yang0c2022e2012-02-20 17:53:02 -050056}
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
Dave Kleikamp470decc2006-10-11 01:20:57 -070065/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -070066 * jbd2_get_transaction: obtain a new transaction_t object.
Dave Kleikamp470decc2006-10-11 01:20:57 -070067 *
Liu Song0df6f462019-03-01 00:36:57 -050068 * Simply initialise a new transaction. Initialize it in
Dave Kleikamp470decc2006-10-11 01:20:57 -070069 * 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 *
Dave Kleikamp470decc2006-10-11 01:20:57 -070078 */
79
Liu Song0df6f462019-03-01 00:36:57 -050080static void jbd2_get_transaction(journal_t *journal,
81 transaction_t *transaction)
Dave Kleikamp470decc2006-10-11 01:20:57 -070082{
83 transaction->t_journal = journal;
84 transaction->t_state = T_RUNNING;
Josef Bacike07f7182008-11-26 01:14:26 -050085 transaction->t_start_time = ktime_get();
Dave Kleikamp470decc2006-10-11 01:20:57 -070086 transaction->t_tid = journal->j_transaction_sequence++;
87 transaction->t_expires = jiffies + journal->j_commit_interval;
88 spin_lock_init(&transaction->t_handle_lock);
Theodore Ts'oa51dca92010-08-02 08:43:25 -040089 atomic_set(&transaction->t_updates, 0);
Jan Kara8f7d89f2013-06-04 12:35:11 -040090 atomic_set(&transaction->t_outstanding_credits,
91 atomic_read(&journal->j_reserved_credits));
Theodore Ts'o8dd42042010-08-03 21:38:29 -040092 atomic_set(&transaction->t_handle_count, 0);
Jan Karac851ed52008-07-11 19:27:31 -040093 INIT_LIST_HEAD(&transaction->t_inode_list);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -040094 INIT_LIST_HEAD(&transaction->t_private_list);
Dave Kleikamp470decc2006-10-11 01:20:57 -070095
96 /* Set up the commit timer for the new transaction. */
Andreas Dilgerb1f485f2009-08-10 22:51:53 -040097 journal->j_commit_timer.expires = round_jiffies_up(transaction->t_expires);
Dave Kleikamp470decc2006-10-11 01:20:57 -070098 add_timer(&journal->j_commit_timer);
99
100 J_ASSERT(journal->j_running_transaction == NULL);
101 journal->j_running_transaction = transaction;
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500102 transaction->t_max_wait = 0;
103 transaction->t_start = jiffies;
Theodore Ts'o9fff24a2013-02-06 22:30:23 -0500104 transaction->t_requested = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700105}
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
115/*
Tao Ma28e35e42011-05-22 21:45:26 -0400116 * Update transaction's maximum wait time, if debugging is enabled.
Theodore Ts'o6d0bf002010-08-09 17:28:38 -0400117 *
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 */
Tao Ma28e35e42011-05-22 21:45:26 -0400125static inline void update_t_max_wait(transaction_t *transaction,
126 unsigned long ts)
Theodore Ts'o6d0bf002010-08-09 17:28:38 -0400127{
128#ifdef CONFIG_JBD2_DEBUG
Theodore Ts'o6d0bf002010-08-09 17:28:38 -0400129 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
140/*
Jan Kara96f1e092018-12-03 23:16:07 -0500141 * Wait until running transaction passes to T_FLUSH state and new transaction
142 * can thus be started. Also starts the commit if needed. The function expects
143 * running transaction to exist and releases j_state_lock.
Jan Kara8f7d89f2013-06-04 12:35:11 -0400144 */
145static void wait_transaction_locked(journal_t *journal)
146 __releases(journal->j_state_lock)
147{
148 DEFINE_WAIT(wait);
149 int need_to_start;
150 tid_t tid = journal->j_running_transaction->t_tid;
151
152 prepare_to_wait(&journal->j_wait_transaction_locked, &wait,
153 TASK_UNINTERRUPTIBLE);
154 need_to_start = !tid_geq(journal->j_commit_request, tid);
155 read_unlock(&journal->j_state_lock);
156 if (need_to_start)
157 jbd2_log_start_commit(journal, tid);
Jan Karae03a9972016-09-22 11:44:06 -0400158 jbd2_might_wait_for_commit(journal);
Jan Kara8f7d89f2013-06-04 12:35:11 -0400159 schedule();
160 finish_wait(&journal->j_wait_transaction_locked, &wait);
161}
162
Jan Kara96f1e092018-12-03 23:16:07 -0500163/*
164 * Wait until running transaction transitions from T_SWITCH to T_FLUSH
165 * state and new transaction can thus be started. The function releases
166 * j_state_lock.
167 */
168static void wait_transaction_switching(journal_t *journal)
169 __releases(journal->j_state_lock)
170{
171 DEFINE_WAIT(wait);
172
173 if (WARN_ON(!journal->j_running_transaction ||
174 journal->j_running_transaction->t_state != T_SWITCH))
175 return;
176 prepare_to_wait(&journal->j_wait_transaction_locked, &wait,
177 TASK_UNINTERRUPTIBLE);
178 read_unlock(&journal->j_state_lock);
179 /*
180 * We don't call jbd2_might_wait_for_commit() here as there's no
181 * waiting for outstanding handles happening anymore in T_SWITCH state
182 * and handling of reserved handles actually relies on that for
183 * correctness.
184 */
185 schedule();
186 finish_wait(&journal->j_wait_transaction_locked, &wait);
187}
188
Jan Kara8f7d89f2013-06-04 12:35:11 -0400189static void sub_reserved_credits(journal_t *journal, int blocks)
190{
191 atomic_sub(blocks, &journal->j_reserved_credits);
192 wake_up(&journal->j_wait_reserved);
193}
194
195/*
196 * Wait until we can add credits for handle to the running transaction. Called
197 * with j_state_lock held for reading. Returns 0 if handle joined the running
198 * transaction. Returns 1 if we had to wait, j_state_lock is dropped, and
199 * caller must retry.
200 */
201static int add_transaction_credits(journal_t *journal, int blocks,
202 int rsv_blocks)
203{
204 transaction_t *t = journal->j_running_transaction;
205 int needed;
206 int total = blocks + rsv_blocks;
207
208 /*
209 * If the current transaction is locked down for commit, wait
210 * for the lock to be released.
211 */
Jan Kara96f1e092018-12-03 23:16:07 -0500212 if (t->t_state != T_RUNNING) {
213 WARN_ON_ONCE(t->t_state >= T_FLUSH);
Jan Kara8f7d89f2013-06-04 12:35:11 -0400214 wait_transaction_locked(journal);
215 return 1;
216 }
217
218 /*
219 * If there is not enough space left in the log to write all
220 * potential buffers requested by this operation, we need to
221 * stall pending a log checkpoint to free some more log space.
222 */
223 needed = atomic_add_return(total, &t->t_outstanding_credits);
224 if (needed > journal->j_max_transaction_buffers) {
225 /*
226 * If the current transaction is already too large,
227 * then start to commit it: we can then go back and
228 * attach this handle to a new transaction.
229 */
230 atomic_sub(total, &t->t_outstanding_credits);
Lukas Czerner6d3ec142015-08-04 11:21:52 -0400231
232 /*
233 * Is the number of reserved credits in the current transaction too
234 * big to fit this handle? Wait until reserved credits are freed.
235 */
236 if (atomic_read(&journal->j_reserved_credits) + total >
237 journal->j_max_transaction_buffers) {
238 read_unlock(&journal->j_state_lock);
Jan Karae03a9972016-09-22 11:44:06 -0400239 jbd2_might_wait_for_commit(journal);
Lukas Czerner6d3ec142015-08-04 11:21:52 -0400240 wait_event(journal->j_wait_reserved,
241 atomic_read(&journal->j_reserved_credits) + total <=
242 journal->j_max_transaction_buffers);
243 return 1;
244 }
245
Jan Kara8f7d89f2013-06-04 12:35:11 -0400246 wait_transaction_locked(journal);
247 return 1;
248 }
249
250 /*
251 * The commit code assumes that it can get enough log space
252 * without forcing a checkpoint. This is *critical* for
253 * correctness: a checkpoint of a buffer which is also
254 * associated with a committing transaction creates a deadlock,
255 * so commit simply cannot force through checkpoints.
256 *
257 * We must therefore ensure the necessary space in the journal
258 * *before* starting to dirty potentially checkpointed buffers
259 * in the new transaction.
260 */
261 if (jbd2_log_space_left(journal) < jbd2_space_needed(journal)) {
262 atomic_sub(total, &t->t_outstanding_credits);
263 read_unlock(&journal->j_state_lock);
Jan Karae03a9972016-09-22 11:44:06 -0400264 jbd2_might_wait_for_commit(journal);
Jan Kara8f7d89f2013-06-04 12:35:11 -0400265 write_lock(&journal->j_state_lock);
266 if (jbd2_log_space_left(journal) < jbd2_space_needed(journal))
267 __jbd2_log_wait_for_space(journal);
268 write_unlock(&journal->j_state_lock);
269 return 1;
270 }
271
272 /* No reservation? We are done... */
273 if (!rsv_blocks)
274 return 0;
275
276 needed = atomic_add_return(rsv_blocks, &journal->j_reserved_credits);
277 /* We allow at most half of a transaction to be reserved */
278 if (needed > journal->j_max_transaction_buffers / 2) {
279 sub_reserved_credits(journal, rsv_blocks);
280 atomic_sub(total, &t->t_outstanding_credits);
281 read_unlock(&journal->j_state_lock);
Jan Karae03a9972016-09-22 11:44:06 -0400282 jbd2_might_wait_for_commit(journal);
Jan Kara8f7d89f2013-06-04 12:35:11 -0400283 wait_event(journal->j_wait_reserved,
284 atomic_read(&journal->j_reserved_credits) + rsv_blocks
285 <= journal->j_max_transaction_buffers / 2);
286 return 1;
287 }
288 return 0;
289}
290
291/*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700292 * start_this_handle: Given a handle, deal with any locking or stalling
293 * needed to make sure that there is enough journal space for the handle
294 * to begin. Attach the handle to a transaction and set up the
295 * transaction's buffer credits.
296 */
297
Theodore Ts'o47def822010-07-27 11:56:05 -0400298static int start_this_handle(journal_t *journal, handle_t *handle,
Dan Carpenterd2159fb2011-09-04 10:20:14 -0400299 gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700300{
Theodore Ts'oe4471832011-02-12 08:18:24 -0500301 transaction_t *transaction, *new_transaction = NULL;
Jan Kara8f7d89f2013-06-04 12:35:11 -0400302 int blocks = handle->h_buffer_credits;
303 int rsv_blocks = 0;
Tao Ma28e35e42011-05-22 21:45:26 -0400304 unsigned long ts = jiffies;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700305
Jan Kara8f7d89f2013-06-04 12:35:11 -0400306 if (handle->h_rsv_handle)
307 rsv_blocks = handle->h_rsv_handle->h_buffer_credits;
308
Lukas Czerner6d3ec142015-08-04 11:21:52 -0400309 /*
310 * Limit the number of reserved credits to 1/2 of maximum transaction
311 * size and limit the number of total credits to not exceed maximum
312 * transaction size per operation.
313 */
314 if ((rsv_blocks > journal->j_max_transaction_buffers / 2) ||
315 (rsv_blocks + blocks > journal->j_max_transaction_buffers)) {
316 printk(KERN_ERR "JBD2: %s wants too many credits "
317 "credits:%d rsv_credits:%d max:%d\n",
318 current->comm, blocks, rsv_blocks,
319 journal->j_max_transaction_buffers);
320 WARN_ON(1);
321 return -ENOSPC;
322 }
323
Dave Kleikamp470decc2006-10-11 01:20:57 -0700324alloc_transaction:
325 if (!journal->j_running_transaction) {
Michal Hocko6ccaf3e2015-06-08 10:53:10 -0400326 /*
327 * If __GFP_FS is not present, then we may be being called from
328 * inside the fs writeback layer, so we MUST NOT fail.
329 */
330 if ((gfp_mask & __GFP_FS) == 0)
331 gfp_mask |= __GFP_NOFAIL;
Wanlong Gaob2f4edb2012-06-01 00:10:32 -0400332 new_transaction = kmem_cache_zalloc(transaction_cache,
333 gfp_mask);
Michal Hocko6ccaf3e2015-06-08 10:53:10 -0400334 if (!new_transaction)
Theodore Ts'o47def822010-07-27 11:56:05 -0400335 return -ENOMEM;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700336 }
337
338 jbd_debug(3, "New handle %p going live.\n", handle);
339
Dave Kleikamp470decc2006-10-11 01:20:57 -0700340 /*
341 * We need to hold j_state_lock until t_updates has been incremented,
342 * for proper journal barrier handling
343 */
Theodore Ts'oa931da62010-08-03 21:35:12 -0400344repeat:
345 read_lock(&journal->j_state_lock);
Theodore Ts'o5c2178e2010-10-27 21:30:04 -0400346 BUG_ON(journal->j_flags & JBD2_UNMOUNT);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700347 if (is_journal_aborted(journal) ||
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700348 (journal->j_errno != 0 && !(journal->j_flags & JBD2_ACK_ERR))) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400349 read_unlock(&journal->j_state_lock);
Yongqiang Yang0c2022e2012-02-20 17:53:02 -0500350 jbd2_journal_free_transaction(new_transaction);
Theodore Ts'o47def822010-07-27 11:56:05 -0400351 return -EROFS;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700352 }
353
Jan Kara8f7d89f2013-06-04 12:35:11 -0400354 /*
355 * Wait on the journal's transaction barrier if necessary. Specifically
356 * we allow reserved handles to proceed because otherwise commit could
357 * deadlock on page writeback not being able to complete.
358 */
359 if (!handle->h_reserved && journal->j_barrier_count) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400360 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700361 wait_event(journal->j_wait_transaction_locked,
362 journal->j_barrier_count == 0);
363 goto repeat;
364 }
365
366 if (!journal->j_running_transaction) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400367 read_unlock(&journal->j_state_lock);
368 if (!new_transaction)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700369 goto alloc_transaction;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400370 write_lock(&journal->j_state_lock);
Jan Karad7961c72012-12-21 00:15:51 -0500371 if (!journal->j_running_transaction &&
Jan Kara8f7d89f2013-06-04 12:35:11 -0400372 (handle->h_reserved || !journal->j_barrier_count)) {
Theodore Ts'oa931da62010-08-03 21:35:12 -0400373 jbd2_get_transaction(journal, new_transaction);
374 new_transaction = NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700375 }
Theodore Ts'oa931da62010-08-03 21:35:12 -0400376 write_unlock(&journal->j_state_lock);
377 goto repeat;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700378 }
379
380 transaction = journal->j_running_transaction;
381
Jan Kara8f7d89f2013-06-04 12:35:11 -0400382 if (!handle->h_reserved) {
383 /* We may have dropped j_state_lock - restart in that case */
384 if (add_transaction_credits(journal, blocks, rsv_blocks))
385 goto repeat;
386 } else {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700387 /*
Jan Kara8f7d89f2013-06-04 12:35:11 -0400388 * We have handle reserved so we are allowed to join T_LOCKED
389 * transaction and we don't have to check for transaction size
Jan Kara96f1e092018-12-03 23:16:07 -0500390 * and journal space. But we still have to wait while running
391 * transaction is being switched to a committing one as it
392 * won't wait for any handles anymore.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700393 */
Jan Kara96f1e092018-12-03 23:16:07 -0500394 if (transaction->t_state == T_SWITCH) {
395 wait_transaction_switching(journal);
396 goto repeat;
397 }
Jan Kara8f7d89f2013-06-04 12:35:11 -0400398 sub_reserved_credits(journal, blocks);
399 handle->h_reserved = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700400 }
401
402 /* OK, account for the buffers that this operation expects to
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400403 * use and add the handle to the running transaction.
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400404 */
Tao Ma28e35e42011-05-22 21:45:26 -0400405 update_t_max_wait(transaction, ts);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700406 handle->h_transaction = transaction;
Jan Kara8f7d89f2013-06-04 12:35:11 -0400407 handle->h_requested_credits = blocks;
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500408 handle->h_start_jiffies = jiffies;
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400409 atomic_inc(&transaction->t_updates);
Theodore Ts'o8dd42042010-08-03 21:38:29 -0400410 atomic_inc(&transaction->t_handle_count);
Jan Kara8f7d89f2013-06-04 12:35:11 -0400411 jbd_debug(4, "Handle %p given %d credits (total %d, free %lu)\n",
412 handle, blocks,
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400413 atomic_read(&transaction->t_outstanding_credits),
Jan Kara76c39902013-06-04 12:12:57 -0400414 jbd2_log_space_left(journal));
Theodore Ts'oa931da62010-08-03 21:35:12 -0400415 read_unlock(&journal->j_state_lock);
Theodore Ts'o41a5b912013-07-01 08:12:41 -0400416 current->journal_info = handle;
Jan Kara9599b0e2009-08-17 21:23:17 -0400417
Jan Karaab714af2016-06-30 11:39:38 -0400418 rwsem_acquire_read(&journal->j_trans_commit_map, 0, 0, _THIS_IP_);
Yongqiang Yang0c2022e2012-02-20 17:53:02 -0500419 jbd2_journal_free_transaction(new_transaction);
Michal Hocko81378da2017-05-03 14:53:22 -0700420 /*
421 * Ensure that no allocations done while the transaction is open are
422 * going to recurse back to the fs layer.
423 */
424 handle->saved_alloc_context = memalloc_nofs_save();
Theodore Ts'o47def822010-07-27 11:56:05 -0400425 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700426}
427
428/* Allocate a new handle. This should probably be in a slab... */
429static handle_t *new_handle(int nblocks)
430{
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400431 handle_t *handle = jbd2_alloc_handle(GFP_NOFS);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700432 if (!handle)
433 return NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700434 handle->h_buffer_credits = nblocks;
435 handle->h_ref = 1;
436
437 return handle;
438}
439
Jan Kara8f7d89f2013-06-04 12:35:11 -0400440handle_t *jbd2__journal_start(journal_t *journal, int nblocks, int rsv_blocks,
441 gfp_t gfp_mask, unsigned int type,
442 unsigned int line_no)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700443{
444 handle_t *handle = journal_current_handle();
445 int err;
446
447 if (!journal)
448 return ERR_PTR(-EROFS);
449
450 if (handle) {
451 J_ASSERT(handle->h_transaction->t_journal == journal);
452 handle->h_ref++;
453 return handle;
454 }
455
456 handle = new_handle(nblocks);
457 if (!handle)
458 return ERR_PTR(-ENOMEM);
Jan Kara8f7d89f2013-06-04 12:35:11 -0400459 if (rsv_blocks) {
460 handle_t *rsv_handle;
461
462 rsv_handle = new_handle(rsv_blocks);
463 if (!rsv_handle) {
464 jbd2_free_handle(handle);
465 return ERR_PTR(-ENOMEM);
466 }
467 rsv_handle->h_reserved = 1;
468 rsv_handle->h_journal = journal;
469 handle->h_rsv_handle = rsv_handle;
470 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700471
Theodore Ts'o47def822010-07-27 11:56:05 -0400472 err = start_this_handle(journal, handle, gfp_mask);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700473 if (err < 0) {
Jan Kara8f7d89f2013-06-04 12:35:11 -0400474 if (handle->h_rsv_handle)
475 jbd2_free_handle(handle->h_rsv_handle);
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400476 jbd2_free_handle(handle);
Dmitry Monakhovdf05c1b82013-03-02 17:08:46 -0500477 return ERR_PTR(err);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700478 }
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500479 handle->h_type = type;
480 handle->h_line_no = line_no;
481 trace_jbd2_handle_start(journal->j_fs_dev->bd_dev,
482 handle->h_transaction->t_tid, type,
483 line_no, nblocks);
Michal Hocko81378da2017-05-03 14:53:22 -0700484
Dave Kleikamp470decc2006-10-11 01:20:57 -0700485 return handle;
486}
Theodore Ts'o47def822010-07-27 11:56:05 -0400487EXPORT_SYMBOL(jbd2__journal_start);
488
489
Mauro Carvalho Chehab91e47752017-05-12 07:25:21 -0300490/**
491 * handle_t *jbd2_journal_start() - Obtain a new handle.
492 * @journal: Journal to start transaction on.
493 * @nblocks: number of block buffer we might modify
494 *
495 * We make sure that the transaction can guarantee at least nblocks of
496 * modified buffers in the log. We block until the log can guarantee
497 * that much space. Additionally, if rsv_blocks > 0, we also create another
498 * handle with rsv_blocks reserved blocks in the journal. This handle is
499 * is stored in h_rsv_handle. It is not attached to any particular transaction
500 * and thus doesn't block transaction commit. If the caller uses this reserved
501 * handle, it has to set h_rsv_handle to NULL as otherwise jbd2_journal_stop()
502 * on the parent handle will dispose the reserved one. Reserved handle has to
503 * be converted to a normal handle using jbd2_journal_start_reserved() before
504 * it can be used.
505 *
506 * Return a pointer to a newly allocated handle, or an ERR_PTR() value
507 * on failure.
508 */
Theodore Ts'o47def822010-07-27 11:56:05 -0400509handle_t *jbd2_journal_start(journal_t *journal, int nblocks)
510{
Jan Kara8f7d89f2013-06-04 12:35:11 -0400511 return jbd2__journal_start(journal, nblocks, 0, GFP_NOFS, 0, 0);
Theodore Ts'o47def822010-07-27 11:56:05 -0400512}
513EXPORT_SYMBOL(jbd2_journal_start);
514
Jan Kara8f7d89f2013-06-04 12:35:11 -0400515void jbd2_journal_free_reserved(handle_t *handle)
516{
517 journal_t *journal = handle->h_journal;
518
519 WARN_ON(!handle->h_reserved);
520 sub_reserved_credits(journal, handle->h_buffer_credits);
521 jbd2_free_handle(handle);
522}
523EXPORT_SYMBOL(jbd2_journal_free_reserved);
524
525/**
Tobin C. Hardingf69120c2018-01-10 00:27:29 -0500526 * int jbd2_journal_start_reserved() - start reserved handle
Jan Kara8f7d89f2013-06-04 12:35:11 -0400527 * @handle: handle to start
Tobin C. Hardingf69120c2018-01-10 00:27:29 -0500528 * @type: for handle statistics
529 * @line_no: for handle statistics
Jan Kara8f7d89f2013-06-04 12:35:11 -0400530 *
531 * Start handle that has been previously reserved with jbd2_journal_reserve().
532 * This attaches @handle to the running transaction (or creates one if there's
533 * not transaction running). Unlike jbd2_journal_start() this function cannot
534 * block on journal commit, checkpointing, or similar stuff. It can block on
535 * memory allocation or frozen journal though.
536 *
537 * Return 0 on success, non-zero on error - handle is freed in that case.
538 */
539int jbd2_journal_start_reserved(handle_t *handle, unsigned int type,
540 unsigned int line_no)
541{
542 journal_t *journal = handle->h_journal;
543 int ret = -EIO;
544
545 if (WARN_ON(!handle->h_reserved)) {
546 /* Someone passed in normal handle? Just stop it. */
547 jbd2_journal_stop(handle);
548 return ret;
549 }
550 /*
551 * Usefulness of mixing of reserved and unreserved handles is
552 * questionable. So far nobody seems to need it so just error out.
553 */
554 if (WARN_ON(current->journal_info)) {
555 jbd2_journal_free_reserved(handle);
556 return ret;
557 }
558
559 handle->h_journal = NULL;
Jan Kara8f7d89f2013-06-04 12:35:11 -0400560 /*
561 * GFP_NOFS is here because callers are likely from writeback or
562 * similarly constrained call sites
563 */
564 ret = start_this_handle(journal, handle, GFP_NOFS);
Dan Carpenter92e3b402014-02-17 20:33:01 -0500565 if (ret < 0) {
Theodore Ts'ob2569262018-04-18 11:49:31 -0400566 handle->h_journal = journal;
Jan Kara8f7d89f2013-06-04 12:35:11 -0400567 jbd2_journal_free_reserved(handle);
Dan Carpenter92e3b402014-02-17 20:33:01 -0500568 return ret;
569 }
Jan Kara8f7d89f2013-06-04 12:35:11 -0400570 handle->h_type = type;
571 handle->h_line_no = line_no;
Xiaoguang Wang4c273352019-08-24 23:10:17 -0400572 trace_jbd2_handle_start(journal->j_fs_dev->bd_dev,
573 handle->h_transaction->t_tid, type,
574 line_no, handle->h_buffer_credits);
Dan Carpenter92e3b402014-02-17 20:33:01 -0500575 return 0;
Jan Kara8f7d89f2013-06-04 12:35:11 -0400576}
577EXPORT_SYMBOL(jbd2_journal_start_reserved);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700578
579/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700580 * int jbd2_journal_extend() - extend buffer credits.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700581 * @handle: handle to 'extend'
582 * @nblocks: nr blocks to try to extend by.
583 *
584 * Some transactions, such as large extends and truncates, can be done
585 * atomically all at once or in several stages. The operation requests
Masanari Iidabd7ced92016-02-02 22:31:06 +0900586 * a credit for a number of buffer modifications in advance, but can
Dave Kleikamp470decc2006-10-11 01:20:57 -0700587 * extend its credit if it needs more.
588 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700589 * jbd2_journal_extend tries to give the running handle more buffer credits.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700590 * It does not guarantee that allocation - this is a best-effort only.
591 * The calling process MUST be able to deal cleanly with a failure to
592 * extend here.
593 *
594 * Return 0 on success, non-zero on failure.
595 *
596 * return code < 0 implies an error
597 * return code > 0 implies normal transaction-full status.
598 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700599int jbd2_journal_extend(handle_t *handle, int nblocks)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700600{
601 transaction_t *transaction = handle->h_transaction;
Theodore Ts'o41a5b912013-07-01 08:12:41 -0400602 journal_t *journal;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700603 int result;
604 int wanted;
605
Dave Kleikamp470decc2006-10-11 01:20:57 -0700606 if (is_handle_aborted(handle))
Theodore Ts'o41a5b912013-07-01 08:12:41 -0400607 return -EROFS;
608 journal = transaction->t_journal;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700609
610 result = 1;
611
Theodore Ts'oa931da62010-08-03 21:35:12 -0400612 read_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700613
614 /* Don't extend a locked-down transaction! */
Theodore Ts'o41a5b912013-07-01 08:12:41 -0400615 if (transaction->t_state != T_RUNNING) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700616 jbd_debug(3, "denied handle %p %d blocks: "
617 "transaction not running\n", handle, nblocks);
618 goto error_out;
619 }
620
621 spin_lock(&transaction->t_handle_lock);
Jan Karafe1e8db52013-06-04 12:22:15 -0400622 wanted = atomic_add_return(nblocks,
623 &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700624
625 if (wanted > journal->j_max_transaction_buffers) {
626 jbd_debug(3, "denied handle %p %d blocks: "
627 "transaction too large\n", handle, nblocks);
Jan Karafe1e8db52013-06-04 12:22:15 -0400628 atomic_sub(nblocks, &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700629 goto unlock;
630 }
631
Jan Kara76c39902013-06-04 12:12:57 -0400632 if (wanted + (wanted >> JBD2_CONTROL_BLOCKS_SHIFT) >
633 jbd2_log_space_left(journal)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700634 jbd_debug(3, "denied handle %p %d blocks: "
635 "insufficient log space\n", handle, nblocks);
Jan Karafe1e8db52013-06-04 12:22:15 -0400636 atomic_sub(nblocks, &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700637 goto unlock;
638 }
639
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500640 trace_jbd2_handle_extend(journal->j_fs_dev->bd_dev,
Theodore Ts'o41a5b912013-07-01 08:12:41 -0400641 transaction->t_tid,
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500642 handle->h_type, handle->h_line_no,
643 handle->h_buffer_credits,
644 nblocks);
645
Dave Kleikamp470decc2006-10-11 01:20:57 -0700646 handle->h_buffer_credits += nblocks;
Theodore Ts'o343d9c22013-02-08 13:00:22 -0500647 handle->h_requested_credits += nblocks;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700648 result = 0;
649
650 jbd_debug(3, "extended handle %p by %d\n", handle, nblocks);
651unlock:
652 spin_unlock(&transaction->t_handle_lock);
653error_out:
Theodore Ts'oa931da62010-08-03 21:35:12 -0400654 read_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700655 return result;
656}
657
658
659/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700660 * int jbd2_journal_restart() - restart a handle .
Dave Kleikamp470decc2006-10-11 01:20:57 -0700661 * @handle: handle to restart
662 * @nblocks: nr credits requested
Tobin C. Hardingf69120c2018-01-10 00:27:29 -0500663 * @gfp_mask: memory allocation flags (for start_this_handle)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700664 *
665 * Restart a handle for a multi-transaction filesystem
666 * operation.
667 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700668 * If the jbd2_journal_extend() call above fails to grant new buffer credits
669 * to a running handle, a call to jbd2_journal_restart will commit the
Dave Kleikamp470decc2006-10-11 01:20:57 -0700670 * handle's transaction so far and reattach the handle to a new
Masanari Iidabd7ced92016-02-02 22:31:06 +0900671 * transaction capable of guaranteeing the requested number of
Jan Kara8f7d89f2013-06-04 12:35:11 -0400672 * credits. We preserve reserved handle if there's any attached to the
673 * passed in handle.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700674 */
Dan Carpenterd2159fb2011-09-04 10:20:14 -0400675int jbd2__journal_restart(handle_t *handle, int nblocks, gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700676{
677 transaction_t *transaction = handle->h_transaction;
Theodore Ts'o41a5b912013-07-01 08:12:41 -0400678 journal_t *journal;
Theodore Ts'oe4471832011-02-12 08:18:24 -0500679 tid_t tid;
680 int need_to_start, ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700681
682 /* If we've had an abort of any type, don't even think about
683 * actually doing the restart! */
684 if (is_handle_aborted(handle))
685 return 0;
Theodore Ts'o41a5b912013-07-01 08:12:41 -0400686 journal = transaction->t_journal;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700687
688 /*
689 * First unlink the handle from its current transaction, and start the
690 * commit on that.
691 */
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400692 J_ASSERT(atomic_read(&transaction->t_updates) > 0);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700693 J_ASSERT(journal_current_handle() == handle);
694
Theodore Ts'oa931da62010-08-03 21:35:12 -0400695 read_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700696 spin_lock(&transaction->t_handle_lock);
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400697 atomic_sub(handle->h_buffer_credits,
698 &transaction->t_outstanding_credits);
Jan Kara8f7d89f2013-06-04 12:35:11 -0400699 if (handle->h_rsv_handle) {
700 sub_reserved_credits(journal,
701 handle->h_rsv_handle->h_buffer_credits);
702 }
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400703 if (atomic_dec_and_test(&transaction->t_updates))
Dave Kleikamp470decc2006-10-11 01:20:57 -0700704 wake_up(&journal->j_wait_updates);
Theodore Ts'o39c04152013-07-01 08:12:40 -0400705 tid = transaction->t_tid;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700706 spin_unlock(&transaction->t_handle_lock);
Theodore Ts'o41a5b912013-07-01 08:12:41 -0400707 handle->h_transaction = NULL;
708 current->journal_info = NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700709
710 jbd_debug(2, "restarting handle %p\n", handle);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500711 need_to_start = !tid_geq(journal->j_commit_request, tid);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400712 read_unlock(&journal->j_state_lock);
Theodore Ts'oe4471832011-02-12 08:18:24 -0500713 if (need_to_start)
714 jbd2_log_start_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700715
Jan Karaab714af2016-06-30 11:39:38 -0400716 rwsem_release(&journal->j_trans_commit_map, 1, _THIS_IP_);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700717 handle->h_buffer_credits = nblocks;
Tahsin Erdoganb4709062017-05-21 22:32:23 -0400718 /*
719 * Restore the original nofs context because the journal restart
720 * is basically the same thing as journal stop and start.
721 * start_this_handle will start a new nofs context.
722 */
723 memalloc_nofs_restore(handle->saved_alloc_context);
Theodore Ts'o47def822010-07-27 11:56:05 -0400724 ret = start_this_handle(journal, handle, gfp_mask);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700725 return ret;
726}
Theodore Ts'o47def822010-07-27 11:56:05 -0400727EXPORT_SYMBOL(jbd2__journal_restart);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700728
729
Theodore Ts'o47def822010-07-27 11:56:05 -0400730int jbd2_journal_restart(handle_t *handle, int nblocks)
731{
732 return jbd2__journal_restart(handle, nblocks, GFP_NOFS);
733}
734EXPORT_SYMBOL(jbd2_journal_restart);
735
Dave Kleikamp470decc2006-10-11 01:20:57 -0700736/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700737 * void jbd2_journal_lock_updates () - establish a transaction barrier.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700738 * @journal: Journal to establish a barrier on.
739 *
740 * This locks out any further updates from being started, and blocks
741 * until all existing updates have completed, returning only once the
742 * journal is in a quiescent state with no updates running.
743 *
744 * The journal lock should not be held on entry.
745 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700746void jbd2_journal_lock_updates(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700747{
748 DEFINE_WAIT(wait);
749
Jan Kara1eaa5662016-06-30 11:40:54 -0400750 jbd2_might_wait_for_commit(journal);
751
Theodore Ts'oa931da62010-08-03 21:35:12 -0400752 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700753 ++journal->j_barrier_count;
754
Jan Kara8f7d89f2013-06-04 12:35:11 -0400755 /* Wait until there are no reserved handles */
756 if (atomic_read(&journal->j_reserved_credits)) {
757 write_unlock(&journal->j_state_lock);
758 wait_event(journal->j_wait_reserved,
759 atomic_read(&journal->j_reserved_credits) == 0);
760 write_lock(&journal->j_state_lock);
761 }
762
Dave Kleikamp470decc2006-10-11 01:20:57 -0700763 /* Wait until there are no running updates */
764 while (1) {
765 transaction_t *transaction = journal->j_running_transaction;
766
767 if (!transaction)
768 break;
769
770 spin_lock(&transaction->t_handle_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700771 prepare_to_wait(&journal->j_wait_updates, &wait,
772 TASK_UNINTERRUPTIBLE);
Jan Kara9837d8e2012-01-04 22:03:11 -0500773 if (!atomic_read(&transaction->t_updates)) {
774 spin_unlock(&transaction->t_handle_lock);
775 finish_wait(&journal->j_wait_updates, &wait);
776 break;
777 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700778 spin_unlock(&transaction->t_handle_lock);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400779 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700780 schedule();
781 finish_wait(&journal->j_wait_updates, &wait);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400782 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700783 }
Theodore Ts'oa931da62010-08-03 21:35:12 -0400784 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700785
786 /*
787 * We have now established a barrier against other normal updates, but
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700788 * we also need to barrier against other jbd2_journal_lock_updates() calls
Dave Kleikamp470decc2006-10-11 01:20:57 -0700789 * to make sure that we serialise special journal-locked operations
790 * too.
791 */
792 mutex_lock(&journal->j_barrier);
793}
794
795/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700796 * void jbd2_journal_unlock_updates (journal_t* journal) - release barrier
Dave Kleikamp470decc2006-10-11 01:20:57 -0700797 * @journal: Journal to release the barrier on.
798 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700799 * Release a transaction barrier obtained with jbd2_journal_lock_updates().
Dave Kleikamp470decc2006-10-11 01:20:57 -0700800 *
801 * Should be called without the journal lock held.
802 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700803void jbd2_journal_unlock_updates (journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700804{
805 J_ASSERT(journal->j_barrier_count != 0);
806
807 mutex_unlock(&journal->j_barrier);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400808 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700809 --journal->j_barrier_count;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400810 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700811 wake_up(&journal->j_wait_transaction_locked);
812}
813
Jan Karaf91d1d02009-07-13 16:16:20 -0400814static void warn_dirty_buffer(struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700815{
Jan Karaf91d1d02009-07-13 16:16:20 -0400816 printk(KERN_WARNING
Dmitry Monakhova1c6f0572015-04-13 16:31:37 +0400817 "JBD2: Spotted dirty metadata buffer (dev = %pg, blocknr = %llu). "
Jan Karaf91d1d02009-07-13 16:16:20 -0400818 "There's a risk of filesystem corruption in case of system "
819 "crash.\n",
Dmitry Monakhova1c6f0572015-04-13 16:31:37 +0400820 bh->b_bdev, (unsigned long long)bh->b_blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700821}
822
Jan Karaee57aba2015-06-08 12:39:07 -0400823/* Call t_frozen trigger and copy buffer data into jh->b_frozen_data. */
824static void jbd2_freeze_jh_data(struct journal_head *jh)
825{
826 struct page *page;
827 int offset;
828 char *source;
829 struct buffer_head *bh = jh2bh(jh);
830
831 J_EXPECT_JH(jh, buffer_uptodate(bh), "Possible IO failure.\n");
832 page = bh->b_page;
833 offset = offset_in_page(bh->b_data);
834 source = kmap_atomic(page);
835 /* Fire data frozen trigger just before we copy the data */
836 jbd2_buffer_frozen_trigger(jh, source + offset, jh->b_triggers);
837 memcpy(jh->b_frozen_data, source + offset, bh->b_size);
838 kunmap_atomic(source);
839
840 /*
841 * Now that the frozen data is saved off, we need to store any matching
842 * triggers.
843 */
844 jh->b_frozen_triggers = jh->b_triggers;
845}
846
Dave Kleikamp470decc2006-10-11 01:20:57 -0700847/*
848 * If the buffer is already part of the current transaction, then there
849 * is nothing we need to do. If it is already part of a prior
850 * transaction which we are still committing to disk, then we need to
851 * make sure that we do not overwrite the old copy: we do copy-out to
852 * preserve the copy going to disk. We also account the buffer against
853 * the handle's metadata buffer credits (unless the buffer is already
854 * part of the transaction, that is).
855 *
856 */
857static int
858do_get_write_access(handle_t *handle, struct journal_head *jh,
859 int force_copy)
860{
861 struct buffer_head *bh;
Theodore Ts'o41a5b912013-07-01 08:12:41 -0400862 transaction_t *transaction = handle->h_transaction;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700863 journal_t *journal;
864 int error;
865 char *frozen_buffer = NULL;
Theodore Ts'of783f092013-04-21 16:47:54 -0400866 unsigned long start_lock, time_lock;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700867
868 if (is_handle_aborted(handle))
869 return -EROFS;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700870 journal = transaction->t_journal;
871
Theodore Ts'ocfef2c62010-12-18 13:07:34 -0500872 jbd_debug(5, "journal_head %p, force_copy %d\n", jh, force_copy);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700873
874 JBUFFER_TRACE(jh, "entry");
875repeat:
876 bh = jh2bh(jh);
877
878 /* @@@ Need to check for errors here at some point. */
879
Theodore Ts'of783f092013-04-21 16:47:54 -0400880 start_lock = jiffies;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700881 lock_buffer(bh);
882 jbd_lock_bh_state(bh);
883
Theodore Ts'of783f092013-04-21 16:47:54 -0400884 /* If it takes too long to lock the buffer, trace it */
885 time_lock = jbd2_time_diff(start_lock, jiffies);
886 if (time_lock > HZ/10)
887 trace_jbd2_lock_buffer_stall(bh->b_bdev->bd_dev,
888 jiffies_to_msecs(time_lock));
889
Dave Kleikamp470decc2006-10-11 01:20:57 -0700890 /* We now hold the buffer lock so it is safe to query the buffer
891 * state. Is the buffer dirty?
892 *
893 * If so, there are two possibilities. The buffer may be
894 * non-journaled, and undergoing a quite legitimate writeback.
895 * Otherwise, it is journaled, and we don't expect dirty buffers
896 * in that state (the buffers should be marked JBD_Dirty
897 * instead.) So either the IO is being done under our own
898 * control and this is a bug, or it's a third party IO such as
899 * dump(8) (which may leave the buffer scheduled for read ---
900 * ie. locked but not dirty) or tune2fs (which may actually have
901 * the buffer dirtied, ugh.) */
902
903 if (buffer_dirty(bh)) {
904 /*
905 * First question: is this buffer already part of the current
906 * transaction or the existing committing transaction?
907 */
908 if (jh->b_transaction) {
909 J_ASSERT_JH(jh,
910 jh->b_transaction == transaction ||
911 jh->b_transaction ==
912 journal->j_committing_transaction);
913 if (jh->b_next_transaction)
914 J_ASSERT_JH(jh, jh->b_next_transaction ==
915 transaction);
Jan Karaf91d1d02009-07-13 16:16:20 -0400916 warn_dirty_buffer(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700917 }
918 /*
919 * In any case we need to clean the dirty flag and we must
920 * do it under the buffer lock to be sure we don't race
921 * with running write-out.
922 */
Jan Karaf91d1d02009-07-13 16:16:20 -0400923 JBUFFER_TRACE(jh, "Journalling dirty buffer");
924 clear_buffer_dirty(bh);
925 set_buffer_jbddirty(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700926 }
927
928 unlock_buffer(bh);
929
930 error = -EROFS;
931 if (is_handle_aborted(handle)) {
932 jbd_unlock_bh_state(bh);
933 goto out;
934 }
935 error = 0;
936
937 /*
938 * The buffer is already part of this transaction if b_transaction or
939 * b_next_transaction points to it
940 */
941 if (jh->b_transaction == transaction ||
942 jh->b_next_transaction == transaction)
943 goto done;
944
945 /*
Josef Bacik9fc7c632008-04-17 10:38:59 -0400946 * this is the first time this transaction is touching this buffer,
947 * reset the modified flag
948 */
Colin Ian King561405f2018-12-04 00:20:10 -0500949 jh->b_modified = 0;
Josef Bacik9fc7c632008-04-17 10:38:59 -0400950
951 /*
Jan Kara8b00f402015-06-08 12:44:21 -0400952 * If the buffer is not journaled right now, we need to make sure it
953 * doesn't get written to disk before the caller actually commits the
954 * new data
955 */
956 if (!jh->b_transaction) {
957 JBUFFER_TRACE(jh, "no transaction");
958 J_ASSERT_JH(jh, !jh->b_next_transaction);
959 JBUFFER_TRACE(jh, "file as BJ_Reserved");
Jan Karade92c8c2015-06-08 12:46:37 -0400960 /*
961 * Make sure all stores to jh (b_modified, b_frozen_data) are
962 * visible before attaching it to the running transaction.
963 * Paired with barrier in jbd2_write_access_granted()
964 */
965 smp_wmb();
Jan Kara8b00f402015-06-08 12:44:21 -0400966 spin_lock(&journal->j_list_lock);
967 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
968 spin_unlock(&journal->j_list_lock);
969 goto done;
970 }
971 /*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700972 * If there is already a copy-out version of this buffer, then we don't
973 * need to make another one
974 */
975 if (jh->b_frozen_data) {
976 JBUFFER_TRACE(jh, "has frozen data");
977 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
Jan Karade92c8c2015-06-08 12:46:37 -0400978 goto attach_next;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700979 }
980
Jan Kara8b00f402015-06-08 12:44:21 -0400981 JBUFFER_TRACE(jh, "owned by older transaction");
982 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
983 J_ASSERT_JH(jh, jh->b_transaction == journal->j_committing_transaction);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700984
985 /*
Jan Kara8b00f402015-06-08 12:44:21 -0400986 * There is one case we have to be very careful about. If the
987 * committing transaction is currently writing this buffer out to disk
988 * and has NOT made a copy-out, then we cannot modify the buffer
989 * contents at all right now. The essence of copy-out is that it is
990 * the extra copy, not the primary copy, which gets journaled. If the
991 * primary copy is already going to disk then we cannot do copy-out
992 * here.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700993 */
Jan Kara8b00f402015-06-08 12:44:21 -0400994 if (buffer_shadow(bh)) {
995 JBUFFER_TRACE(jh, "on shadow: sleep");
996 jbd_unlock_bh_state(bh);
997 wait_on_bit_io(&bh->b_state, BH_Shadow, TASK_UNINTERRUPTIBLE);
998 goto repeat;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700999 }
1000
Jan Kara8b00f402015-06-08 12:44:21 -04001001 /*
1002 * Only do the copy if the currently-owning transaction still needs it.
1003 * If buffer isn't on BJ_Metadata list, the committing transaction is
1004 * past that stage (here we use the fact that BH_Shadow is set under
1005 * bh_state lock together with refiling to BJ_Shadow list and at this
1006 * point we know the buffer doesn't have BH_Shadow set).
1007 *
1008 * Subtle point, though: if this is a get_undo_access, then we will be
1009 * relying on the frozen_data to contain the new value of the
1010 * committed_data record after the transaction, so we HAVE to force the
1011 * frozen_data copy in that case.
1012 */
1013 if (jh->b_jlist == BJ_Metadata || force_copy) {
1014 JBUFFER_TRACE(jh, "generate frozen data");
1015 if (!frozen_buffer) {
1016 JBUFFER_TRACE(jh, "allocate memory for buffer");
1017 jbd_unlock_bh_state(bh);
Michal Hocko490c1b42016-03-13 17:38:20 -04001018 frozen_buffer = jbd2_alloc(jh2bh(jh)->b_size,
1019 GFP_NOFS | __GFP_NOFAIL);
Jan Kara8b00f402015-06-08 12:44:21 -04001020 goto repeat;
1021 }
1022 jh->b_frozen_data = frozen_buffer;
1023 frozen_buffer = NULL;
1024 jbd2_freeze_jh_data(jh);
1025 }
Jan Karade92c8c2015-06-08 12:46:37 -04001026attach_next:
1027 /*
1028 * Make sure all stores to jh (b_modified, b_frozen_data) are visible
1029 * before attaching it to the running transaction. Paired with barrier
1030 * in jbd2_write_access_granted()
1031 */
1032 smp_wmb();
Jan Kara8b00f402015-06-08 12:44:21 -04001033 jh->b_next_transaction = transaction;
1034
Dave Kleikamp470decc2006-10-11 01:20:57 -07001035done:
Dave Kleikamp470decc2006-10-11 01:20:57 -07001036 jbd_unlock_bh_state(bh);
1037
1038 /*
1039 * If we are about to journal a buffer, then any revoke pending on it is
1040 * no longer valid
1041 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001042 jbd2_journal_cancel_revoke(handle, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001043
1044out:
1045 if (unlikely(frozen_buffer)) /* It's usually NULL */
Mingming Caoaf1e76d2007-10-16 18:38:25 -04001046 jbd2_free(frozen_buffer, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001047
1048 JBUFFER_TRACE(jh, "exit");
1049 return error;
1050}
1051
Jan Karade92c8c2015-06-08 12:46:37 -04001052/* Fast check whether buffer is already attached to the required transaction */
Junxiao Bi087ffd42015-12-04 12:29:28 -05001053static bool jbd2_write_access_granted(handle_t *handle, struct buffer_head *bh,
1054 bool undo)
Jan Karade92c8c2015-06-08 12:46:37 -04001055{
1056 struct journal_head *jh;
1057 bool ret = false;
1058
1059 /* Dirty buffers require special handling... */
1060 if (buffer_dirty(bh))
1061 return false;
1062
1063 /*
1064 * RCU protects us from dereferencing freed pages. So the checks we do
1065 * are guaranteed not to oops. However the jh slab object can get freed
1066 * & reallocated while we work with it. So we have to be careful. When
1067 * we see jh attached to the running transaction, we know it must stay
1068 * so until the transaction is committed. Thus jh won't be freed and
1069 * will be attached to the same bh while we run. However it can
1070 * happen jh gets freed, reallocated, and attached to the transaction
1071 * just after we get pointer to it from bh. So we have to be careful
1072 * and recheck jh still belongs to our bh before we return success.
1073 */
1074 rcu_read_lock();
1075 if (!buffer_jbd(bh))
1076 goto out;
1077 /* This should be bh2jh() but that doesn't work with inline functions */
1078 jh = READ_ONCE(bh->b_private);
1079 if (!jh)
1080 goto out;
Junxiao Bi087ffd42015-12-04 12:29:28 -05001081 /* For undo access buffer must have data copied */
1082 if (undo && !jh->b_committed_data)
1083 goto out;
Jan Karade92c8c2015-06-08 12:46:37 -04001084 if (jh->b_transaction != handle->h_transaction &&
1085 jh->b_next_transaction != handle->h_transaction)
1086 goto out;
1087 /*
1088 * There are two reasons for the barrier here:
1089 * 1) Make sure to fetch b_bh after we did previous checks so that we
1090 * detect when jh went through free, realloc, attach to transaction
1091 * while we were checking. Paired with implicit barrier in that path.
1092 * 2) So that access to bh done after jbd2_write_access_granted()
1093 * doesn't get reordered and see inconsistent state of concurrent
1094 * do_get_write_access().
1095 */
1096 smp_mb();
1097 if (unlikely(jh->b_bh != bh))
1098 goto out;
1099 ret = true;
1100out:
1101 rcu_read_unlock();
1102 return ret;
1103}
1104
Dave Kleikamp470decc2006-10-11 01:20:57 -07001105/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001106 * int jbd2_journal_get_write_access() - notify intent to modify a buffer for metadata (not data) update.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001107 * @handle: transaction to add buffer modifications to
1108 * @bh: bh to be used for metadata writes
Dave Kleikamp470decc2006-10-11 01:20:57 -07001109 *
Mauro Carvalho Chehabdf1b5602017-05-12 07:58:23 -03001110 * Returns: error code or 0 on success.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001111 *
1112 * In full data journalling mode the buffer may be of type BJ_AsyncData,
Mauro Carvalho Chehabdf1b5602017-05-12 07:58:23 -03001113 * because we're ``write()ing`` a buffer which is also part of a shared mapping.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001114 */
1115
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001116int jbd2_journal_get_write_access(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001117{
Jan Karade92c8c2015-06-08 12:46:37 -04001118 struct journal_head *jh;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001119 int rc;
1120
Junxiao Bi087ffd42015-12-04 12:29:28 -05001121 if (jbd2_write_access_granted(handle, bh, false))
Jan Karade92c8c2015-06-08 12:46:37 -04001122 return 0;
1123
1124 jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001125 /* We do not want to get caught playing with fields which the
1126 * log thread also manipulates. Make sure that the buffer
1127 * completes any outstanding IO before proceeding. */
1128 rc = do_get_write_access(handle, jh, 0);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001129 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001130 return rc;
1131}
1132
1133
1134/*
1135 * When the user wants to journal a newly created buffer_head
1136 * (ie. getblk() returned a new buffer and we are going to populate it
1137 * manually rather than reading off disk), then we need to keep the
1138 * buffer_head locked until it has been completely filled with new
1139 * data. In this case, we should be able to make the assertion that
1140 * the bh is not already part of an existing transaction.
1141 *
1142 * The buffer should already be locked by the caller by this point.
1143 * There is no lock ranking violation: it was a newly created,
1144 * unlocked buffer beforehand. */
1145
1146/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001147 * int jbd2_journal_get_create_access () - notify intent to use newly created bh
Dave Kleikamp470decc2006-10-11 01:20:57 -07001148 * @handle: transaction to new buffer to
1149 * @bh: new buffer.
1150 *
1151 * Call this if you create a new bh.
1152 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001153int jbd2_journal_get_create_access(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001154{
1155 transaction_t *transaction = handle->h_transaction;
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001156 journal_t *journal;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001157 struct journal_head *jh = jbd2_journal_add_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001158 int err;
1159
1160 jbd_debug(5, "journal_head %p\n", jh);
1161 err = -EROFS;
1162 if (is_handle_aborted(handle))
1163 goto out;
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001164 journal = transaction->t_journal;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001165 err = 0;
1166
1167 JBUFFER_TRACE(jh, "entry");
1168 /*
1169 * The buffer may already belong to this transaction due to pre-zeroing
1170 * in the filesystem's new_block code. It may also be on the previous,
1171 * committing transaction's lists, but it HAS to be in Forget state in
1172 * that case: the transaction must have deleted the buffer for it to be
1173 * reused here.
1174 */
1175 jbd_lock_bh_state(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001176 J_ASSERT_JH(jh, (jh->b_transaction == transaction ||
1177 jh->b_transaction == NULL ||
1178 (jh->b_transaction == journal->j_committing_transaction &&
1179 jh->b_jlist == BJ_Forget)));
1180
1181 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
1182 J_ASSERT_JH(jh, buffer_locked(jh2bh(jh)));
1183
1184 if (jh->b_transaction == NULL) {
Jan Karaf91d1d02009-07-13 16:16:20 -04001185 /*
1186 * Previous jbd2_journal_forget() could have left the buffer
1187 * with jbddirty bit set because it was being committed. When
1188 * the commit finished, we've filed the buffer for
1189 * checkpointing and marked it dirty. Now we are reallocating
1190 * the buffer so the transaction freeing it must have
1191 * committed and so it's safe to clear the dirty bit.
1192 */
1193 clear_buffer_dirty(jh2bh(jh));
Josef Bacik9fc7c632008-04-17 10:38:59 -04001194 /* first access by this transaction */
1195 jh->b_modified = 0;
1196
Dave Kleikamp470decc2006-10-11 01:20:57 -07001197 JBUFFER_TRACE(jh, "file as BJ_Reserved");
Theodore Ts'o6e4862a2014-03-09 00:46:23 -05001198 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001199 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
Taesoo Kim559cce62016-10-12 23:19:18 -04001200 spin_unlock(&journal->j_list_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001201 } else if (jh->b_transaction == journal->j_committing_transaction) {
Josef Bacik9fc7c632008-04-17 10:38:59 -04001202 /* first access by this transaction */
1203 jh->b_modified = 0;
1204
Dave Kleikamp470decc2006-10-11 01:20:57 -07001205 JBUFFER_TRACE(jh, "set next transaction");
Theodore Ts'o6e4862a2014-03-09 00:46:23 -05001206 spin_lock(&journal->j_list_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001207 jh->b_next_transaction = transaction;
Taesoo Kim559cce62016-10-12 23:19:18 -04001208 spin_unlock(&journal->j_list_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001209 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001210 jbd_unlock_bh_state(bh);
1211
1212 /*
1213 * akpm: I added this. ext3_alloc_branch can pick up new indirect
1214 * blocks which contain freed but then revoked metadata. We need
1215 * to cancel the revoke in case we end up freeing it yet again
1216 * and the reallocating as data - this would cause a second revoke,
1217 * which hits an assertion error.
1218 */
1219 JBUFFER_TRACE(jh, "cancelling revoke");
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001220 jbd2_journal_cancel_revoke(handle, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001221out:
Ding Dinghua3991b402011-05-25 17:43:48 -04001222 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001223 return err;
1224}
1225
1226/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001227 * int jbd2_journal_get_undo_access() - Notify intent to modify metadata with
Dave Kleikamp470decc2006-10-11 01:20:57 -07001228 * non-rewindable consequences
1229 * @handle: transaction
1230 * @bh: buffer to undo
Dave Kleikamp470decc2006-10-11 01:20:57 -07001231 *
1232 * Sometimes there is a need to distinguish between metadata which has
1233 * been committed to disk and that which has not. The ext3fs code uses
1234 * this for freeing and allocating space, we have to make sure that we
1235 * do not reuse freed space until the deallocation has been committed,
1236 * since if we overwrote that space we would make the delete
1237 * un-rewindable in case of a crash.
1238 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001239 * To deal with that, jbd2_journal_get_undo_access requests write access to a
Dave Kleikamp470decc2006-10-11 01:20:57 -07001240 * buffer for parts of non-rewindable operations such as delete
1241 * operations on the bitmaps. The journaling code must keep a copy of
1242 * the buffer's contents prior to the undo_access call until such time
1243 * as we know that the buffer has definitely been committed to disk.
1244 *
1245 * We never need to know which transaction the committed data is part
1246 * of, buffers touched here are guaranteed to be dirtied later and so
1247 * will be committed to a new transaction in due course, at which point
1248 * we can discard the old committed data pointer.
1249 *
1250 * Returns error number or 0 on success.
1251 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001252int jbd2_journal_get_undo_access(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001253{
1254 int err;
Jan Karade92c8c2015-06-08 12:46:37 -04001255 struct journal_head *jh;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001256 char *committed_data = NULL;
1257
Junxiao Bi087ffd42015-12-04 12:29:28 -05001258 if (jbd2_write_access_granted(handle, bh, true))
Jan Karade92c8c2015-06-08 12:46:37 -04001259 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001260
Jan Karade92c8c2015-06-08 12:46:37 -04001261 jh = jbd2_journal_add_journal_head(bh);
zhangyi (F)01215d32019-02-21 11:24:09 -05001262 JBUFFER_TRACE(jh, "entry");
1263
Dave Kleikamp470decc2006-10-11 01:20:57 -07001264 /*
1265 * Do this first --- it can drop the journal lock, so we want to
1266 * make sure that obtaining the committed_data is done
1267 * atomically wrt. completion of any outstanding commits.
1268 */
1269 err = do_get_write_access(handle, jh, 1);
1270 if (err)
1271 goto out;
1272
1273repeat:
Michal Hocko490c1b42016-03-13 17:38:20 -04001274 if (!jh->b_committed_data)
1275 committed_data = jbd2_alloc(jh2bh(jh)->b_size,
1276 GFP_NOFS|__GFP_NOFAIL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001277
1278 jbd_lock_bh_state(bh);
1279 if (!jh->b_committed_data) {
1280 /* Copy out the current buffer contents into the
1281 * preserved, committed copy. */
1282 JBUFFER_TRACE(jh, "generate b_committed data");
1283 if (!committed_data) {
1284 jbd_unlock_bh_state(bh);
1285 goto repeat;
1286 }
1287
1288 jh->b_committed_data = committed_data;
1289 committed_data = NULL;
1290 memcpy(jh->b_committed_data, bh->b_data, bh->b_size);
1291 }
1292 jbd_unlock_bh_state(bh);
1293out:
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001294 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001295 if (unlikely(committed_data))
Mingming Caoaf1e76d2007-10-16 18:38:25 -04001296 jbd2_free(committed_data, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001297 return err;
1298}
1299
1300/**
Joel Beckere06c8222008-09-11 15:35:47 -07001301 * void jbd2_journal_set_triggers() - Add triggers for commit writeout
1302 * @bh: buffer to trigger on
1303 * @type: struct jbd2_buffer_trigger_type containing the trigger(s).
1304 *
1305 * Set any triggers on this journal_head. This is always safe, because
1306 * triggers for a committing buffer will be saved off, and triggers for
1307 * a running transaction will match the buffer in that transaction.
1308 *
1309 * Call with NULL to clear the triggers.
1310 */
1311void jbd2_journal_set_triggers(struct buffer_head *bh,
1312 struct jbd2_buffer_trigger_type *type)
1313{
Jan Karaad56eda2013-03-11 13:24:56 -04001314 struct journal_head *jh = jbd2_journal_grab_journal_head(bh);
Joel Beckere06c8222008-09-11 15:35:47 -07001315
Jan Karaad56eda2013-03-11 13:24:56 -04001316 if (WARN_ON(!jh))
1317 return;
Joel Beckere06c8222008-09-11 15:35:47 -07001318 jh->b_triggers = type;
Jan Karaad56eda2013-03-11 13:24:56 -04001319 jbd2_journal_put_journal_head(jh);
Joel Beckere06c8222008-09-11 15:35:47 -07001320}
1321
Jan Kara13ceef02010-07-14 07:56:33 +02001322void jbd2_buffer_frozen_trigger(struct journal_head *jh, void *mapped_data,
Joel Beckere06c8222008-09-11 15:35:47 -07001323 struct jbd2_buffer_trigger_type *triggers)
1324{
1325 struct buffer_head *bh = jh2bh(jh);
1326
Jan Kara13ceef02010-07-14 07:56:33 +02001327 if (!triggers || !triggers->t_frozen)
Joel Beckere06c8222008-09-11 15:35:47 -07001328 return;
1329
Jan Kara13ceef02010-07-14 07:56:33 +02001330 triggers->t_frozen(triggers, bh, mapped_data, bh->b_size);
Joel Beckere06c8222008-09-11 15:35:47 -07001331}
1332
1333void jbd2_buffer_abort_trigger(struct journal_head *jh,
1334 struct jbd2_buffer_trigger_type *triggers)
1335{
1336 if (!triggers || !triggers->t_abort)
1337 return;
1338
1339 triggers->t_abort(triggers, jh2bh(jh));
1340}
1341
Joel Beckere06c8222008-09-11 15:35:47 -07001342/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001343 * int jbd2_journal_dirty_metadata() - mark a buffer as containing dirty metadata
Dave Kleikamp470decc2006-10-11 01:20:57 -07001344 * @handle: transaction to add buffer to.
1345 * @bh: buffer to mark
1346 *
1347 * mark dirty metadata which needs to be journaled as part of the current
1348 * transaction.
1349 *
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001350 * The buffer must have previously had jbd2_journal_get_write_access()
1351 * called so that it has a valid journal_head attached to the buffer
1352 * head.
1353 *
Dave Kleikamp470decc2006-10-11 01:20:57 -07001354 * The buffer is placed on the transaction's metadata list and is marked
1355 * as belonging to the transaction.
1356 *
1357 * Returns error number or 0 on success.
1358 *
1359 * Special care needs to be taken if the buffer already belongs to the
1360 * current committing transaction (in which case we should have frozen
1361 * data present for that commit). In that case, we don't relink the
1362 * buffer: that only gets done when the old transaction finally
1363 * completes its commit.
1364 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001365int jbd2_journal_dirty_metadata(handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001366{
1367 transaction_t *transaction = handle->h_transaction;
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001368 journal_t *journal;
Jan Karaad56eda2013-03-11 13:24:56 -04001369 struct journal_head *jh;
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001370 int ret = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001371
Dave Kleikamp470decc2006-10-11 01:20:57 -07001372 if (is_handle_aborted(handle))
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001373 return -EROFS;
zhangyi (F)01215d32019-02-21 11:24:09 -05001374 if (!buffer_jbd(bh))
1375 return -EUCLEAN;
1376
Jan Kara6e06ae82015-07-12 18:11:30 -04001377 /*
1378 * We don't grab jh reference here since the buffer must be part
1379 * of the running transaction.
1380 */
1381 jh = bh2jh(bh);
zhangyi (F)01215d32019-02-21 11:24:09 -05001382 jbd_debug(5, "journal_head %p\n", jh);
1383 JBUFFER_TRACE(jh, "entry");
1384
Jan Kara6e06ae82015-07-12 18:11:30 -04001385 /*
1386 * This and the following assertions are unreliable since we may see jh
1387 * in inconsistent state unless we grab bh_state lock. But this is
1388 * crucial to catch bugs so let's do a reliable check until the
1389 * lockless handling is fully proven.
1390 */
1391 if (jh->b_transaction != transaction &&
1392 jh->b_next_transaction != transaction) {
1393 jbd_lock_bh_state(bh);
1394 J_ASSERT_JH(jh, jh->b_transaction == transaction ||
1395 jh->b_next_transaction == transaction);
1396 jbd_unlock_bh_state(bh);
1397 }
1398 if (jh->b_modified == 1) {
1399 /* If it's in our transaction it must be in BJ_Metadata list. */
1400 if (jh->b_transaction == transaction &&
1401 jh->b_jlist != BJ_Metadata) {
1402 jbd_lock_bh_state(bh);
Theodore Ts'oe09463f2018-06-16 20:21:45 -04001403 if (jh->b_transaction == transaction &&
1404 jh->b_jlist != BJ_Metadata)
1405 pr_err("JBD2: assertion failure: h_type=%u "
1406 "h_line_no=%u block_no=%llu jlist=%u\n",
1407 handle->h_type, handle->h_line_no,
1408 (unsigned long long) bh->b_blocknr,
1409 jh->b_jlist);
Jan Kara6e06ae82015-07-12 18:11:30 -04001410 J_ASSERT_JH(jh, jh->b_transaction != transaction ||
1411 jh->b_jlist == BJ_Metadata);
1412 jbd_unlock_bh_state(bh);
1413 }
1414 goto out;
1415 }
1416
1417 journal = transaction->t_journal;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001418 jbd_lock_bh_state(bh);
1419
1420 if (jh->b_modified == 0) {
1421 /*
1422 * This buffer's got modified and becoming part
1423 * of the transaction. This needs to be done
1424 * once a transaction -bzzz
1425 */
Theodore Ts'of6c07ca2013-12-08 21:12:59 -05001426 if (handle->h_buffer_credits <= 0) {
1427 ret = -ENOSPC;
1428 goto out_unlock_bh;
1429 }
Theodore Ts'oe09463f2018-06-16 20:21:45 -04001430 jh->b_modified = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001431 handle->h_buffer_credits--;
1432 }
1433
1434 /*
1435 * fastpath, to avoid expensive locking. If this buffer is already
1436 * on the running transaction's metadata list there is nothing to do.
1437 * Nobody can take it off again because there is a handle open.
1438 * I _think_ we're OK here with SMP barriers - a mistaken decision will
1439 * result in this test being false, so we go in and take the locks.
1440 */
1441 if (jh->b_transaction == transaction && jh->b_jlist == BJ_Metadata) {
1442 JBUFFER_TRACE(jh, "fastpath");
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001443 if (unlikely(jh->b_transaction !=
1444 journal->j_running_transaction)) {
Dmitry Monakhova67c8482013-12-08 21:14:59 -05001445 printk(KERN_ERR "JBD2: %s: "
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001446 "jh->b_transaction (%llu, %p, %u) != "
Theodore Ts'o66a4cb12014-03-12 16:38:03 -04001447 "journal->j_running_transaction (%p, %u)\n",
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001448 journal->j_devname,
1449 (unsigned long long) bh->b_blocknr,
1450 jh->b_transaction,
1451 jh->b_transaction ? jh->b_transaction->t_tid : 0,
1452 journal->j_running_transaction,
1453 journal->j_running_transaction ?
1454 journal->j_running_transaction->t_tid : 0);
1455 ret = -EINVAL;
1456 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001457 goto out_unlock_bh;
1458 }
1459
1460 set_buffer_jbddirty(bh);
1461
1462 /*
1463 * Metadata already on the current transaction list doesn't
1464 * need to be filed. Metadata on another transaction's list must
1465 * be committing, and will be refiled once the commit completes:
1466 * leave it alone for now.
1467 */
1468 if (jh->b_transaction != transaction) {
1469 JBUFFER_TRACE(jh, "already on other transaction");
Theodore Ts'o66a4cb12014-03-12 16:38:03 -04001470 if (unlikely(((jh->b_transaction !=
1471 journal->j_committing_transaction)) ||
1472 (jh->b_next_transaction != transaction))) {
1473 printk(KERN_ERR "jbd2_journal_dirty_metadata: %s: "
1474 "bad jh for block %llu: "
1475 "transaction (%p, %u), "
1476 "jh->b_transaction (%p, %u), "
1477 "jh->b_next_transaction (%p, %u), jlist %u\n",
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001478 journal->j_devname,
1479 (unsigned long long) bh->b_blocknr,
Theodore Ts'o66a4cb12014-03-12 16:38:03 -04001480 transaction, transaction->t_tid,
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001481 jh->b_transaction,
Theodore Ts'o66a4cb12014-03-12 16:38:03 -04001482 jh->b_transaction ?
1483 jh->b_transaction->t_tid : 0,
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001484 jh->b_next_transaction,
1485 jh->b_next_transaction ?
1486 jh->b_next_transaction->t_tid : 0,
Theodore Ts'o66a4cb12014-03-12 16:38:03 -04001487 jh->b_jlist);
1488 WARN_ON(1);
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001489 ret = -EINVAL;
1490 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001491 /* And this case is illegal: we can't reuse another
1492 * transaction's data buffer, ever. */
1493 goto out_unlock_bh;
1494 }
1495
1496 /* That test should have eliminated the following case: */
Mingming Cao40191912008-01-28 23:58:27 -05001497 J_ASSERT_JH(jh, jh->b_frozen_data == NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001498
1499 JBUFFER_TRACE(jh, "file as BJ_Metadata");
1500 spin_lock(&journal->j_list_lock);
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001501 __jbd2_journal_file_buffer(jh, transaction, BJ_Metadata);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001502 spin_unlock(&journal->j_list_lock);
1503out_unlock_bh:
1504 jbd_unlock_bh_state(bh);
1505out:
1506 JBUFFER_TRACE(jh, "exit");
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -04001507 return ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001508}
1509
Dave Kleikamp470decc2006-10-11 01:20:57 -07001510/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001511 * void jbd2_journal_forget() - bforget() for potentially-journaled buffers.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001512 * @handle: transaction handle
1513 * @bh: bh to 'forget'
1514 *
1515 * We can only do the bforget if there are no commits pending against the
1516 * buffer. If the buffer is dirty in the current running transaction we
1517 * can safely unlink it.
1518 *
1519 * bh may not be a journalled buffer at all - it may be a non-JBD
1520 * buffer which came off the hashtable. Check for this.
1521 *
1522 * Decrements bh->b_count by one.
1523 *
1524 * Allow this call even if the handle has aborted --- it may be part of
1525 * the caller's cleanup after an abort.
1526 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001527int jbd2_journal_forget (handle_t *handle, struct buffer_head *bh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001528{
1529 transaction_t *transaction = handle->h_transaction;
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001530 journal_t *journal;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001531 struct journal_head *jh;
1532 int drop_reserve = 0;
1533 int err = 0;
Josef Bacik1dfc3222008-04-17 10:38:59 -04001534 int was_modified = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001535
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001536 if (is_handle_aborted(handle))
1537 return -EROFS;
1538 journal = transaction->t_journal;
1539
Dave Kleikamp470decc2006-10-11 01:20:57 -07001540 BUFFER_TRACE(bh, "entry");
1541
1542 jbd_lock_bh_state(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001543
1544 if (!buffer_jbd(bh))
1545 goto not_jbd;
1546 jh = bh2jh(bh);
1547
1548 /* Critical error: attempting to delete a bitmap buffer, maybe?
1549 * Don't do any jbd operations, and return an error. */
1550 if (!J_EXPECT_JH(jh, !jh->b_committed_data,
1551 "inconsistent data on disk")) {
1552 err = -EIO;
1553 goto not_jbd;
1554 }
1555
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04001556 /* keep track of whether or not this transaction modified us */
Josef Bacik1dfc3222008-04-17 10:38:59 -04001557 was_modified = jh->b_modified;
1558
Dave Kleikamp470decc2006-10-11 01:20:57 -07001559 /*
1560 * The buffer's going from the transaction, we must drop
1561 * all references -bzzz
1562 */
1563 jh->b_modified = 0;
1564
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001565 if (jh->b_transaction == transaction) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001566 J_ASSERT_JH(jh, !jh->b_frozen_data);
1567
1568 /* If we are forgetting a buffer which is already part
1569 * of this transaction, then we can just drop it from
1570 * the transaction immediately. */
1571 clear_buffer_dirty(bh);
1572 clear_buffer_jbddirty(bh);
1573
1574 JBUFFER_TRACE(jh, "belongs to current transaction: unfile");
1575
Josef Bacik1dfc3222008-04-17 10:38:59 -04001576 /*
1577 * we only want to drop a reference if this transaction
1578 * modified the buffer
1579 */
1580 if (was_modified)
1581 drop_reserve = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001582
1583 /*
1584 * We are no longer going to journal this buffer.
1585 * However, the commit of this transaction is still
1586 * important to the buffer: the delete that we are now
1587 * processing might obsolete an old log entry, so by
1588 * committing, we can satisfy the buffer's checkpoint.
1589 *
1590 * So, if we have a checkpoint on the buffer, we should
1591 * now refile the buffer on our BJ_Forget list so that
1592 * we know to remove the checkpoint after we commit.
1593 */
1594
Theodore Ts'o0bfea812014-03-09 00:56:58 -05001595 spin_lock(&journal->j_list_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001596 if (jh->b_cp_transaction) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001597 __jbd2_journal_temp_unlink_buffer(jh);
1598 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001599 } else {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001600 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001601 if (!buffer_jbd(bh)) {
1602 spin_unlock(&journal->j_list_lock);
zhangyi (F)59759922019-02-10 23:26:06 -05001603 goto not_jbd;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001604 }
1605 }
Theodore Ts'o0bfea812014-03-09 00:56:58 -05001606 spin_unlock(&journal->j_list_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001607 } else if (jh->b_transaction) {
1608 J_ASSERT_JH(jh, (jh->b_transaction ==
1609 journal->j_committing_transaction));
1610 /* However, if the buffer is still owned by a prior
1611 * (committing) transaction, we can't drop it yet... */
1612 JBUFFER_TRACE(jh, "belongs to older transaction");
zhangyi (F)904cdbd2019-02-10 23:23:04 -05001613 /* ... but we CAN drop it from the new transaction through
1614 * marking the buffer as freed and set j_next_transaction to
1615 * the new transaction, so that not only the commit code
1616 * knows it should clear dirty bits when it is done with the
1617 * buffer, but also the buffer can be checkpointed only
1618 * after the new transaction commits. */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001619
zhangyi (F)904cdbd2019-02-10 23:23:04 -05001620 set_buffer_freed(bh);
1621
1622 if (!jh->b_next_transaction) {
Theodore Ts'o0bfea812014-03-09 00:56:58 -05001623 spin_lock(&journal->j_list_lock);
zhangyi (F)904cdbd2019-02-10 23:23:04 -05001624 jh->b_next_transaction = transaction;
Theodore Ts'o0bfea812014-03-09 00:56:58 -05001625 spin_unlock(&journal->j_list_lock);
zhangyi (F)904cdbd2019-02-10 23:23:04 -05001626 } else {
1627 J_ASSERT(jh->b_next_transaction == transaction);
Josef Bacik1dfc3222008-04-17 10:38:59 -04001628
1629 /*
1630 * only drop a reference if this transaction modified
1631 * the buffer
1632 */
1633 if (was_modified)
1634 drop_reserve = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001635 }
zhangyi (F)59759922019-02-10 23:26:06 -05001636 } else {
1637 /*
1638 * Finally, if the buffer is not belongs to any
1639 * transaction, we can just drop it now if it has no
1640 * checkpoint.
1641 */
1642 spin_lock(&journal->j_list_lock);
1643 if (!jh->b_cp_transaction) {
1644 JBUFFER_TRACE(jh, "belongs to none transaction");
1645 spin_unlock(&journal->j_list_lock);
1646 goto not_jbd;
1647 }
1648
1649 /*
1650 * Otherwise, if the buffer has been written to disk,
1651 * it is safe to remove the checkpoint and drop it.
1652 */
1653 if (!buffer_dirty(bh)) {
1654 __jbd2_journal_remove_checkpoint(jh);
1655 spin_unlock(&journal->j_list_lock);
1656 goto not_jbd;
1657 }
1658
1659 /*
1660 * The buffer is still not written to disk, we should
1661 * attach this buffer to current transaction so that the
1662 * buffer can be checkpointed only after the current
1663 * transaction commits.
1664 */
1665 clear_buffer_dirty(bh);
1666 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
1667 spin_unlock(&journal->j_list_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001668 }
1669
Dave Kleikamp470decc2006-10-11 01:20:57 -07001670 jbd_unlock_bh_state(bh);
1671 __brelse(bh);
1672drop:
1673 if (drop_reserve) {
1674 /* no need to reserve log space for this block -bzzz */
1675 handle->h_buffer_credits++;
1676 }
1677 return err;
zhangyi (F)59759922019-02-10 23:26:06 -05001678
1679not_jbd:
1680 jbd_unlock_bh_state(bh);
1681 __bforget(bh);
1682 goto drop;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001683}
1684
1685/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001686 * int jbd2_journal_stop() - complete a transaction
Masanari Iidabd7ced92016-02-02 22:31:06 +09001687 * @handle: transaction to complete.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001688 *
1689 * All done for a particular handle.
1690 *
1691 * There is not much action needed here. We just return any remaining
1692 * buffer credits to the transaction and remove the handle. The only
1693 * complication is that we need to start a commit operation if the
1694 * filesystem is marked for synchronous update.
1695 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001696 * jbd2_journal_stop itself will not usually return an error, but it may
Dave Kleikamp470decc2006-10-11 01:20:57 -07001697 * do so in unusual circumstances. In particular, expect it to
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001698 * return -EIO if a jbd2_journal_abort has been executed since the
Dave Kleikamp470decc2006-10-11 01:20:57 -07001699 * transaction began.
1700 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001701int jbd2_journal_stop(handle_t *handle)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001702{
1703 transaction_t *transaction = handle->h_transaction;
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001704 journal_t *journal;
1705 int err = 0, wait_for_commit = 0;
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001706 tid_t tid;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001707 pid_t pid;
1708
Jan Karadfaf5ff2019-11-05 17:44:20 +01001709 if (--handle->h_ref > 0) {
1710 jbd_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1,
1711 handle->h_ref);
1712 if (is_handle_aborted(handle))
1713 return -EIO;
1714 return 0;
1715 }
Lukas Czerner9d506592015-05-14 18:55:18 -04001716 if (!transaction) {
1717 /*
Jan Karadfaf5ff2019-11-05 17:44:20 +01001718 * Handle is already detached from the transaction so there is
1719 * nothing to do other than free the handle.
Lukas Czerner9d506592015-05-14 18:55:18 -04001720 */
Jan Karadfaf5ff2019-11-05 17:44:20 +01001721 if (handle->h_rsv_handle)
1722 jbd2_free_handle(handle->h_rsv_handle);
1723 goto free_and_exit;
Lukas Czerner9d506592015-05-14 18:55:18 -04001724 }
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001725 journal = transaction->t_journal;
Jan Karadfaf5ff2019-11-05 17:44:20 +01001726 tid = transaction->t_tid;
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001727
Dave Kleikamp470decc2006-10-11 01:20:57 -07001728 J_ASSERT(journal_current_handle() == handle);
Jan Karadfaf5ff2019-11-05 17:44:20 +01001729 J_ASSERT(atomic_read(&transaction->t_updates) > 0);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001730
1731 if (is_handle_aborted(handle))
1732 err = -EIO;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001733
1734 jbd_debug(4, "Handle %p going down\n", handle);
Theodore Ts'o343d9c22013-02-08 13:00:22 -05001735 trace_jbd2_handle_stats(journal->j_fs_dev->bd_dev,
Jan Karadfaf5ff2019-11-05 17:44:20 +01001736 tid, handle->h_type, handle->h_line_no,
Theodore Ts'o343d9c22013-02-08 13:00:22 -05001737 jiffies - handle->h_start_jiffies,
1738 handle->h_sync, handle->h_requested_credits,
1739 (handle->h_requested_credits -
1740 handle->h_buffer_credits));
Dave Kleikamp470decc2006-10-11 01:20:57 -07001741
1742 /*
1743 * Implement synchronous transaction batching. If the handle
1744 * was synchronous, don't force a commit immediately. Let's
Josef Bacike07f7182008-11-26 01:14:26 -05001745 * yield and let another thread piggyback onto this
1746 * transaction. Keep doing that while new threads continue to
1747 * arrive. It doesn't cost much - we're about to run a commit
1748 * and sleep on IO anyway. Speeds up many-threaded, many-dir
1749 * operations by 30x or more...
Dave Kleikamp470decc2006-10-11 01:20:57 -07001750 *
Josef Bacike07f7182008-11-26 01:14:26 -05001751 * We try and optimize the sleep time against what the
1752 * underlying disk can do, instead of having a static sleep
1753 * time. This is useful for the case where our storage is so
1754 * fast that it is more optimal to go ahead and force a flush
1755 * and wait for the transaction to be committed than it is to
1756 * wait for an arbitrary amount of time for new writers to
1757 * join the transaction. We achieve this by measuring how
1758 * long it takes to commit a transaction, and compare it with
1759 * how long this transaction has been running, and if run time
1760 * < commit time then we sleep for the delta and commit. This
1761 * greatly helps super fast disks that would see slowdowns as
1762 * more threads started doing fsyncs.
1763 *
1764 * But don't do this if this process was the most recent one
1765 * to perform a synchronous write. We do this to detect the
1766 * case where a single process is doing a stream of sync
1767 * writes. No point in waiting for joiners in that case.
Eric Sandeen5dd21422014-07-05 19:18:22 -04001768 *
1769 * Setting max_batch_time to 0 disables this completely.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001770 */
1771 pid = current->pid;
Eric Sandeen5dd21422014-07-05 19:18:22 -04001772 if (handle->h_sync && journal->j_last_sync_writer != pid &&
1773 journal->j_max_batch_time) {
Josef Bacike07f7182008-11-26 01:14:26 -05001774 u64 commit_time, trans_time;
1775
Dave Kleikamp470decc2006-10-11 01:20:57 -07001776 journal->j_last_sync_writer = pid;
Josef Bacike07f7182008-11-26 01:14:26 -05001777
Theodore Ts'oa931da62010-08-03 21:35:12 -04001778 read_lock(&journal->j_state_lock);
Josef Bacike07f7182008-11-26 01:14:26 -05001779 commit_time = journal->j_average_commit_time;
Theodore Ts'oa931da62010-08-03 21:35:12 -04001780 read_unlock(&journal->j_state_lock);
Josef Bacike07f7182008-11-26 01:14:26 -05001781
1782 trans_time = ktime_to_ns(ktime_sub(ktime_get(),
1783 transaction->t_start_time));
1784
Theodore Ts'o30773842009-01-03 20:27:38 -05001785 commit_time = max_t(u64, commit_time,
1786 1000*journal->j_min_batch_time);
Josef Bacike07f7182008-11-26 01:14:26 -05001787 commit_time = min_t(u64, commit_time,
Theodore Ts'o30773842009-01-03 20:27:38 -05001788 1000*journal->j_max_batch_time);
Josef Bacike07f7182008-11-26 01:14:26 -05001789
1790 if (trans_time < commit_time) {
1791 ktime_t expires = ktime_add_ns(ktime_get(),
1792 commit_time);
1793 set_current_state(TASK_UNINTERRUPTIBLE);
1794 schedule_hrtimeout(&expires, HRTIMER_MODE_ABS);
1795 }
Dave Kleikamp470decc2006-10-11 01:20:57 -07001796 }
1797
Theodore Ts'o70585482009-03-25 23:35:46 -04001798 if (handle->h_sync)
1799 transaction->t_synchronous_commit = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001800 current->journal_info = NULL;
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001801 atomic_sub(handle->h_buffer_credits,
1802 &transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001803
1804 /*
1805 * If the handle is marked SYNC, we need to set another commit
Jan Kara150549e2019-11-05 17:44:21 +01001806 * going! We also want to force a commit if the transaction is too
1807 * old now.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001808 */
1809 if (handle->h_sync ||
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001810 time_after_eq(jiffies, transaction->t_expires)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07001811 /* Do this even for aborted journals: an abort still
1812 * completes the commit thread, it just doesn't write
1813 * anything to disk. */
Dave Kleikamp470decc2006-10-11 01:20:57 -07001814
Dave Kleikamp470decc2006-10-11 01:20:57 -07001815 jbd_debug(2, "transaction too old, requesting commit for "
1816 "handle %p\n", handle);
1817 /* This is non-blocking */
Jan Karadfaf5ff2019-11-05 17:44:20 +01001818 jbd2_log_start_commit(journal, tid);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001819
1820 /*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001821 * Special case: JBD2_SYNC synchronous updates require us
Dave Kleikamp470decc2006-10-11 01:20:57 -07001822 * to wait for the commit to complete.
1823 */
1824 if (handle->h_sync && !(current->flags & PF_MEMALLOC))
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001825 wait_for_commit = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001826 }
1827
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001828 /*
1829 * Once we drop t_updates, if it goes to zero the transaction
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001830 * could start committing on us and eventually disappear. So
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001831 * once we do this, we must not dereference transaction
1832 * pointer again.
1833 */
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001834 if (atomic_dec_and_test(&transaction->t_updates)) {
1835 wake_up(&journal->j_wait_updates);
1836 if (journal->j_barrier_count)
1837 wake_up(&journal->j_wait_transaction_locked);
1838 }
1839
Jan Karaab714af2016-06-30 11:39:38 -04001840 rwsem_release(&journal->j_trans_commit_map, 1, _THIS_IP_);
Jan Kara7a4b1882016-06-30 11:30:21 -04001841
Theodore Ts'oa51dca92010-08-02 08:43:25 -04001842 if (wait_for_commit)
1843 err = jbd2_log_wait_commit(journal, tid);
1844
Jan Kara8f7d89f2013-06-04 12:35:11 -04001845 if (handle->h_rsv_handle)
1846 jbd2_journal_free_reserved(handle->h_rsv_handle);
Theodore Ts'o41a5b912013-07-01 08:12:41 -04001847free_and_exit:
Michal Hocko81378da2017-05-03 14:53:22 -07001848 /*
1849 * Scope of the GFP_NOFS context is over here and so we can restore the
1850 * original alloc context.
1851 */
1852 memalloc_nofs_restore(handle->saved_alloc_context);
Mingming Caoaf1e76d2007-10-16 18:38:25 -04001853 jbd2_free_handle(handle);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001854 return err;
1855}
1856
Dave Kleikamp470decc2006-10-11 01:20:57 -07001857/*
1858 *
1859 * List management code snippets: various functions for manipulating the
1860 * transaction buffer lists.
1861 *
1862 */
1863
1864/*
1865 * Append a buffer to a transaction list, given the transaction's list head
1866 * pointer.
1867 *
1868 * j_list_lock is held.
1869 *
1870 * jbd_lock_bh_state(jh2bh(jh)) is held.
1871 */
1872
1873static inline void
1874__blist_add_buffer(struct journal_head **list, struct journal_head *jh)
1875{
1876 if (!*list) {
1877 jh->b_tnext = jh->b_tprev = jh;
1878 *list = jh;
1879 } else {
1880 /* Insert at the tail of the list to preserve order */
1881 struct journal_head *first = *list, *last = first->b_tprev;
1882 jh->b_tprev = last;
1883 jh->b_tnext = first;
1884 last->b_tnext = first->b_tprev = jh;
1885 }
1886}
1887
1888/*
1889 * Remove a buffer from a transaction list, given the transaction's list
1890 * head pointer.
1891 *
1892 * Called with j_list_lock held, and the journal may not be locked.
1893 *
1894 * jbd_lock_bh_state(jh2bh(jh)) is held.
1895 */
1896
1897static inline void
1898__blist_del_buffer(struct journal_head **list, struct journal_head *jh)
1899{
1900 if (*list == jh) {
1901 *list = jh->b_tnext;
1902 if (*list == jh)
1903 *list = NULL;
1904 }
1905 jh->b_tprev->b_tnext = jh->b_tnext;
1906 jh->b_tnext->b_tprev = jh->b_tprev;
1907}
1908
1909/*
1910 * Remove a buffer from the appropriate transaction list.
1911 *
1912 * Note that this function can *change* the value of
Jan Karaf5113ef2013-06-04 12:01:45 -04001913 * bh->b_transaction->t_buffers, t_forget, t_shadow_list, t_log_list or
1914 * t_reserved_list. If the caller is holding onto a copy of one of these
1915 * pointers, it could go bad. Generally the caller needs to re-read the
1916 * pointer from the transaction_t.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001917 *
Jan Kara5bebccf2012-03-13 22:25:06 -04001918 * Called under j_list_lock.
Dave Kleikamp470decc2006-10-11 01:20:57 -07001919 */
Jan Kara5bebccf2012-03-13 22:25:06 -04001920static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001921{
1922 struct journal_head **list = NULL;
1923 transaction_t *transaction;
1924 struct buffer_head *bh = jh2bh(jh);
1925
1926 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
1927 transaction = jh->b_transaction;
1928 if (transaction)
1929 assert_spin_locked(&transaction->t_journal->j_list_lock);
1930
1931 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
1932 if (jh->b_jlist != BJ_None)
Mingming Cao40191912008-01-28 23:58:27 -05001933 J_ASSERT_JH(jh, transaction != NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001934
1935 switch (jh->b_jlist) {
1936 case BJ_None:
1937 return;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001938 case BJ_Metadata:
1939 transaction->t_nr_buffers--;
1940 J_ASSERT_JH(jh, transaction->t_nr_buffers >= 0);
1941 list = &transaction->t_buffers;
1942 break;
1943 case BJ_Forget:
1944 list = &transaction->t_forget;
1945 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001946 case BJ_Shadow:
1947 list = &transaction->t_shadow_list;
1948 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001949 case BJ_Reserved:
1950 list = &transaction->t_reserved_list;
1951 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001952 }
1953
1954 __blist_del_buffer(list, jh);
1955 jh->b_jlist = BJ_None;
Theodore Ts'oe1126662017-02-04 23:14:19 -05001956 if (transaction && is_journal_aborted(transaction->t_journal))
1957 clear_buffer_jbddirty(bh);
1958 else if (test_clear_buffer_jbddirty(bh))
Dave Kleikamp470decc2006-10-11 01:20:57 -07001959 mark_buffer_dirty(bh); /* Expose it to the VM */
1960}
1961
Jan Karade1b7942011-06-13 15:38:22 -04001962/*
1963 * Remove buffer from all transactions.
1964 *
1965 * Called with bh_state lock and j_list_lock
1966 *
1967 * jh and bh may be already freed when this function returns.
1968 */
1969static void __jbd2_journal_unfile_buffer(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001970{
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001971 __jbd2_journal_temp_unlink_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001972 jh->b_transaction = NULL;
Jan Karade1b7942011-06-13 15:38:22 -04001973 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001974}
1975
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001976void jbd2_journal_unfile_buffer(journal_t *journal, struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07001977{
Jan Karade1b7942011-06-13 15:38:22 -04001978 struct buffer_head *bh = jh2bh(jh);
1979
1980 /* Get reference so that buffer cannot be freed before we unlock it */
1981 get_bh(bh);
1982 jbd_lock_bh_state(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001983 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001984 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001985 spin_unlock(&journal->j_list_lock);
Jan Karade1b7942011-06-13 15:38:22 -04001986 jbd_unlock_bh_state(bh);
1987 __brelse(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001988}
1989
1990/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001991 * Called from jbd2_journal_try_to_free_buffers().
Dave Kleikamp470decc2006-10-11 01:20:57 -07001992 *
1993 * Called under jbd_lock_bh_state(bh)
1994 */
1995static void
1996__journal_try_to_free_buffer(journal_t *journal, struct buffer_head *bh)
1997{
1998 struct journal_head *jh;
1999
2000 jh = bh2jh(bh);
2001
2002 if (buffer_locked(bh) || buffer_dirty(bh))
2003 goto out;
2004
Theodore Ts'od2eb0b92014-03-09 00:07:19 -05002005 if (jh->b_next_transaction != NULL || jh->b_transaction != NULL)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002006 goto out;
2007
2008 spin_lock(&journal->j_list_lock);
Theodore Ts'od2eb0b92014-03-09 00:07:19 -05002009 if (jh->b_cp_transaction != NULL) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07002010 /* written-back checkpointed metadata buffer */
Jan Karac254c9e2012-03-13 22:27:44 -04002011 JBUFFER_TRACE(jh, "remove from checkpoint list");
2012 __jbd2_journal_remove_checkpoint(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002013 }
2014 spin_unlock(&journal->j_list_lock);
2015out:
2016 return;
2017}
2018
Dave Kleikamp470decc2006-10-11 01:20:57 -07002019/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002020 * int jbd2_journal_try_to_free_buffers() - try to free page buffers.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002021 * @journal: journal for operation
2022 * @page: to try and free
Mingming Cao530576b2008-07-13 21:06:39 -04002023 * @gfp_mask: we use the mask to detect how hard should we try to release
Mel Gormand0164ad2015-11-06 16:28:21 -08002024 * buffers. If __GFP_DIRECT_RECLAIM and __GFP_FS is set, we wait for commit
2025 * code to release the buffers.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002026 *
2027 *
2028 * For all the buffers on this page,
2029 * if they are fully written out ordered data, move them onto BUF_CLEAN
2030 * so try_to_free_buffers() can reap them.
2031 *
2032 * This function returns non-zero if we wish try_to_free_buffers()
2033 * to be called. We do this if the page is releasable by try_to_free_buffers().
2034 * We also do it if the page has locked or dirty buffers and the caller wants
2035 * us to perform sync or async writeout.
2036 *
2037 * This complicates JBD locking somewhat. We aren't protected by the
2038 * BKL here. We wish to remove the buffer from its committing or
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002039 * running transaction's ->t_datalist via __jbd2_journal_unfile_buffer.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002040 *
2041 * This may *change* the value of transaction_t->t_datalist, so anyone
2042 * who looks at t_datalist needs to lock against this function.
2043 *
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002044 * Even worse, someone may be doing a jbd2_journal_dirty_data on this
2045 * buffer. So we need to lock against that. jbd2_journal_dirty_data()
Dave Kleikamp470decc2006-10-11 01:20:57 -07002046 * will come out of the lock with the buffer dirty, which makes it
2047 * ineligible for release here.
2048 *
2049 * Who else is affected by this? hmm... Really the only contender
2050 * is do_get_write_access() - it could be looking at the buffer while
2051 * journal_try_to_free_buffer() is changing its state. But that
2052 * cannot happen because we never reallocate freed data as metadata
2053 * while the data is part of a transaction. Yes?
Mingming Cao530576b2008-07-13 21:06:39 -04002054 *
2055 * Return 0 on failure, 1 on success
Dave Kleikamp470decc2006-10-11 01:20:57 -07002056 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002057int jbd2_journal_try_to_free_buffers(journal_t *journal,
Mingming Cao530576b2008-07-13 21:06:39 -04002058 struct page *page, gfp_t gfp_mask)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002059{
2060 struct buffer_head *head;
2061 struct buffer_head *bh;
2062 int ret = 0;
2063
2064 J_ASSERT(PageLocked(page));
2065
2066 head = page_buffers(page);
2067 bh = head;
2068 do {
2069 struct journal_head *jh;
2070
2071 /*
2072 * We take our own ref against the journal_head here to avoid
2073 * having to add tons of locking around each instance of
Mingming Cao530576b2008-07-13 21:06:39 -04002074 * jbd2_journal_put_journal_head().
Dave Kleikamp470decc2006-10-11 01:20:57 -07002075 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002076 jh = jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002077 if (!jh)
2078 continue;
2079
2080 jbd_lock_bh_state(bh);
2081 __journal_try_to_free_buffer(journal, bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002082 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002083 jbd_unlock_bh_state(bh);
2084 if (buffer_jbd(bh))
2085 goto busy;
2086 } while ((bh = bh->b_this_page) != head);
Mingming Cao530576b2008-07-13 21:06:39 -04002087
Dave Kleikamp470decc2006-10-11 01:20:57 -07002088 ret = try_to_free_buffers(page);
Mingming Cao530576b2008-07-13 21:06:39 -04002089
Dave Kleikamp470decc2006-10-11 01:20:57 -07002090busy:
2091 return ret;
2092}
2093
2094/*
2095 * This buffer is no longer needed. If it is on an older transaction's
2096 * checkpoint list we need to record it on this transaction's forget list
2097 * to pin this buffer (and hence its checkpointing transaction) down until
2098 * this transaction commits. If the buffer isn't on a checkpoint list, we
2099 * release it.
2100 * Returns non-zero if JBD no longer has an interest in the buffer.
2101 *
2102 * Called under j_list_lock.
2103 *
2104 * Called under jbd_lock_bh_state(bh).
2105 */
2106static int __dispose_buffer(struct journal_head *jh, transaction_t *transaction)
2107{
2108 int may_free = 1;
2109 struct buffer_head *bh = jh2bh(jh);
2110
Dave Kleikamp470decc2006-10-11 01:20:57 -07002111 if (jh->b_cp_transaction) {
2112 JBUFFER_TRACE(jh, "on running+cp transaction");
Jan Karade1b7942011-06-13 15:38:22 -04002113 __jbd2_journal_temp_unlink_buffer(jh);
Jan Karaf91d1d02009-07-13 16:16:20 -04002114 /*
2115 * We don't want to write the buffer anymore, clear the
2116 * bit so that we don't confuse checks in
2117 * __journal_file_buffer
2118 */
2119 clear_buffer_dirty(bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002120 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002121 may_free = 0;
2122 } else {
2123 JBUFFER_TRACE(jh, "on running transaction");
Jan Karade1b7942011-06-13 15:38:22 -04002124 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002125 }
2126 return may_free;
2127}
2128
2129/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002130 * jbd2_journal_invalidatepage
Dave Kleikamp470decc2006-10-11 01:20:57 -07002131 *
2132 * This code is tricky. It has a number of cases to deal with.
2133 *
2134 * There are two invariants which this code relies on:
2135 *
2136 * i_size must be updated on disk before we start calling invalidatepage on the
2137 * data.
2138 *
2139 * This is done in ext3 by defining an ext3_setattr method which
2140 * updates i_size before truncate gets going. By maintaining this
2141 * invariant, we can be sure that it is safe to throw away any buffers
2142 * attached to the current transaction: once the transaction commits,
2143 * we know that the data will not be needed.
2144 *
2145 * Note however that we can *not* throw away data belonging to the
2146 * previous, committing transaction!
2147 *
2148 * Any disk blocks which *are* part of the previous, committing
2149 * transaction (and which therefore cannot be discarded immediately) are
2150 * not going to be reused in the new running transaction
2151 *
2152 * The bitmap committed_data images guarantee this: any block which is
2153 * allocated in one transaction and removed in the next will be marked
2154 * as in-use in the committed_data bitmap, so cannot be reused until
2155 * the next transaction to delete the block commits. This means that
2156 * leaving committing buffers dirty is quite safe: the disk blocks
2157 * cannot be reallocated to a different file and so buffer aliasing is
2158 * not possible.
2159 *
2160 *
2161 * The above applies mainly to ordered data mode. In writeback mode we
2162 * don't make guarantees about the order in which data hits disk --- in
2163 * particular we don't guarantee that new dirty data is flushed before
2164 * transaction commit --- so it is always safe just to discard data
2165 * immediately in that mode. --sct
2166 */
2167
2168/*
2169 * The journal_unmap_buffer helper function returns zero if the buffer
2170 * concerned remains pinned as an anonymous buffer belonging to an older
2171 * transaction.
2172 *
2173 * We're outside-transaction here. Either or both of j_running_transaction
2174 * and j_committing_transaction may be NULL.
2175 */
Jan Karab794e7a2012-09-26 23:11:13 -04002176static int journal_unmap_buffer(journal_t *journal, struct buffer_head *bh,
2177 int partial_page)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002178{
2179 transaction_t *transaction;
2180 struct journal_head *jh;
2181 int may_free = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002182
2183 BUFFER_TRACE(bh, "entry");
2184
2185 /*
2186 * It is safe to proceed here without the j_list_lock because the
2187 * buffers cannot be stolen by try_to_free_buffers as long as we are
2188 * holding the page lock. --sct
2189 */
2190
2191 if (!buffer_jbd(bh))
2192 goto zap_buffer_unlocked;
2193
Jan Kara87c89c22008-07-11 19:27:31 -04002194 /* OK, we have data buffer in journaled mode */
Theodore Ts'oa931da62010-08-03 21:35:12 -04002195 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002196 jbd_lock_bh_state(bh);
2197 spin_lock(&journal->j_list_lock);
2198
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002199 jh = jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002200 if (!jh)
2201 goto zap_buffer_no_jh;
2202
dingdinghuaba869022010-02-15 16:35:42 -05002203 /*
2204 * We cannot remove the buffer from checkpoint lists until the
2205 * transaction adding inode to orphan list (let's call it T)
2206 * is committed. Otherwise if the transaction changing the
2207 * buffer would be cleaned from the journal before T is
2208 * committed, a crash will cause that the correct contents of
2209 * the buffer will be lost. On the other hand we have to
2210 * clear the buffer dirty bit at latest at the moment when the
2211 * transaction marking the buffer as freed in the filesystem
2212 * structures is committed because from that moment on the
Jan Karab794e7a2012-09-26 23:11:13 -04002213 * block can be reallocated and used by a different page.
dingdinghuaba869022010-02-15 16:35:42 -05002214 * Since the block hasn't been freed yet but the inode has
2215 * already been added to orphan list, it is safe for us to add
2216 * the buffer to BJ_Forget list of the newest transaction.
Jan Karab794e7a2012-09-26 23:11:13 -04002217 *
2218 * Also we have to clear buffer_mapped flag of a truncated buffer
2219 * because the buffer_head may be attached to the page straddling
2220 * i_size (can happen only when blocksize < pagesize) and thus the
2221 * buffer_head can be reused when the file is extended again. So we end
2222 * up keeping around invalidated buffers attached to transactions'
2223 * BJ_Forget list just to stop checkpointing code from cleaning up
2224 * the transaction this buffer was modified in.
dingdinghuaba869022010-02-15 16:35:42 -05002225 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07002226 transaction = jh->b_transaction;
2227 if (transaction == NULL) {
2228 /* First case: not on any transaction. If it
2229 * has no checkpoint link, then we can zap it:
2230 * it's a writeback-mode buffer so we don't care
2231 * if it hits disk safely. */
2232 if (!jh->b_cp_transaction) {
2233 JBUFFER_TRACE(jh, "not on any transaction: zap");
2234 goto zap_buffer;
2235 }
2236
2237 if (!buffer_dirty(bh)) {
2238 /* bdflush has written it. We can drop it now */
Jan Karabc23f0c2015-11-24 15:34:35 -05002239 __jbd2_journal_remove_checkpoint(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002240 goto zap_buffer;
2241 }
2242
2243 /* OK, it must be in the journal but still not
2244 * written fully to disk: it's metadata or
2245 * journaled data... */
2246
2247 if (journal->j_running_transaction) {
2248 /* ... and once the current transaction has
2249 * committed, the buffer won't be needed any
2250 * longer. */
2251 JBUFFER_TRACE(jh, "checkpointed: add to BJ_Forget");
Jan Karab794e7a2012-09-26 23:11:13 -04002252 may_free = __dispose_buffer(jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07002253 journal->j_running_transaction);
Jan Karab794e7a2012-09-26 23:11:13 -04002254 goto zap_buffer;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002255 } else {
2256 /* There is no currently-running transaction. So the
2257 * orphan record which we wrote for this file must have
2258 * passed into commit. We must attach this buffer to
2259 * the committing transaction, if it exists. */
2260 if (journal->j_committing_transaction) {
2261 JBUFFER_TRACE(jh, "give to committing trans");
Jan Karab794e7a2012-09-26 23:11:13 -04002262 may_free = __dispose_buffer(jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07002263 journal->j_committing_transaction);
Jan Karab794e7a2012-09-26 23:11:13 -04002264 goto zap_buffer;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002265 } else {
2266 /* The orphan record's transaction has
2267 * committed. We can cleanse this buffer */
2268 clear_buffer_jbddirty(bh);
Jan Karabc23f0c2015-11-24 15:34:35 -05002269 __jbd2_journal_remove_checkpoint(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002270 goto zap_buffer;
2271 }
2272 }
2273 } else if (transaction == journal->j_committing_transaction) {
Eric Sandeen9b579882006-10-28 10:38:28 -07002274 JBUFFER_TRACE(jh, "on committing transaction");
Dave Kleikamp470decc2006-10-11 01:20:57 -07002275 /*
dingdinghuaba869022010-02-15 16:35:42 -05002276 * The buffer is committing, we simply cannot touch
Jan Karab794e7a2012-09-26 23:11:13 -04002277 * it. If the page is straddling i_size we have to wait
2278 * for commit and try again.
2279 */
2280 if (partial_page) {
Jan Karab794e7a2012-09-26 23:11:13 -04002281 jbd2_journal_put_journal_head(jh);
2282 spin_unlock(&journal->j_list_lock);
2283 jbd_unlock_bh_state(bh);
2284 write_unlock(&journal->j_state_lock);
Jan Kara53e87262012-12-25 13:29:52 -05002285 return -EBUSY;
Jan Karab794e7a2012-09-26 23:11:13 -04002286 }
2287 /*
2288 * OK, buffer won't be reachable after truncate. We just set
2289 * j_next_transaction to the running transaction (if there is
2290 * one) and mark buffer as freed so that commit code knows it
2291 * should clear dirty bits when it is done with the buffer.
dingdinghuaba869022010-02-15 16:35:42 -05002292 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07002293 set_buffer_freed(bh);
dingdinghuaba869022010-02-15 16:35:42 -05002294 if (journal->j_running_transaction && buffer_jbddirty(bh))
2295 jh->b_next_transaction = journal->j_running_transaction;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002296 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002297 spin_unlock(&journal->j_list_lock);
2298 jbd_unlock_bh_state(bh);
Theodore Ts'oa931da62010-08-03 21:35:12 -04002299 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002300 return 0;
2301 } else {
2302 /* Good, the buffer belongs to the running transaction.
2303 * We are writing our own transaction's data, not any
2304 * previous one's, so it is safe to throw it away
2305 * (remember that we expect the filesystem to have set
2306 * i_size already for this truncate so recovery will not
2307 * expose the disk blocks we are discarding here.) */
2308 J_ASSERT_JH(jh, transaction == journal->j_running_transaction);
Eric Sandeen9b579882006-10-28 10:38:28 -07002309 JBUFFER_TRACE(jh, "on running transaction");
Dave Kleikamp470decc2006-10-11 01:20:57 -07002310 may_free = __dispose_buffer(jh, transaction);
2311 }
2312
2313zap_buffer:
Jan Karab794e7a2012-09-26 23:11:13 -04002314 /*
2315 * This is tricky. Although the buffer is truncated, it may be reused
2316 * if blocksize < pagesize and it is attached to the page straddling
2317 * EOF. Since the buffer might have been added to BJ_Forget list of the
2318 * running transaction, journal_get_write_access() won't clear
2319 * b_modified and credit accounting gets confused. So clear b_modified
2320 * here.
2321 */
2322 jh->b_modified = 0;
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002323 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002324zap_buffer_no_jh:
2325 spin_unlock(&journal->j_list_lock);
2326 jbd_unlock_bh_state(bh);
Theodore Ts'oa931da62010-08-03 21:35:12 -04002327 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002328zap_buffer_unlocked:
2329 clear_buffer_dirty(bh);
2330 J_ASSERT_BH(bh, !buffer_jbddirty(bh));
2331 clear_buffer_mapped(bh);
2332 clear_buffer_req(bh);
2333 clear_buffer_new(bh);
Eric Sandeen15291162012-02-20 17:53:01 -05002334 clear_buffer_delay(bh);
2335 clear_buffer_unwritten(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002336 bh->b_bdev = NULL;
2337 return may_free;
2338}
2339
2340/**
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002341 * void jbd2_journal_invalidatepage()
Dave Kleikamp470decc2006-10-11 01:20:57 -07002342 * @journal: journal to use for flush...
2343 * @page: page to flush
Lukas Czerner259709b2013-05-21 23:20:03 -04002344 * @offset: start of the range to invalidate
2345 * @length: length of the range to invalidate
Dave Kleikamp470decc2006-10-11 01:20:57 -07002346 *
Lukas Czerner259709b2013-05-21 23:20:03 -04002347 * Reap page buffers containing data after in the specified range in page.
2348 * Can return -EBUSY if buffers are part of the committing transaction and
2349 * the page is straddling i_size. Caller then has to wait for current commit
2350 * and try again.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002351 */
Jan Kara53e87262012-12-25 13:29:52 -05002352int jbd2_journal_invalidatepage(journal_t *journal,
2353 struct page *page,
Lukas Czerner259709b2013-05-21 23:20:03 -04002354 unsigned int offset,
2355 unsigned int length)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002356{
2357 struct buffer_head *head, *bh, *next;
Lukas Czerner259709b2013-05-21 23:20:03 -04002358 unsigned int stop = offset + length;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002359 unsigned int curr_off = 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002360 int partial_page = (offset || length < PAGE_SIZE);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002361 int may_free = 1;
Jan Kara53e87262012-12-25 13:29:52 -05002362 int ret = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002363
2364 if (!PageLocked(page))
2365 BUG();
2366 if (!page_has_buffers(page))
Jan Kara53e87262012-12-25 13:29:52 -05002367 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002368
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002369 BUG_ON(stop > PAGE_SIZE || stop < length);
Lukas Czerner259709b2013-05-21 23:20:03 -04002370
Dave Kleikamp470decc2006-10-11 01:20:57 -07002371 /* We will potentially be playing with lists other than just the
2372 * data lists (especially for journaled data mode), so be
2373 * cautious in our locking. */
2374
2375 head = bh = page_buffers(page);
2376 do {
2377 unsigned int next_off = curr_off + bh->b_size;
2378 next = bh->b_this_page;
2379
Lukas Czerner259709b2013-05-21 23:20:03 -04002380 if (next_off > stop)
2381 return 0;
2382
Dave Kleikamp470decc2006-10-11 01:20:57 -07002383 if (offset <= curr_off) {
2384 /* This block is wholly outside the truncation point */
2385 lock_buffer(bh);
Lukas Czerner259709b2013-05-21 23:20:03 -04002386 ret = journal_unmap_buffer(journal, bh, partial_page);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002387 unlock_buffer(bh);
Jan Kara53e87262012-12-25 13:29:52 -05002388 if (ret < 0)
2389 return ret;
2390 may_free &= ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002391 }
2392 curr_off = next_off;
2393 bh = next;
2394
2395 } while (bh != head);
2396
Lukas Czerner259709b2013-05-21 23:20:03 -04002397 if (!partial_page) {
Dave Kleikamp470decc2006-10-11 01:20:57 -07002398 if (may_free && try_to_free_buffers(page))
2399 J_ASSERT(!page_has_buffers(page));
2400 }
Jan Kara53e87262012-12-25 13:29:52 -05002401 return 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002402}
2403
2404/*
2405 * File a buffer on the given transaction list.
2406 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002407void __jbd2_journal_file_buffer(struct journal_head *jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07002408 transaction_t *transaction, int jlist)
2409{
2410 struct journal_head **list = NULL;
2411 int was_dirty = 0;
2412 struct buffer_head *bh = jh2bh(jh);
2413
2414 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2415 assert_spin_locked(&transaction->t_journal->j_list_lock);
2416
2417 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
2418 J_ASSERT_JH(jh, jh->b_transaction == transaction ||
Mingming Cao40191912008-01-28 23:58:27 -05002419 jh->b_transaction == NULL);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002420
2421 if (jh->b_transaction && jh->b_jlist == jlist)
2422 return;
2423
Dave Kleikamp470decc2006-10-11 01:20:57 -07002424 if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
2425 jlist == BJ_Shadow || jlist == BJ_Forget) {
Jan Karaf91d1d02009-07-13 16:16:20 -04002426 /*
2427 * For metadata buffers, we track dirty bit in buffer_jbddirty
2428 * instead of buffer_dirty. We should not see a dirty bit set
2429 * here because we clear it in do_get_write_access but e.g.
2430 * tune2fs can modify the sb and set the dirty bit at any time
2431 * so we try to gracefully handle that.
2432 */
2433 if (buffer_dirty(bh))
2434 warn_dirty_buffer(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002435 if (test_clear_buffer_dirty(bh) ||
2436 test_clear_buffer_jbddirty(bh))
2437 was_dirty = 1;
2438 }
2439
2440 if (jh->b_transaction)
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002441 __jbd2_journal_temp_unlink_buffer(jh);
Jan Karade1b7942011-06-13 15:38:22 -04002442 else
2443 jbd2_journal_grab_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002444 jh->b_transaction = transaction;
2445
2446 switch (jlist) {
2447 case BJ_None:
2448 J_ASSERT_JH(jh, !jh->b_committed_data);
2449 J_ASSERT_JH(jh, !jh->b_frozen_data);
2450 return;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002451 case BJ_Metadata:
2452 transaction->t_nr_buffers++;
2453 list = &transaction->t_buffers;
2454 break;
2455 case BJ_Forget:
2456 list = &transaction->t_forget;
2457 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002458 case BJ_Shadow:
2459 list = &transaction->t_shadow_list;
2460 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002461 case BJ_Reserved:
2462 list = &transaction->t_reserved_list;
2463 break;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002464 }
2465
2466 __blist_add_buffer(list, jh);
2467 jh->b_jlist = jlist;
2468
2469 if (was_dirty)
2470 set_buffer_jbddirty(bh);
2471}
2472
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002473void jbd2_journal_file_buffer(struct journal_head *jh,
Dave Kleikamp470decc2006-10-11 01:20:57 -07002474 transaction_t *transaction, int jlist)
2475{
2476 jbd_lock_bh_state(jh2bh(jh));
2477 spin_lock(&transaction->t_journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002478 __jbd2_journal_file_buffer(jh, transaction, jlist);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002479 spin_unlock(&transaction->t_journal->j_list_lock);
2480 jbd_unlock_bh_state(jh2bh(jh));
2481}
2482
2483/*
2484 * Remove a buffer from its current buffer list in preparation for
2485 * dropping it from its current transaction entirely. If the buffer has
2486 * already started to be used by a subsequent transaction, refile the
2487 * buffer on that transaction's metadata list.
2488 *
Jan Karade1b7942011-06-13 15:38:22 -04002489 * Called under j_list_lock
Dave Kleikamp470decc2006-10-11 01:20:57 -07002490 * Called under jbd_lock_bh_state(jh2bh(jh))
Jan Karade1b7942011-06-13 15:38:22 -04002491 *
2492 * jh and bh may be already free when this function returns
Dave Kleikamp470decc2006-10-11 01:20:57 -07002493 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002494void __jbd2_journal_refile_buffer(struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002495{
dingdinghuaba869022010-02-15 16:35:42 -05002496 int was_dirty, jlist;
Dave Kleikamp470decc2006-10-11 01:20:57 -07002497 struct buffer_head *bh = jh2bh(jh);
2498
2499 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2500 if (jh->b_transaction)
2501 assert_spin_locked(&jh->b_transaction->t_journal->j_list_lock);
2502
2503 /* If the buffer is now unused, just drop it. */
2504 if (jh->b_next_transaction == NULL) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002505 __jbd2_journal_unfile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002506 return;
2507 }
2508
2509 /*
2510 * It has been modified by a later transaction: add it to the new
2511 * transaction's metadata list.
2512 */
2513
2514 was_dirty = test_clear_buffer_jbddirty(bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002515 __jbd2_journal_temp_unlink_buffer(jh);
Jan Karade1b7942011-06-13 15:38:22 -04002516 /*
2517 * We set b_transaction here because b_next_transaction will inherit
2518 * our jh reference and thus __jbd2_journal_file_buffer() must not
2519 * take a new one.
2520 */
Dave Kleikamp470decc2006-10-11 01:20:57 -07002521 jh->b_transaction = jh->b_next_transaction;
2522 jh->b_next_transaction = NULL;
dingdinghuaba869022010-02-15 16:35:42 -05002523 if (buffer_freed(bh))
2524 jlist = BJ_Forget;
2525 else if (jh->b_modified)
2526 jlist = BJ_Metadata;
2527 else
2528 jlist = BJ_Reserved;
2529 __jbd2_journal_file_buffer(jh, jh->b_transaction, jlist);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002530 J_ASSERT_JH(jh, jh->b_transaction->t_state == T_RUNNING);
2531
2532 if (was_dirty)
2533 set_buffer_jbddirty(bh);
2534}
2535
2536/*
Jan Karade1b7942011-06-13 15:38:22 -04002537 * __jbd2_journal_refile_buffer() with necessary locking added. We take our
2538 * bh reference so that we can safely unlock bh.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002539 *
Jan Karade1b7942011-06-13 15:38:22 -04002540 * The jh and bh may be freed by this call.
Dave Kleikamp470decc2006-10-11 01:20:57 -07002541 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002542void jbd2_journal_refile_buffer(journal_t *journal, struct journal_head *jh)
Dave Kleikamp470decc2006-10-11 01:20:57 -07002543{
2544 struct buffer_head *bh = jh2bh(jh);
2545
Jan Karade1b7942011-06-13 15:38:22 -04002546 /* Get reference so that buffer cannot be freed before we unlock it */
2547 get_bh(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002548 jbd_lock_bh_state(bh);
2549 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002550 __jbd2_journal_refile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002551 jbd_unlock_bh_state(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -07002552 spin_unlock(&journal->j_list_lock);
2553 __brelse(bh);
2554}
Jan Karac851ed52008-07-11 19:27:31 -04002555
2556/*
2557 * File inode in the inode list of the handle's transaction
2558 */
Jan Kara41617e12016-04-24 00:56:07 -04002559static int jbd2_journal_file_inode(handle_t *handle, struct jbd2_inode *jinode,
Ross Zwisler6ba0e7d2019-06-20 17:24:56 -04002560 unsigned long flags, loff_t start_byte, loff_t end_byte)
Jan Karac851ed52008-07-11 19:27:31 -04002561{
2562 transaction_t *transaction = handle->h_transaction;
Theodore Ts'o41a5b912013-07-01 08:12:41 -04002563 journal_t *journal;
Jan Karac851ed52008-07-11 19:27:31 -04002564
2565 if (is_handle_aborted(handle))
Theodore Ts'o41a5b912013-07-01 08:12:41 -04002566 return -EROFS;
2567 journal = transaction->t_journal;
Jan Karac851ed52008-07-11 19:27:31 -04002568
2569 jbd_debug(4, "Adding inode %lu, tid:%d\n", jinode->i_vfs_inode->i_ino,
2570 transaction->t_tid);
2571
Jan Karac851ed52008-07-11 19:27:31 -04002572 spin_lock(&journal->j_list_lock);
Jan Kara41617e12016-04-24 00:56:07 -04002573 jinode->i_flags |= flags;
Ross Zwisler6ba0e7d2019-06-20 17:24:56 -04002574
2575 if (jinode->i_dirty_end) {
2576 jinode->i_dirty_start = min(jinode->i_dirty_start, start_byte);
2577 jinode->i_dirty_end = max(jinode->i_dirty_end, end_byte);
2578 } else {
2579 jinode->i_dirty_start = start_byte;
2580 jinode->i_dirty_end = end_byte;
2581 }
2582
Jan Kara41617e12016-04-24 00:56:07 -04002583 /* Is inode already attached where we need it? */
Jan Karac851ed52008-07-11 19:27:31 -04002584 if (jinode->i_transaction == transaction ||
2585 jinode->i_next_transaction == transaction)
2586 goto done;
2587
Jan Kara81be12c2011-05-24 11:52:40 -04002588 /*
2589 * We only ever set this variable to 1 so the test is safe. Since
2590 * t_need_data_flush is likely to be set, we do the test to save some
2591 * cacheline bouncing
2592 */
2593 if (!transaction->t_need_data_flush)
2594 transaction->t_need_data_flush = 1;
Jan Karac851ed52008-07-11 19:27:31 -04002595 /* On some different transaction's list - should be
2596 * the committing one */
2597 if (jinode->i_transaction) {
2598 J_ASSERT(jinode->i_next_transaction == NULL);
2599 J_ASSERT(jinode->i_transaction ==
2600 journal->j_committing_transaction);
2601 jinode->i_next_transaction = transaction;
2602 goto done;
2603 }
2604 /* Not on any transaction list... */
2605 J_ASSERT(!jinode->i_next_transaction);
2606 jinode->i_transaction = transaction;
2607 list_add(&jinode->i_list, &transaction->t_inode_list);
2608done:
2609 spin_unlock(&journal->j_list_lock);
2610
2611 return 0;
2612}
2613
Ross Zwisler6ba0e7d2019-06-20 17:24:56 -04002614int jbd2_journal_inode_ranged_write(handle_t *handle,
2615 struct jbd2_inode *jinode, loff_t start_byte, loff_t length)
2616{
2617 return jbd2_journal_file_inode(handle, jinode,
2618 JI_WRITE_DATA | JI_WAIT_DATA, start_byte,
2619 start_byte + length - 1);
2620}
2621
2622int jbd2_journal_inode_ranged_wait(handle_t *handle, struct jbd2_inode *jinode,
2623 loff_t start_byte, loff_t length)
2624{
2625 return jbd2_journal_file_inode(handle, jinode, JI_WAIT_DATA,
2626 start_byte, start_byte + length - 1);
Jan Kara41617e12016-04-24 00:56:07 -04002627}
2628
Jan Karac851ed52008-07-11 19:27:31 -04002629/*
Jan Kara7f5aa212009-02-10 11:15:34 -05002630 * File truncate and transaction commit interact with each other in a
2631 * non-trivial way. If a transaction writing data block A is
2632 * committing, we cannot discard the data by truncate until we have
2633 * written them. Otherwise if we crashed after the transaction with
2634 * write has committed but before the transaction with truncate has
2635 * committed, we could see stale data in block A. This function is a
2636 * helper to solve this problem. It starts writeout of the truncated
2637 * part in case it is in the committing transaction.
2638 *
2639 * Filesystem code must call this function when inode is journaled in
2640 * ordered mode before truncation happens and after the inode has been
2641 * placed on orphan list with the new inode size. The second condition
2642 * avoids the race that someone writes new data and we start
2643 * committing the transaction after this function has been called but
2644 * before a transaction for truncate is started (and furthermore it
2645 * allows us to optimize the case where the addition to orphan list
2646 * happens in the same transaction as write --- we don't have to write
2647 * any data in such case).
Jan Karac851ed52008-07-11 19:27:31 -04002648 */
Jan Kara7f5aa212009-02-10 11:15:34 -05002649int jbd2_journal_begin_ordered_truncate(journal_t *journal,
2650 struct jbd2_inode *jinode,
Jan Karac851ed52008-07-11 19:27:31 -04002651 loff_t new_size)
2652{
Jan Kara7f5aa212009-02-10 11:15:34 -05002653 transaction_t *inode_trans, *commit_trans;
Jan Karac851ed52008-07-11 19:27:31 -04002654 int ret = 0;
2655
Jan Kara7f5aa212009-02-10 11:15:34 -05002656 /* This is a quick check to avoid locking if not necessary */
2657 if (!jinode->i_transaction)
Jan Karac851ed52008-07-11 19:27:31 -04002658 goto out;
Jan Kara7f5aa212009-02-10 11:15:34 -05002659 /* Locks are here just to force reading of recent values, it is
2660 * enough that the transaction was not committing before we started
2661 * a transaction adding the inode to orphan list */
Theodore Ts'oa931da62010-08-03 21:35:12 -04002662 read_lock(&journal->j_state_lock);
Jan Karac851ed52008-07-11 19:27:31 -04002663 commit_trans = journal->j_committing_transaction;
Theodore Ts'oa931da62010-08-03 21:35:12 -04002664 read_unlock(&journal->j_state_lock);
Jan Kara7f5aa212009-02-10 11:15:34 -05002665 spin_lock(&journal->j_list_lock);
2666 inode_trans = jinode->i_transaction;
2667 spin_unlock(&journal->j_list_lock);
2668 if (inode_trans == commit_trans) {
2669 ret = filemap_fdatawrite_range(jinode->i_vfs_inode->i_mapping,
Jan Karac851ed52008-07-11 19:27:31 -04002670 new_size, LLONG_MAX);
2671 if (ret)
2672 jbd2_journal_abort(journal, ret);
2673 }
2674out:
2675 return ret;
2676}