Theodore Ts'o | f516676 | 2017-12-17 22:00:59 -0500 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2 | /* |
Uwe Kleine-König | 5886269 | 2007-05-09 07:51:49 +0200 | [diff] [blame] | 3 | * linux/fs/jbd2/transaction.c |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 4 | * |
| 5 | * Written by Stephen C. Tweedie <sct@redhat.com>, 1998 |
| 6 | * |
| 7 | * Copyright 1998 Red Hat corp --- All Rights Reserved |
| 8 | * |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 9 | * 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 Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 19 | #include <linux/jbd2.h> |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 20 | #include <linux/errno.h> |
| 21 | #include <linux/slab.h> |
| 22 | #include <linux/timer.h> |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 23 | #include <linux/mm.h> |
| 24 | #include <linux/highmem.h> |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 25 | #include <linux/hrtimer.h> |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 26 | #include <linux/backing-dev.h> |
Randy Dunlap | 4470575 | 2011-10-27 04:05:13 -0400 | [diff] [blame] | 27 | #include <linux/bug.h> |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 28 | #include <linux/module.h> |
Michal Hocko | 81378da | 2017-05-03 14:53:22 -0700 | [diff] [blame] | 29 | #include <linux/sched/mm.h> |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 30 | |
Theodore Ts'o | 343d9c2 | 2013-02-08 13:00:22 -0500 | [diff] [blame] | 31 | #include <trace/events/jbd2.h> |
| 32 | |
Adrian Bunk | 7ddae86 | 2006-12-06 20:38:27 -0800 | [diff] [blame] | 33 | static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh); |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 34 | static void __jbd2_journal_unfile_buffer(struct journal_head *jh); |
Adrian Bunk | 7ddae86 | 2006-12-06 20:38:27 -0800 | [diff] [blame] | 35 | |
Yongqiang Yang | 0c2022e | 2012-02-20 17:53:02 -0500 | [diff] [blame] | 36 | static struct kmem_cache *transaction_cache; |
| 37 | int __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 Xu | 0d52154 | 2019-05-10 21:15:47 -0400 | [diff] [blame] | 45 | if (!transaction_cache) { |
| 46 | pr_emerg("JBD2: failed to create transaction cache\n"); |
| 47 | return -ENOMEM; |
| 48 | } |
| 49 | return 0; |
Yongqiang Yang | 0c2022e | 2012-02-20 17:53:02 -0500 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | void jbd2_journal_destroy_transaction_cache(void) |
| 53 | { |
Wang Long | 8bdd5b6 | 2018-05-20 22:38:26 -0400 | [diff] [blame] | 54 | kmem_cache_destroy(transaction_cache); |
| 55 | transaction_cache = NULL; |
Yongqiang Yang | 0c2022e | 2012-02-20 17:53:02 -0500 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | void 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 Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 65 | /* |
Jan Kara | 19014d6 | 2019-11-05 17:44:31 +0100 | [diff] [blame] | 66 | * Base amount of descriptor blocks we reserve for each transaction. |
Jan Kara | 9f356e5 | 2019-11-05 17:44:24 +0100 | [diff] [blame] | 67 | */ |
Jan Kara | 9f356e5 | 2019-11-05 17:44:24 +0100 | [diff] [blame] | 68 | static int jbd2_descriptor_blocks_per_trans(journal_t *journal) |
| 69 | { |
Jan Kara | 19014d6 | 2019-11-05 17:44:31 +0100 | [diff] [blame] | 70 | int tag_space = journal->j_blocksize - sizeof(journal_header_t); |
| 71 | int tags_per_block; |
| 72 | |
| 73 | /* Subtract UUID */ |
| 74 | tag_space -= 16; |
| 75 | if (jbd2_journal_has_csum_v2or3(journal)) |
| 76 | tag_space -= sizeof(struct jbd2_journal_block_tail); |
| 77 | /* Commit code leaves a slack space of 16 bytes at the end of block */ |
| 78 | tags_per_block = (tag_space - 16) / journal_tag_bytes(journal); |
| 79 | /* |
| 80 | * Revoke descriptors are accounted separately so we need to reserve |
| 81 | * space for commit block and normal transaction descriptor blocks. |
| 82 | */ |
| 83 | return 1 + DIV_ROUND_UP(journal->j_max_transaction_buffers, |
| 84 | tags_per_block); |
Jan Kara | 9f356e5 | 2019-11-05 17:44:24 +0100 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | /* |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 88 | * jbd2_get_transaction: obtain a new transaction_t object. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 89 | * |
Liu Song | 0df6f46 | 2019-03-01 00:36:57 -0500 | [diff] [blame] | 90 | * Simply initialise a new transaction. Initialize it in |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 91 | * RUNNING state and add it to the current journal (which should not |
| 92 | * have an existing running transaction: we only make a new transaction |
| 93 | * once we have started to commit the old one). |
| 94 | * |
| 95 | * Preconditions: |
| 96 | * The journal MUST be locked. We don't perform atomic mallocs on the |
| 97 | * new transaction and we can't block without protecting against other |
| 98 | * processes trying to touch the journal while it is in transition. |
| 99 | * |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 100 | */ |
| 101 | |
Liu Song | 0df6f46 | 2019-03-01 00:36:57 -0500 | [diff] [blame] | 102 | static void jbd2_get_transaction(journal_t *journal, |
| 103 | transaction_t *transaction) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 104 | { |
| 105 | transaction->t_journal = journal; |
| 106 | transaction->t_state = T_RUNNING; |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 107 | transaction->t_start_time = ktime_get(); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 108 | transaction->t_tid = journal->j_transaction_sequence++; |
| 109 | transaction->t_expires = jiffies + journal->j_commit_interval; |
| 110 | spin_lock_init(&transaction->t_handle_lock); |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 111 | atomic_set(&transaction->t_updates, 0); |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 112 | atomic_set(&transaction->t_outstanding_credits, |
Jan Kara | 9f356e5 | 2019-11-05 17:44:24 +0100 | [diff] [blame] | 113 | jbd2_descriptor_blocks_per_trans(journal) + |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 114 | atomic_read(&journal->j_reserved_credits)); |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 115 | atomic_set(&transaction->t_outstanding_revokes, 0); |
Theodore Ts'o | 8dd4204 | 2010-08-03 21:38:29 -0400 | [diff] [blame] | 116 | atomic_set(&transaction->t_handle_count, 0); |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 117 | INIT_LIST_HEAD(&transaction->t_inode_list); |
Theodore Ts'o | 3e624fc | 2008-10-16 20:00:24 -0400 | [diff] [blame] | 118 | INIT_LIST_HEAD(&transaction->t_private_list); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 119 | |
| 120 | /* Set up the commit timer for the new transaction. */ |
Andreas Dilger | b1f485f | 2009-08-10 22:51:53 -0400 | [diff] [blame] | 121 | journal->j_commit_timer.expires = round_jiffies_up(transaction->t_expires); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 122 | add_timer(&journal->j_commit_timer); |
| 123 | |
| 124 | J_ASSERT(journal->j_running_transaction == NULL); |
| 125 | journal->j_running_transaction = transaction; |
Johann Lombardi | 8e85fb3 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 126 | transaction->t_max_wait = 0; |
| 127 | transaction->t_start = jiffies; |
Theodore Ts'o | 9fff24a | 2013-02-06 22:30:23 -0500 | [diff] [blame] | 128 | transaction->t_requested = 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /* |
| 132 | * Handle management. |
| 133 | * |
| 134 | * A handle_t is an object which represents a single atomic update to a |
| 135 | * filesystem, and which tracks all of the modifications which form part |
| 136 | * of that one update. |
| 137 | */ |
| 138 | |
| 139 | /* |
Tao Ma | 28e35e42 | 2011-05-22 21:45:26 -0400 | [diff] [blame] | 140 | * Update transaction's maximum wait time, if debugging is enabled. |
Theodore Ts'o | 6d0bf00 | 2010-08-09 17:28:38 -0400 | [diff] [blame] | 141 | * |
| 142 | * In order for t_max_wait to be reliable, it must be protected by a |
| 143 | * lock. But doing so will mean that start_this_handle() can not be |
| 144 | * run in parallel on SMP systems, which limits our scalability. So |
| 145 | * unless debugging is enabled, we no longer update t_max_wait, which |
| 146 | * means that maximum wait time reported by the jbd2_run_stats |
| 147 | * tracepoint will always be zero. |
| 148 | */ |
Tao Ma | 28e35e42 | 2011-05-22 21:45:26 -0400 | [diff] [blame] | 149 | static inline void update_t_max_wait(transaction_t *transaction, |
| 150 | unsigned long ts) |
Theodore Ts'o | 6d0bf00 | 2010-08-09 17:28:38 -0400 | [diff] [blame] | 151 | { |
| 152 | #ifdef CONFIG_JBD2_DEBUG |
Theodore Ts'o | 6d0bf00 | 2010-08-09 17:28:38 -0400 | [diff] [blame] | 153 | if (jbd2_journal_enable_debug && |
| 154 | time_after(transaction->t_start, ts)) { |
| 155 | ts = jbd2_time_diff(ts, transaction->t_start); |
| 156 | spin_lock(&transaction->t_handle_lock); |
| 157 | if (ts > transaction->t_max_wait) |
| 158 | transaction->t_max_wait = ts; |
| 159 | spin_unlock(&transaction->t_handle_lock); |
| 160 | } |
| 161 | #endif |
| 162 | } |
| 163 | |
| 164 | /* |
Jan Kara | 96f1e09 | 2018-12-03 23:16:07 -0500 | [diff] [blame] | 165 | * Wait until running transaction passes to T_FLUSH state and new transaction |
| 166 | * can thus be started. Also starts the commit if needed. The function expects |
| 167 | * running transaction to exist and releases j_state_lock. |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 168 | */ |
| 169 | static void wait_transaction_locked(journal_t *journal) |
| 170 | __releases(journal->j_state_lock) |
| 171 | { |
| 172 | DEFINE_WAIT(wait); |
| 173 | int need_to_start; |
| 174 | tid_t tid = journal->j_running_transaction->t_tid; |
| 175 | |
| 176 | prepare_to_wait(&journal->j_wait_transaction_locked, &wait, |
| 177 | TASK_UNINTERRUPTIBLE); |
| 178 | need_to_start = !tid_geq(journal->j_commit_request, tid); |
| 179 | read_unlock(&journal->j_state_lock); |
| 180 | if (need_to_start) |
| 181 | jbd2_log_start_commit(journal, tid); |
Jan Kara | e03a997 | 2016-09-22 11:44:06 -0400 | [diff] [blame] | 182 | jbd2_might_wait_for_commit(journal); |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 183 | schedule(); |
| 184 | finish_wait(&journal->j_wait_transaction_locked, &wait); |
| 185 | } |
| 186 | |
Jan Kara | 96f1e09 | 2018-12-03 23:16:07 -0500 | [diff] [blame] | 187 | /* |
| 188 | * Wait until running transaction transitions from T_SWITCH to T_FLUSH |
| 189 | * state and new transaction can thus be started. The function releases |
| 190 | * j_state_lock. |
| 191 | */ |
| 192 | static void wait_transaction_switching(journal_t *journal) |
| 193 | __releases(journal->j_state_lock) |
| 194 | { |
| 195 | DEFINE_WAIT(wait); |
| 196 | |
| 197 | if (WARN_ON(!journal->j_running_transaction || |
Theodore Ts'o | 05d5233 | 2020-11-07 00:00:49 -0500 | [diff] [blame] | 198 | journal->j_running_transaction->t_state != T_SWITCH)) { |
| 199 | read_unlock(&journal->j_state_lock); |
Jan Kara | 96f1e09 | 2018-12-03 23:16:07 -0500 | [diff] [blame] | 200 | return; |
Theodore Ts'o | 05d5233 | 2020-11-07 00:00:49 -0500 | [diff] [blame] | 201 | } |
Jan Kara | 96f1e09 | 2018-12-03 23:16:07 -0500 | [diff] [blame] | 202 | prepare_to_wait(&journal->j_wait_transaction_locked, &wait, |
| 203 | TASK_UNINTERRUPTIBLE); |
| 204 | read_unlock(&journal->j_state_lock); |
| 205 | /* |
| 206 | * We don't call jbd2_might_wait_for_commit() here as there's no |
| 207 | * waiting for outstanding handles happening anymore in T_SWITCH state |
| 208 | * and handling of reserved handles actually relies on that for |
| 209 | * correctness. |
| 210 | */ |
| 211 | schedule(); |
| 212 | finish_wait(&journal->j_wait_transaction_locked, &wait); |
| 213 | } |
| 214 | |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 215 | static void sub_reserved_credits(journal_t *journal, int blocks) |
| 216 | { |
| 217 | atomic_sub(blocks, &journal->j_reserved_credits); |
| 218 | wake_up(&journal->j_wait_reserved); |
| 219 | } |
| 220 | |
| 221 | /* |
| 222 | * Wait until we can add credits for handle to the running transaction. Called |
| 223 | * with j_state_lock held for reading. Returns 0 if handle joined the running |
| 224 | * transaction. Returns 1 if we had to wait, j_state_lock is dropped, and |
| 225 | * caller must retry. |
Theodore Ts'o | b33d9f5 | 2021-08-14 10:54:09 -0400 | [diff] [blame] | 226 | * |
| 227 | * Note: because j_state_lock may be dropped depending on the return |
| 228 | * value, we need to fake out sparse so ti doesn't complain about a |
| 229 | * locking imbalance. Callers of add_transaction_credits will need to |
| 230 | * make a similar accomodation. |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 231 | */ |
| 232 | static int add_transaction_credits(journal_t *journal, int blocks, |
| 233 | int rsv_blocks) |
Theodore Ts'o | b33d9f5 | 2021-08-14 10:54:09 -0400 | [diff] [blame] | 234 | __must_hold(&journal->j_state_lock) |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 235 | { |
| 236 | transaction_t *t = journal->j_running_transaction; |
| 237 | int needed; |
| 238 | int total = blocks + rsv_blocks; |
| 239 | |
| 240 | /* |
| 241 | * If the current transaction is locked down for commit, wait |
| 242 | * for the lock to be released. |
| 243 | */ |
Jan Kara | 96f1e09 | 2018-12-03 23:16:07 -0500 | [diff] [blame] | 244 | if (t->t_state != T_RUNNING) { |
| 245 | WARN_ON_ONCE(t->t_state >= T_FLUSH); |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 246 | wait_transaction_locked(journal); |
Theodore Ts'o | b33d9f5 | 2021-08-14 10:54:09 -0400 | [diff] [blame] | 247 | __acquire(&journal->j_state_lock); /* fake out sparse */ |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 248 | return 1; |
| 249 | } |
| 250 | |
| 251 | /* |
| 252 | * If there is not enough space left in the log to write all |
| 253 | * potential buffers requested by this operation, we need to |
| 254 | * stall pending a log checkpoint to free some more log space. |
| 255 | */ |
| 256 | needed = atomic_add_return(total, &t->t_outstanding_credits); |
| 257 | if (needed > journal->j_max_transaction_buffers) { |
| 258 | /* |
| 259 | * If the current transaction is already too large, |
| 260 | * then start to commit it: we can then go back and |
| 261 | * attach this handle to a new transaction. |
| 262 | */ |
| 263 | atomic_sub(total, &t->t_outstanding_credits); |
Lukas Czerner | 6d3ec14 | 2015-08-04 11:21:52 -0400 | [diff] [blame] | 264 | |
| 265 | /* |
| 266 | * Is the number of reserved credits in the current transaction too |
| 267 | * big to fit this handle? Wait until reserved credits are freed. |
| 268 | */ |
| 269 | if (atomic_read(&journal->j_reserved_credits) + total > |
| 270 | journal->j_max_transaction_buffers) { |
| 271 | read_unlock(&journal->j_state_lock); |
Jan Kara | e03a997 | 2016-09-22 11:44:06 -0400 | [diff] [blame] | 272 | jbd2_might_wait_for_commit(journal); |
Lukas Czerner | 6d3ec14 | 2015-08-04 11:21:52 -0400 | [diff] [blame] | 273 | wait_event(journal->j_wait_reserved, |
| 274 | atomic_read(&journal->j_reserved_credits) + total <= |
| 275 | journal->j_max_transaction_buffers); |
Theodore Ts'o | b33d9f5 | 2021-08-14 10:54:09 -0400 | [diff] [blame] | 276 | __acquire(&journal->j_state_lock); /* fake out sparse */ |
Lukas Czerner | 6d3ec14 | 2015-08-04 11:21:52 -0400 | [diff] [blame] | 277 | return 1; |
| 278 | } |
| 279 | |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 280 | wait_transaction_locked(journal); |
Theodore Ts'o | b33d9f5 | 2021-08-14 10:54:09 -0400 | [diff] [blame] | 281 | __acquire(&journal->j_state_lock); /* fake out sparse */ |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 282 | return 1; |
| 283 | } |
| 284 | |
| 285 | /* |
| 286 | * The commit code assumes that it can get enough log space |
| 287 | * without forcing a checkpoint. This is *critical* for |
| 288 | * correctness: a checkpoint of a buffer which is also |
| 289 | * associated with a committing transaction creates a deadlock, |
| 290 | * so commit simply cannot force through checkpoints. |
| 291 | * |
| 292 | * We must therefore ensure the necessary space in the journal |
| 293 | * *before* starting to dirty potentially checkpointed buffers |
| 294 | * in the new transaction. |
| 295 | */ |
Jan Kara | 77444ac | 2019-11-05 17:44:25 +0100 | [diff] [blame] | 296 | if (jbd2_log_space_left(journal) < journal->j_max_transaction_buffers) { |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 297 | atomic_sub(total, &t->t_outstanding_credits); |
| 298 | read_unlock(&journal->j_state_lock); |
Jan Kara | e03a997 | 2016-09-22 11:44:06 -0400 | [diff] [blame] | 299 | jbd2_might_wait_for_commit(journal); |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 300 | write_lock(&journal->j_state_lock); |
Jan Kara | 77444ac | 2019-11-05 17:44:25 +0100 | [diff] [blame] | 301 | if (jbd2_log_space_left(journal) < |
| 302 | journal->j_max_transaction_buffers) |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 303 | __jbd2_log_wait_for_space(journal); |
| 304 | write_unlock(&journal->j_state_lock); |
Theodore Ts'o | b33d9f5 | 2021-08-14 10:54:09 -0400 | [diff] [blame] | 305 | __acquire(&journal->j_state_lock); /* fake out sparse */ |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 306 | return 1; |
| 307 | } |
| 308 | |
| 309 | /* No reservation? We are done... */ |
| 310 | if (!rsv_blocks) |
| 311 | return 0; |
| 312 | |
| 313 | needed = atomic_add_return(rsv_blocks, &journal->j_reserved_credits); |
| 314 | /* We allow at most half of a transaction to be reserved */ |
| 315 | if (needed > journal->j_max_transaction_buffers / 2) { |
| 316 | sub_reserved_credits(journal, rsv_blocks); |
| 317 | atomic_sub(total, &t->t_outstanding_credits); |
| 318 | read_unlock(&journal->j_state_lock); |
Jan Kara | e03a997 | 2016-09-22 11:44:06 -0400 | [diff] [blame] | 319 | jbd2_might_wait_for_commit(journal); |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 320 | wait_event(journal->j_wait_reserved, |
| 321 | atomic_read(&journal->j_reserved_credits) + rsv_blocks |
| 322 | <= journal->j_max_transaction_buffers / 2); |
Theodore Ts'o | b33d9f5 | 2021-08-14 10:54:09 -0400 | [diff] [blame] | 323 | __acquire(&journal->j_state_lock); /* fake out sparse */ |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 324 | return 1; |
| 325 | } |
| 326 | return 0; |
| 327 | } |
| 328 | |
| 329 | /* |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 330 | * start_this_handle: Given a handle, deal with any locking or stalling |
| 331 | * needed to make sure that there is enough journal space for the handle |
| 332 | * to begin. Attach the handle to a transaction and set up the |
| 333 | * transaction's buffer credits. |
| 334 | */ |
| 335 | |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 336 | static int start_this_handle(journal_t *journal, handle_t *handle, |
Dan Carpenter | d2159fb | 2011-09-04 10:20:14 -0400 | [diff] [blame] | 337 | gfp_t gfp_mask) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 338 | { |
Theodore Ts'o | e447183 | 2011-02-12 08:18:24 -0500 | [diff] [blame] | 339 | transaction_t *transaction, *new_transaction = NULL; |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 340 | int blocks = handle->h_total_credits; |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 341 | int rsv_blocks = 0; |
Tao Ma | 28e35e42 | 2011-05-22 21:45:26 -0400 | [diff] [blame] | 342 | unsigned long ts = jiffies; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 343 | |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 344 | if (handle->h_rsv_handle) |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 345 | rsv_blocks = handle->h_rsv_handle->h_total_credits; |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 346 | |
Lukas Czerner | 6d3ec14 | 2015-08-04 11:21:52 -0400 | [diff] [blame] | 347 | /* |
| 348 | * Limit the number of reserved credits to 1/2 of maximum transaction |
| 349 | * size and limit the number of total credits to not exceed maximum |
| 350 | * transaction size per operation. |
| 351 | */ |
| 352 | if ((rsv_blocks > journal->j_max_transaction_buffers / 2) || |
| 353 | (rsv_blocks + blocks > journal->j_max_transaction_buffers)) { |
| 354 | printk(KERN_ERR "JBD2: %s wants too many credits " |
| 355 | "credits:%d rsv_credits:%d max:%d\n", |
| 356 | current->comm, blocks, rsv_blocks, |
| 357 | journal->j_max_transaction_buffers); |
| 358 | WARN_ON(1); |
| 359 | return -ENOSPC; |
| 360 | } |
| 361 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 362 | alloc_transaction: |
Jan Kara | 3b1833e9 | 2021-04-06 18:17:59 +0200 | [diff] [blame] | 363 | /* |
| 364 | * This check is racy but it is just an optimization of allocating new |
| 365 | * transaction early if there are high chances we'll need it. If we |
| 366 | * guess wrong, we'll retry or free unused transaction. |
| 367 | */ |
| 368 | if (!data_race(journal->j_running_transaction)) { |
Michal Hocko | 6ccaf3e | 2015-06-08 10:53:10 -0400 | [diff] [blame] | 369 | /* |
| 370 | * If __GFP_FS is not present, then we may be being called from |
| 371 | * inside the fs writeback layer, so we MUST NOT fail. |
| 372 | */ |
| 373 | if ((gfp_mask & __GFP_FS) == 0) |
| 374 | gfp_mask |= __GFP_NOFAIL; |
Wanlong Gao | b2f4edb | 2012-06-01 00:10:32 -0400 | [diff] [blame] | 375 | new_transaction = kmem_cache_zalloc(transaction_cache, |
| 376 | gfp_mask); |
Michal Hocko | 6ccaf3e | 2015-06-08 10:53:10 -0400 | [diff] [blame] | 377 | if (!new_transaction) |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 378 | return -ENOMEM; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | jbd_debug(3, "New handle %p going live.\n", handle); |
| 382 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 383 | /* |
| 384 | * We need to hold j_state_lock until t_updates has been incremented, |
| 385 | * for proper journal barrier handling |
| 386 | */ |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 387 | repeat: |
| 388 | read_lock(&journal->j_state_lock); |
Theodore Ts'o | 5c2178e | 2010-10-27 21:30:04 -0400 | [diff] [blame] | 389 | BUG_ON(journal->j_flags & JBD2_UNMOUNT); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 390 | if (is_journal_aborted(journal) || |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 391 | (journal->j_errno != 0 && !(journal->j_flags & JBD2_ACK_ERR))) { |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 392 | read_unlock(&journal->j_state_lock); |
Yongqiang Yang | 0c2022e | 2012-02-20 17:53:02 -0500 | [diff] [blame] | 393 | jbd2_journal_free_transaction(new_transaction); |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 394 | return -EROFS; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 397 | /* |
| 398 | * Wait on the journal's transaction barrier if necessary. Specifically |
| 399 | * we allow reserved handles to proceed because otherwise commit could |
| 400 | * deadlock on page writeback not being able to complete. |
| 401 | */ |
| 402 | if (!handle->h_reserved && journal->j_barrier_count) { |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 403 | read_unlock(&journal->j_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 404 | wait_event(journal->j_wait_transaction_locked, |
| 405 | journal->j_barrier_count == 0); |
| 406 | goto repeat; |
| 407 | } |
| 408 | |
| 409 | if (!journal->j_running_transaction) { |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 410 | read_unlock(&journal->j_state_lock); |
| 411 | if (!new_transaction) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 412 | goto alloc_transaction; |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 413 | write_lock(&journal->j_state_lock); |
Jan Kara | d7961c7 | 2012-12-21 00:15:51 -0500 | [diff] [blame] | 414 | if (!journal->j_running_transaction && |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 415 | (handle->h_reserved || !journal->j_barrier_count)) { |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 416 | jbd2_get_transaction(journal, new_transaction); |
| 417 | new_transaction = NULL; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 418 | } |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 419 | write_unlock(&journal->j_state_lock); |
| 420 | goto repeat; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | transaction = journal->j_running_transaction; |
| 424 | |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 425 | if (!handle->h_reserved) { |
| 426 | /* We may have dropped j_state_lock - restart in that case */ |
Theodore Ts'o | b33d9f5 | 2021-08-14 10:54:09 -0400 | [diff] [blame] | 427 | if (add_transaction_credits(journal, blocks, rsv_blocks)) { |
| 428 | /* |
| 429 | * add_transaction_credits releases |
| 430 | * j_state_lock on a non-zero return |
| 431 | */ |
| 432 | __release(&journal->j_state_lock); |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 433 | goto repeat; |
Theodore Ts'o | b33d9f5 | 2021-08-14 10:54:09 -0400 | [diff] [blame] | 434 | } |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 435 | } else { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 436 | /* |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 437 | * We have handle reserved so we are allowed to join T_LOCKED |
| 438 | * transaction and we don't have to check for transaction size |
Jan Kara | 96f1e09 | 2018-12-03 23:16:07 -0500 | [diff] [blame] | 439 | * and journal space. But we still have to wait while running |
| 440 | * transaction is being switched to a committing one as it |
| 441 | * won't wait for any handles anymore. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 442 | */ |
Jan Kara | 96f1e09 | 2018-12-03 23:16:07 -0500 | [diff] [blame] | 443 | if (transaction->t_state == T_SWITCH) { |
| 444 | wait_transaction_switching(journal); |
| 445 | goto repeat; |
| 446 | } |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 447 | sub_reserved_credits(journal, blocks); |
| 448 | handle->h_reserved = 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | /* OK, account for the buffers that this operation expects to |
Ritesh Harjani | 4f98186 | 2022-01-17 17:41:51 +0530 | [diff] [blame] | 452 | * use and add the handle to the running transaction. |
Theodore Ts'o | 8dd4204 | 2010-08-03 21:38:29 -0400 | [diff] [blame] | 453 | */ |
Tao Ma | 28e35e42 | 2011-05-22 21:45:26 -0400 | [diff] [blame] | 454 | update_t_max_wait(transaction, ts); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 455 | handle->h_transaction = transaction; |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 456 | handle->h_requested_credits = blocks; |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 457 | handle->h_revoke_credits_requested = handle->h_revoke_credits; |
Theodore Ts'o | 343d9c2 | 2013-02-08 13:00:22 -0500 | [diff] [blame] | 458 | handle->h_start_jiffies = jiffies; |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 459 | atomic_inc(&transaction->t_updates); |
Theodore Ts'o | 8dd4204 | 2010-08-03 21:38:29 -0400 | [diff] [blame] | 460 | atomic_inc(&transaction->t_handle_count); |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 461 | jbd_debug(4, "Handle %p given %d credits (total %d, free %lu)\n", |
| 462 | handle, blocks, |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 463 | atomic_read(&transaction->t_outstanding_credits), |
Jan Kara | 76c3990 | 2013-06-04 12:12:57 -0400 | [diff] [blame] | 464 | jbd2_log_space_left(journal)); |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 465 | read_unlock(&journal->j_state_lock); |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 466 | current->journal_info = handle; |
Jan Kara | 9599b0e | 2009-08-17 21:23:17 -0400 | [diff] [blame] | 467 | |
Jan Kara | ab714af | 2016-06-30 11:39:38 -0400 | [diff] [blame] | 468 | rwsem_acquire_read(&journal->j_trans_commit_map, 0, 0, _THIS_IP_); |
Yongqiang Yang | 0c2022e | 2012-02-20 17:53:02 -0500 | [diff] [blame] | 469 | jbd2_journal_free_transaction(new_transaction); |
Michal Hocko | 81378da | 2017-05-03 14:53:22 -0700 | [diff] [blame] | 470 | /* |
| 471 | * Ensure that no allocations done while the transaction is open are |
| 472 | * going to recurse back to the fs layer. |
| 473 | */ |
| 474 | handle->saved_alloc_context = memalloc_nofs_save(); |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 475 | return 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | /* Allocate a new handle. This should probably be in a slab... */ |
| 479 | static handle_t *new_handle(int nblocks) |
| 480 | { |
Mingming Cao | af1e76d | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 481 | handle_t *handle = jbd2_alloc_handle(GFP_NOFS); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 482 | if (!handle) |
| 483 | return NULL; |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 484 | handle->h_total_credits = nblocks; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 485 | handle->h_ref = 1; |
| 486 | |
| 487 | return handle; |
| 488 | } |
| 489 | |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 490 | handle_t *jbd2__journal_start(journal_t *journal, int nblocks, int rsv_blocks, |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 491 | int revoke_records, gfp_t gfp_mask, |
| 492 | unsigned int type, unsigned int line_no) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 493 | { |
| 494 | handle_t *handle = journal_current_handle(); |
| 495 | int err; |
| 496 | |
| 497 | if (!journal) |
| 498 | return ERR_PTR(-EROFS); |
| 499 | |
| 500 | if (handle) { |
| 501 | J_ASSERT(handle->h_transaction->t_journal == journal); |
| 502 | handle->h_ref++; |
| 503 | return handle; |
| 504 | } |
| 505 | |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 506 | nblocks += DIV_ROUND_UP(revoke_records, |
| 507 | journal->j_revoke_records_per_block); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 508 | handle = new_handle(nblocks); |
| 509 | if (!handle) |
| 510 | return ERR_PTR(-ENOMEM); |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 511 | if (rsv_blocks) { |
| 512 | handle_t *rsv_handle; |
| 513 | |
| 514 | rsv_handle = new_handle(rsv_blocks); |
| 515 | if (!rsv_handle) { |
| 516 | jbd2_free_handle(handle); |
| 517 | return ERR_PTR(-ENOMEM); |
| 518 | } |
| 519 | rsv_handle->h_reserved = 1; |
| 520 | rsv_handle->h_journal = journal; |
| 521 | handle->h_rsv_handle = rsv_handle; |
| 522 | } |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 523 | handle->h_revoke_credits = revoke_records; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 524 | |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 525 | err = start_this_handle(journal, handle, gfp_mask); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 526 | if (err < 0) { |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 527 | if (handle->h_rsv_handle) |
| 528 | jbd2_free_handle(handle->h_rsv_handle); |
Mingming Cao | af1e76d | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 529 | jbd2_free_handle(handle); |
Dmitry Monakhov | df05c1b8 | 2013-03-02 17:08:46 -0500 | [diff] [blame] | 530 | return ERR_PTR(err); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 531 | } |
Theodore Ts'o | 343d9c2 | 2013-02-08 13:00:22 -0500 | [diff] [blame] | 532 | handle->h_type = type; |
| 533 | handle->h_line_no = line_no; |
| 534 | trace_jbd2_handle_start(journal->j_fs_dev->bd_dev, |
| 535 | handle->h_transaction->t_tid, type, |
| 536 | line_no, nblocks); |
Michal Hocko | 81378da | 2017-05-03 14:53:22 -0700 | [diff] [blame] | 537 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 538 | return handle; |
| 539 | } |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 540 | EXPORT_SYMBOL(jbd2__journal_start); |
| 541 | |
| 542 | |
Mauro Carvalho Chehab | 91e4775 | 2017-05-12 07:25:21 -0300 | [diff] [blame] | 543 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 544 | * jbd2_journal_start() - Obtain a new handle. |
Mauro Carvalho Chehab | 91e4775 | 2017-05-12 07:25:21 -0300 | [diff] [blame] | 545 | * @journal: Journal to start transaction on. |
| 546 | * @nblocks: number of block buffer we might modify |
| 547 | * |
| 548 | * We make sure that the transaction can guarantee at least nblocks of |
| 549 | * modified buffers in the log. We block until the log can guarantee |
| 550 | * that much space. Additionally, if rsv_blocks > 0, we also create another |
| 551 | * handle with rsv_blocks reserved blocks in the journal. This handle is |
wangyan | 0c1cba6 | 2020-01-22 17:33:10 +0800 | [diff] [blame] | 552 | * stored in h_rsv_handle. It is not attached to any particular transaction |
Mauro Carvalho Chehab | 91e4775 | 2017-05-12 07:25:21 -0300 | [diff] [blame] | 553 | * and thus doesn't block transaction commit. If the caller uses this reserved |
| 554 | * handle, it has to set h_rsv_handle to NULL as otherwise jbd2_journal_stop() |
| 555 | * on the parent handle will dispose the reserved one. Reserved handle has to |
| 556 | * be converted to a normal handle using jbd2_journal_start_reserved() before |
| 557 | * it can be used. |
| 558 | * |
| 559 | * Return a pointer to a newly allocated handle, or an ERR_PTR() value |
| 560 | * on failure. |
| 561 | */ |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 562 | handle_t *jbd2_journal_start(journal_t *journal, int nblocks) |
| 563 | { |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 564 | return jbd2__journal_start(journal, nblocks, 0, 0, GFP_NOFS, 0, 0); |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 565 | } |
| 566 | EXPORT_SYMBOL(jbd2_journal_start); |
| 567 | |
Jan Kara | 14ff628 | 2020-05-20 15:31:19 +0200 | [diff] [blame] | 568 | static void __jbd2_journal_unreserve_handle(handle_t *handle, transaction_t *t) |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 569 | { |
| 570 | journal_t *journal = handle->h_journal; |
| 571 | |
| 572 | WARN_ON(!handle->h_reserved); |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 573 | sub_reserved_credits(journal, handle->h_total_credits); |
Jan Kara | 14ff628 | 2020-05-20 15:31:19 +0200 | [diff] [blame] | 574 | if (t) |
| 575 | atomic_sub(handle->h_total_credits, &t->t_outstanding_credits); |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 576 | } |
| 577 | |
| 578 | void jbd2_journal_free_reserved(handle_t *handle) |
| 579 | { |
Jan Kara | 14ff628 | 2020-05-20 15:31:19 +0200 | [diff] [blame] | 580 | journal_t *journal = handle->h_journal; |
| 581 | |
| 582 | /* Get j_state_lock to pin running transaction if it exists */ |
| 583 | read_lock(&journal->j_state_lock); |
| 584 | __jbd2_journal_unreserve_handle(handle, journal->j_running_transaction); |
| 585 | read_unlock(&journal->j_state_lock); |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 586 | jbd2_free_handle(handle); |
| 587 | } |
| 588 | EXPORT_SYMBOL(jbd2_journal_free_reserved); |
| 589 | |
| 590 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 591 | * jbd2_journal_start_reserved() - start reserved handle |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 592 | * @handle: handle to start |
Tobin C. Harding | f69120c | 2018-01-10 00:27:29 -0500 | [diff] [blame] | 593 | * @type: for handle statistics |
| 594 | * @line_no: for handle statistics |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 595 | * |
| 596 | * Start handle that has been previously reserved with jbd2_journal_reserve(). |
| 597 | * This attaches @handle to the running transaction (or creates one if there's |
| 598 | * not transaction running). Unlike jbd2_journal_start() this function cannot |
| 599 | * block on journal commit, checkpointing, or similar stuff. It can block on |
| 600 | * memory allocation or frozen journal though. |
| 601 | * |
| 602 | * Return 0 on success, non-zero on error - handle is freed in that case. |
| 603 | */ |
| 604 | int jbd2_journal_start_reserved(handle_t *handle, unsigned int type, |
| 605 | unsigned int line_no) |
| 606 | { |
| 607 | journal_t *journal = handle->h_journal; |
| 608 | int ret = -EIO; |
| 609 | |
| 610 | if (WARN_ON(!handle->h_reserved)) { |
| 611 | /* Someone passed in normal handle? Just stop it. */ |
| 612 | jbd2_journal_stop(handle); |
| 613 | return ret; |
| 614 | } |
| 615 | /* |
| 616 | * Usefulness of mixing of reserved and unreserved handles is |
| 617 | * questionable. So far nobody seems to need it so just error out. |
| 618 | */ |
| 619 | if (WARN_ON(current->journal_info)) { |
| 620 | jbd2_journal_free_reserved(handle); |
| 621 | return ret; |
| 622 | } |
| 623 | |
| 624 | handle->h_journal = NULL; |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 625 | /* |
| 626 | * GFP_NOFS is here because callers are likely from writeback or |
| 627 | * similarly constrained call sites |
| 628 | */ |
| 629 | ret = start_this_handle(journal, handle, GFP_NOFS); |
Dan Carpenter | 92e3b40 | 2014-02-17 20:33:01 -0500 | [diff] [blame] | 630 | if (ret < 0) { |
Theodore Ts'o | b256926 | 2018-04-18 11:49:31 -0400 | [diff] [blame] | 631 | handle->h_journal = journal; |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 632 | jbd2_journal_free_reserved(handle); |
Dan Carpenter | 92e3b40 | 2014-02-17 20:33:01 -0500 | [diff] [blame] | 633 | return ret; |
| 634 | } |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 635 | handle->h_type = type; |
| 636 | handle->h_line_no = line_no; |
Xiaoguang Wang | 4c27335 | 2019-08-24 23:10:17 -0400 | [diff] [blame] | 637 | trace_jbd2_handle_start(journal->j_fs_dev->bd_dev, |
| 638 | handle->h_transaction->t_tid, type, |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 639 | line_no, handle->h_total_credits); |
Dan Carpenter | 92e3b40 | 2014-02-17 20:33:01 -0500 | [diff] [blame] | 640 | return 0; |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 641 | } |
| 642 | EXPORT_SYMBOL(jbd2_journal_start_reserved); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 643 | |
| 644 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 645 | * jbd2_journal_extend() - extend buffer credits. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 646 | * @handle: handle to 'extend' |
| 647 | * @nblocks: nr blocks to try to extend by. |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 648 | * @revoke_records: number of revoke records to try to extend by. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 649 | * |
| 650 | * Some transactions, such as large extends and truncates, can be done |
| 651 | * atomically all at once or in several stages. The operation requests |
Masanari Iida | bd7ced9 | 2016-02-02 22:31:06 +0900 | [diff] [blame] | 652 | * a credit for a number of buffer modifications in advance, but can |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 653 | * extend its credit if it needs more. |
| 654 | * |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 655 | * jbd2_journal_extend tries to give the running handle more buffer credits. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 656 | * It does not guarantee that allocation - this is a best-effort only. |
| 657 | * The calling process MUST be able to deal cleanly with a failure to |
| 658 | * extend here. |
| 659 | * |
| 660 | * Return 0 on success, non-zero on failure. |
| 661 | * |
| 662 | * return code < 0 implies an error |
| 663 | * return code > 0 implies normal transaction-full status. |
| 664 | */ |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 665 | int jbd2_journal_extend(handle_t *handle, int nblocks, int revoke_records) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 666 | { |
| 667 | transaction_t *transaction = handle->h_transaction; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 668 | journal_t *journal; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 669 | int result; |
| 670 | int wanted; |
| 671 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 672 | if (is_handle_aborted(handle)) |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 673 | return -EROFS; |
| 674 | journal = transaction->t_journal; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 675 | |
| 676 | result = 1; |
| 677 | |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 678 | read_lock(&journal->j_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 679 | |
| 680 | /* Don't extend a locked-down transaction! */ |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 681 | if (transaction->t_state != T_RUNNING) { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 682 | jbd_debug(3, "denied handle %p %d blocks: " |
| 683 | "transaction not running\n", handle, nblocks); |
| 684 | goto error_out; |
| 685 | } |
| 686 | |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 687 | nblocks += DIV_ROUND_UP( |
| 688 | handle->h_revoke_credits_requested + revoke_records, |
| 689 | journal->j_revoke_records_per_block) - |
| 690 | DIV_ROUND_UP( |
| 691 | handle->h_revoke_credits_requested, |
| 692 | journal->j_revoke_records_per_block); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 693 | spin_lock(&transaction->t_handle_lock); |
Jan Kara | fe1e8db5 | 2013-06-04 12:22:15 -0400 | [diff] [blame] | 694 | wanted = atomic_add_return(nblocks, |
| 695 | &transaction->t_outstanding_credits); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 696 | |
| 697 | if (wanted > journal->j_max_transaction_buffers) { |
| 698 | jbd_debug(3, "denied handle %p %d blocks: " |
| 699 | "transaction too large\n", handle, nblocks); |
Jan Kara | fe1e8db5 | 2013-06-04 12:22:15 -0400 | [diff] [blame] | 700 | atomic_sub(nblocks, &transaction->t_outstanding_credits); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 701 | goto unlock; |
| 702 | } |
| 703 | |
Theodore Ts'o | 343d9c2 | 2013-02-08 13:00:22 -0500 | [diff] [blame] | 704 | trace_jbd2_handle_extend(journal->j_fs_dev->bd_dev, |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 705 | transaction->t_tid, |
Theodore Ts'o | 343d9c2 | 2013-02-08 13:00:22 -0500 | [diff] [blame] | 706 | handle->h_type, handle->h_line_no, |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 707 | handle->h_total_credits, |
Theodore Ts'o | 343d9c2 | 2013-02-08 13:00:22 -0500 | [diff] [blame] | 708 | nblocks); |
| 709 | |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 710 | handle->h_total_credits += nblocks; |
Theodore Ts'o | 343d9c2 | 2013-02-08 13:00:22 -0500 | [diff] [blame] | 711 | handle->h_requested_credits += nblocks; |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 712 | handle->h_revoke_credits += revoke_records; |
| 713 | handle->h_revoke_credits_requested += revoke_records; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 714 | result = 0; |
| 715 | |
| 716 | jbd_debug(3, "extended handle %p by %d\n", handle, nblocks); |
| 717 | unlock: |
| 718 | spin_unlock(&transaction->t_handle_lock); |
| 719 | error_out: |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 720 | read_unlock(&journal->j_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 721 | return result; |
| 722 | } |
| 723 | |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 724 | static void stop_this_handle(handle_t *handle) |
| 725 | { |
| 726 | transaction_t *transaction = handle->h_transaction; |
| 727 | journal_t *journal = transaction->t_journal; |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 728 | int revokes; |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 729 | |
| 730 | J_ASSERT(journal_current_handle() == handle); |
| 731 | J_ASSERT(atomic_read(&transaction->t_updates) > 0); |
| 732 | current->journal_info = NULL; |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 733 | /* |
| 734 | * Subtract necessary revoke descriptor blocks from handle credits. We |
| 735 | * take care to account only for revoke descriptor blocks the |
| 736 | * transaction will really need as large sequences of transactions with |
| 737 | * small numbers of revokes are relatively common. |
| 738 | */ |
| 739 | revokes = handle->h_revoke_credits_requested - handle->h_revoke_credits; |
| 740 | if (revokes) { |
| 741 | int t_revokes, revoke_descriptors; |
| 742 | int rr_per_blk = journal->j_revoke_records_per_block; |
| 743 | |
| 744 | WARN_ON_ONCE(DIV_ROUND_UP(revokes, rr_per_blk) |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 745 | > handle->h_total_credits); |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 746 | t_revokes = atomic_add_return(revokes, |
| 747 | &transaction->t_outstanding_revokes); |
| 748 | revoke_descriptors = |
| 749 | DIV_ROUND_UP(t_revokes, rr_per_blk) - |
| 750 | DIV_ROUND_UP(t_revokes - revokes, rr_per_blk); |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 751 | handle->h_total_credits -= revoke_descriptors; |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 752 | } |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 753 | atomic_sub(handle->h_total_credits, |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 754 | &transaction->t_outstanding_credits); |
| 755 | if (handle->h_rsv_handle) |
Jan Kara | 14ff628 | 2020-05-20 15:31:19 +0200 | [diff] [blame] | 756 | __jbd2_journal_unreserve_handle(handle->h_rsv_handle, |
| 757 | transaction); |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 758 | if (atomic_dec_and_test(&transaction->t_updates)) |
| 759 | wake_up(&journal->j_wait_updates); |
| 760 | |
Linus Torvalds | 50b8b3f | 2019-11-30 10:53:02 -0800 | [diff] [blame] | 761 | rwsem_release(&journal->j_trans_commit_map, _THIS_IP_); |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 762 | /* |
| 763 | * Scope of the GFP_NOFS context is over here and so we can restore the |
| 764 | * original alloc context. |
| 765 | */ |
| 766 | memalloc_nofs_restore(handle->saved_alloc_context); |
| 767 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 768 | |
| 769 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 770 | * jbd2__journal_restart() - restart a handle . |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 771 | * @handle: handle to restart |
| 772 | * @nblocks: nr credits requested |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 773 | * @revoke_records: number of revoke record credits requested |
Tobin C. Harding | f69120c | 2018-01-10 00:27:29 -0500 | [diff] [blame] | 774 | * @gfp_mask: memory allocation flags (for start_this_handle) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 775 | * |
| 776 | * Restart a handle for a multi-transaction filesystem |
| 777 | * operation. |
| 778 | * |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 779 | * If the jbd2_journal_extend() call above fails to grant new buffer credits |
| 780 | * to a running handle, a call to jbd2_journal_restart will commit the |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 781 | * handle's transaction so far and reattach the handle to a new |
Masanari Iida | bd7ced9 | 2016-02-02 22:31:06 +0900 | [diff] [blame] | 782 | * transaction capable of guaranteeing the requested number of |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 783 | * credits. We preserve reserved handle if there's any attached to the |
| 784 | * passed in handle. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 785 | */ |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 786 | int jbd2__journal_restart(handle_t *handle, int nblocks, int revoke_records, |
| 787 | gfp_t gfp_mask) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 788 | { |
| 789 | transaction_t *transaction = handle->h_transaction; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 790 | journal_t *journal; |
Theodore Ts'o | e447183 | 2011-02-12 08:18:24 -0500 | [diff] [blame] | 791 | tid_t tid; |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 792 | int need_to_start; |
Jan Kara | 0094f98 | 2019-11-05 17:44:30 +0100 | [diff] [blame] | 793 | int ret; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 794 | |
| 795 | /* If we've had an abort of any type, don't even think about |
| 796 | * actually doing the restart! */ |
| 797 | if (is_handle_aborted(handle)) |
| 798 | return 0; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 799 | journal = transaction->t_journal; |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 800 | tid = transaction->t_tid; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 801 | |
| 802 | /* |
| 803 | * First unlink the handle from its current transaction, and start the |
| 804 | * commit on that. |
| 805 | */ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 806 | jbd_debug(2, "restarting handle %p\n", handle); |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 807 | stop_this_handle(handle); |
| 808 | handle->h_transaction = NULL; |
| 809 | |
| 810 | /* |
| 811 | * TODO: If we use READ_ONCE / WRITE_ONCE for j_commit_request we can |
| 812 | * get rid of pointless j_state_lock traffic like this. |
| 813 | */ |
| 814 | read_lock(&journal->j_state_lock); |
Theodore Ts'o | e447183 | 2011-02-12 08:18:24 -0500 | [diff] [blame] | 815 | need_to_start = !tid_geq(journal->j_commit_request, tid); |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 816 | read_unlock(&journal->j_state_lock); |
Theodore Ts'o | e447183 | 2011-02-12 08:18:24 -0500 | [diff] [blame] | 817 | if (need_to_start) |
| 818 | jbd2_log_start_commit(journal, tid); |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 819 | handle->h_total_credits = nblocks + |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 820 | DIV_ROUND_UP(revoke_records, |
| 821 | journal->j_revoke_records_per_block); |
| 822 | handle->h_revoke_credits = revoke_records; |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 823 | ret = start_this_handle(journal, handle, gfp_mask); |
Jan Kara | 0094f98 | 2019-11-05 17:44:30 +0100 | [diff] [blame] | 824 | trace_jbd2_handle_restart(journal->j_fs_dev->bd_dev, |
| 825 | ret ? 0 : handle->h_transaction->t_tid, |
| 826 | handle->h_type, handle->h_line_no, |
| 827 | handle->h_total_credits); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 828 | return ret; |
| 829 | } |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 830 | EXPORT_SYMBOL(jbd2__journal_restart); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 831 | |
| 832 | |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 833 | int jbd2_journal_restart(handle_t *handle, int nblocks) |
| 834 | { |
Jan Kara | fdc3ef8 | 2019-11-05 17:44:26 +0100 | [diff] [blame] | 835 | return jbd2__journal_restart(handle, nblocks, 0, GFP_NOFS); |
Theodore Ts'o | 47def82 | 2010-07-27 11:56:05 -0400 | [diff] [blame] | 836 | } |
| 837 | EXPORT_SYMBOL(jbd2_journal_restart); |
| 838 | |
Ritesh Harjani | 4f98186 | 2022-01-17 17:41:51 +0530 | [diff] [blame] | 839 | /* |
| 840 | * Waits for any outstanding t_updates to finish. |
| 841 | * This is called with write j_state_lock held. |
| 842 | */ |
| 843 | void jbd2_journal_wait_updates(journal_t *journal) |
| 844 | { |
| 845 | transaction_t *commit_transaction = journal->j_running_transaction; |
| 846 | |
| 847 | if (!commit_transaction) |
| 848 | return; |
| 849 | |
| 850 | spin_lock(&commit_transaction->t_handle_lock); |
| 851 | while (atomic_read(&commit_transaction->t_updates)) { |
| 852 | DEFINE_WAIT(wait); |
| 853 | |
| 854 | prepare_to_wait(&journal->j_wait_updates, &wait, |
| 855 | TASK_UNINTERRUPTIBLE); |
| 856 | if (atomic_read(&commit_transaction->t_updates)) { |
| 857 | spin_unlock(&commit_transaction->t_handle_lock); |
| 858 | write_unlock(&journal->j_state_lock); |
| 859 | schedule(); |
| 860 | write_lock(&journal->j_state_lock); |
| 861 | spin_lock(&commit_transaction->t_handle_lock); |
| 862 | } |
| 863 | finish_wait(&journal->j_wait_updates, &wait); |
| 864 | } |
| 865 | spin_unlock(&commit_transaction->t_handle_lock); |
| 866 | } |
| 867 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 868 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 869 | * jbd2_journal_lock_updates () - establish a transaction barrier. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 870 | * @journal: Journal to establish a barrier on. |
| 871 | * |
| 872 | * This locks out any further updates from being started, and blocks |
| 873 | * until all existing updates have completed, returning only once the |
| 874 | * journal is in a quiescent state with no updates running. |
| 875 | * |
| 876 | * The journal lock should not be held on entry. |
| 877 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 878 | void jbd2_journal_lock_updates(journal_t *journal) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 879 | { |
| 880 | DEFINE_WAIT(wait); |
| 881 | |
Jan Kara | 1eaa566 | 2016-06-30 11:40:54 -0400 | [diff] [blame] | 882 | jbd2_might_wait_for_commit(journal); |
| 883 | |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 884 | write_lock(&journal->j_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 885 | ++journal->j_barrier_count; |
| 886 | |
Jan Kara | 8f7d89f | 2013-06-04 12:35:11 -0400 | [diff] [blame] | 887 | /* Wait until there are no reserved handles */ |
| 888 | if (atomic_read(&journal->j_reserved_credits)) { |
| 889 | write_unlock(&journal->j_state_lock); |
| 890 | wait_event(journal->j_wait_reserved, |
| 891 | atomic_read(&journal->j_reserved_credits) == 0); |
| 892 | write_lock(&journal->j_state_lock); |
| 893 | } |
| 894 | |
Ritesh Harjani | 4f98186 | 2022-01-17 17:41:51 +0530 | [diff] [blame] | 895 | /* Wait until there are no running t_updates */ |
| 896 | jbd2_journal_wait_updates(journal); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 897 | |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 898 | write_unlock(&journal->j_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 899 | |
| 900 | /* |
| 901 | * We have now established a barrier against other normal updates, but |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 902 | * we also need to barrier against other jbd2_journal_lock_updates() calls |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 903 | * to make sure that we serialise special journal-locked operations |
| 904 | * too. |
| 905 | */ |
| 906 | mutex_lock(&journal->j_barrier); |
| 907 | } |
| 908 | |
| 909 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 910 | * jbd2_journal_unlock_updates () - release barrier |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 911 | * @journal: Journal to release the barrier on. |
| 912 | * |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 913 | * Release a transaction barrier obtained with jbd2_journal_lock_updates(). |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 914 | * |
| 915 | * Should be called without the journal lock held. |
| 916 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 917 | void jbd2_journal_unlock_updates (journal_t *journal) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 918 | { |
| 919 | J_ASSERT(journal->j_barrier_count != 0); |
| 920 | |
| 921 | mutex_unlock(&journal->j_barrier); |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 922 | write_lock(&journal->j_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 923 | --journal->j_barrier_count; |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 924 | write_unlock(&journal->j_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 925 | wake_up(&journal->j_wait_transaction_locked); |
| 926 | } |
| 927 | |
Jan Kara | f91d1d0 | 2009-07-13 16:16:20 -0400 | [diff] [blame] | 928 | static void warn_dirty_buffer(struct buffer_head *bh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 929 | { |
Jan Kara | f91d1d0 | 2009-07-13 16:16:20 -0400 | [diff] [blame] | 930 | printk(KERN_WARNING |
Dmitry Monakhov | a1c6f057 | 2015-04-13 16:31:37 +0400 | [diff] [blame] | 931 | "JBD2: Spotted dirty metadata buffer (dev = %pg, blocknr = %llu). " |
Jan Kara | f91d1d0 | 2009-07-13 16:16:20 -0400 | [diff] [blame] | 932 | "There's a risk of filesystem corruption in case of system " |
| 933 | "crash.\n", |
Dmitry Monakhov | a1c6f057 | 2015-04-13 16:31:37 +0400 | [diff] [blame] | 934 | bh->b_bdev, (unsigned long long)bh->b_blocknr); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 935 | } |
| 936 | |
Jan Kara | ee57aba | 2015-06-08 12:39:07 -0400 | [diff] [blame] | 937 | /* Call t_frozen trigger and copy buffer data into jh->b_frozen_data. */ |
| 938 | static void jbd2_freeze_jh_data(struct journal_head *jh) |
| 939 | { |
| 940 | struct page *page; |
| 941 | int offset; |
| 942 | char *source; |
| 943 | struct buffer_head *bh = jh2bh(jh); |
| 944 | |
| 945 | J_EXPECT_JH(jh, buffer_uptodate(bh), "Possible IO failure.\n"); |
| 946 | page = bh->b_page; |
| 947 | offset = offset_in_page(bh->b_data); |
| 948 | source = kmap_atomic(page); |
| 949 | /* Fire data frozen trigger just before we copy the data */ |
| 950 | jbd2_buffer_frozen_trigger(jh, source + offset, jh->b_triggers); |
| 951 | memcpy(jh->b_frozen_data, source + offset, bh->b_size); |
| 952 | kunmap_atomic(source); |
| 953 | |
| 954 | /* |
| 955 | * Now that the frozen data is saved off, we need to store any matching |
| 956 | * triggers. |
| 957 | */ |
| 958 | jh->b_frozen_triggers = jh->b_triggers; |
| 959 | } |
| 960 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 961 | /* |
| 962 | * If the buffer is already part of the current transaction, then there |
| 963 | * is nothing we need to do. If it is already part of a prior |
| 964 | * transaction which we are still committing to disk, then we need to |
| 965 | * make sure that we do not overwrite the old copy: we do copy-out to |
| 966 | * preserve the copy going to disk. We also account the buffer against |
| 967 | * the handle's metadata buffer credits (unless the buffer is already |
| 968 | * part of the transaction, that is). |
| 969 | * |
| 970 | */ |
| 971 | static int |
| 972 | do_get_write_access(handle_t *handle, struct journal_head *jh, |
| 973 | int force_copy) |
| 974 | { |
| 975 | struct buffer_head *bh; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 976 | transaction_t *transaction = handle->h_transaction; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 977 | journal_t *journal; |
| 978 | int error; |
| 979 | char *frozen_buffer = NULL; |
Theodore Ts'o | f783f09 | 2013-04-21 16:47:54 -0400 | [diff] [blame] | 980 | unsigned long start_lock, time_lock; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 981 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 982 | journal = transaction->t_journal; |
| 983 | |
Theodore Ts'o | cfef2c6 | 2010-12-18 13:07:34 -0500 | [diff] [blame] | 984 | jbd_debug(5, "journal_head %p, force_copy %d\n", jh, force_copy); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 985 | |
| 986 | JBUFFER_TRACE(jh, "entry"); |
| 987 | repeat: |
| 988 | bh = jh2bh(jh); |
| 989 | |
| 990 | /* @@@ Need to check for errors here at some point. */ |
| 991 | |
Theodore Ts'o | f783f09 | 2013-04-21 16:47:54 -0400 | [diff] [blame] | 992 | start_lock = jiffies; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 993 | lock_buffer(bh); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 994 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 995 | |
Theodore Ts'o | f783f09 | 2013-04-21 16:47:54 -0400 | [diff] [blame] | 996 | /* If it takes too long to lock the buffer, trace it */ |
| 997 | time_lock = jbd2_time_diff(start_lock, jiffies); |
| 998 | if (time_lock > HZ/10) |
| 999 | trace_jbd2_lock_buffer_stall(bh->b_bdev->bd_dev, |
| 1000 | jiffies_to_msecs(time_lock)); |
| 1001 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1002 | /* We now hold the buffer lock so it is safe to query the buffer |
| 1003 | * state. Is the buffer dirty? |
| 1004 | * |
| 1005 | * If so, there are two possibilities. The buffer may be |
| 1006 | * non-journaled, and undergoing a quite legitimate writeback. |
| 1007 | * Otherwise, it is journaled, and we don't expect dirty buffers |
| 1008 | * in that state (the buffers should be marked JBD_Dirty |
| 1009 | * instead.) So either the IO is being done under our own |
| 1010 | * control and this is a bug, or it's a third party IO such as |
| 1011 | * dump(8) (which may leave the buffer scheduled for read --- |
| 1012 | * ie. locked but not dirty) or tune2fs (which may actually have |
| 1013 | * the buffer dirtied, ugh.) */ |
| 1014 | |
| 1015 | if (buffer_dirty(bh)) { |
| 1016 | /* |
| 1017 | * First question: is this buffer already part of the current |
| 1018 | * transaction or the existing committing transaction? |
| 1019 | */ |
| 1020 | if (jh->b_transaction) { |
| 1021 | J_ASSERT_JH(jh, |
| 1022 | jh->b_transaction == transaction || |
| 1023 | jh->b_transaction == |
| 1024 | journal->j_committing_transaction); |
| 1025 | if (jh->b_next_transaction) |
| 1026 | J_ASSERT_JH(jh, jh->b_next_transaction == |
| 1027 | transaction); |
Jan Kara | f91d1d0 | 2009-07-13 16:16:20 -0400 | [diff] [blame] | 1028 | warn_dirty_buffer(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1029 | } |
| 1030 | /* |
| 1031 | * In any case we need to clean the dirty flag and we must |
| 1032 | * do it under the buffer lock to be sure we don't race |
| 1033 | * with running write-out. |
| 1034 | */ |
Jan Kara | f91d1d0 | 2009-07-13 16:16:20 -0400 | [diff] [blame] | 1035 | JBUFFER_TRACE(jh, "Journalling dirty buffer"); |
| 1036 | clear_buffer_dirty(bh); |
| 1037 | set_buffer_jbddirty(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1038 | } |
| 1039 | |
| 1040 | unlock_buffer(bh); |
| 1041 | |
| 1042 | error = -EROFS; |
| 1043 | if (is_handle_aborted(handle)) { |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1044 | spin_unlock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1045 | goto out; |
| 1046 | } |
| 1047 | error = 0; |
| 1048 | |
| 1049 | /* |
| 1050 | * The buffer is already part of this transaction if b_transaction or |
| 1051 | * b_next_transaction points to it |
| 1052 | */ |
| 1053 | if (jh->b_transaction == transaction || |
| 1054 | jh->b_next_transaction == transaction) |
| 1055 | goto done; |
| 1056 | |
| 1057 | /* |
Josef Bacik | 9fc7c63 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1058 | * this is the first time this transaction is touching this buffer, |
| 1059 | * reset the modified flag |
| 1060 | */ |
Colin Ian King | 561405f | 2018-12-04 00:20:10 -0500 | [diff] [blame] | 1061 | jh->b_modified = 0; |
Josef Bacik | 9fc7c63 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1062 | |
| 1063 | /* |
Jan Kara | 8b00f40 | 2015-06-08 12:44:21 -0400 | [diff] [blame] | 1064 | * If the buffer is not journaled right now, we need to make sure it |
| 1065 | * doesn't get written to disk before the caller actually commits the |
| 1066 | * new data |
| 1067 | */ |
| 1068 | if (!jh->b_transaction) { |
| 1069 | JBUFFER_TRACE(jh, "no transaction"); |
| 1070 | J_ASSERT_JH(jh, !jh->b_next_transaction); |
| 1071 | JBUFFER_TRACE(jh, "file as BJ_Reserved"); |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1072 | /* |
| 1073 | * Make sure all stores to jh (b_modified, b_frozen_data) are |
| 1074 | * visible before attaching it to the running transaction. |
| 1075 | * Paired with barrier in jbd2_write_access_granted() |
| 1076 | */ |
| 1077 | smp_wmb(); |
Jan Kara | 8b00f40 | 2015-06-08 12:44:21 -0400 | [diff] [blame] | 1078 | spin_lock(&journal->j_list_lock); |
| 1079 | __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved); |
| 1080 | spin_unlock(&journal->j_list_lock); |
| 1081 | goto done; |
| 1082 | } |
| 1083 | /* |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1084 | * If there is already a copy-out version of this buffer, then we don't |
| 1085 | * need to make another one |
| 1086 | */ |
| 1087 | if (jh->b_frozen_data) { |
| 1088 | JBUFFER_TRACE(jh, "has frozen data"); |
| 1089 | J_ASSERT_JH(jh, jh->b_next_transaction == NULL); |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1090 | goto attach_next; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1091 | } |
| 1092 | |
Jan Kara | 8b00f40 | 2015-06-08 12:44:21 -0400 | [diff] [blame] | 1093 | JBUFFER_TRACE(jh, "owned by older transaction"); |
| 1094 | J_ASSERT_JH(jh, jh->b_next_transaction == NULL); |
| 1095 | J_ASSERT_JH(jh, jh->b_transaction == journal->j_committing_transaction); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1096 | |
| 1097 | /* |
Jan Kara | 8b00f40 | 2015-06-08 12:44:21 -0400 | [diff] [blame] | 1098 | * There is one case we have to be very careful about. If the |
| 1099 | * committing transaction is currently writing this buffer out to disk |
| 1100 | * and has NOT made a copy-out, then we cannot modify the buffer |
| 1101 | * contents at all right now. The essence of copy-out is that it is |
| 1102 | * the extra copy, not the primary copy, which gets journaled. If the |
| 1103 | * primary copy is already going to disk then we cannot do copy-out |
| 1104 | * here. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1105 | */ |
Jan Kara | 8b00f40 | 2015-06-08 12:44:21 -0400 | [diff] [blame] | 1106 | if (buffer_shadow(bh)) { |
| 1107 | JBUFFER_TRACE(jh, "on shadow: sleep"); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1108 | spin_unlock(&jh->b_state_lock); |
Jan Kara | 8b00f40 | 2015-06-08 12:44:21 -0400 | [diff] [blame] | 1109 | wait_on_bit_io(&bh->b_state, BH_Shadow, TASK_UNINTERRUPTIBLE); |
| 1110 | goto repeat; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1111 | } |
| 1112 | |
Jan Kara | 8b00f40 | 2015-06-08 12:44:21 -0400 | [diff] [blame] | 1113 | /* |
| 1114 | * Only do the copy if the currently-owning transaction still needs it. |
| 1115 | * If buffer isn't on BJ_Metadata list, the committing transaction is |
| 1116 | * past that stage (here we use the fact that BH_Shadow is set under |
| 1117 | * bh_state lock together with refiling to BJ_Shadow list and at this |
| 1118 | * point we know the buffer doesn't have BH_Shadow set). |
| 1119 | * |
| 1120 | * Subtle point, though: if this is a get_undo_access, then we will be |
| 1121 | * relying on the frozen_data to contain the new value of the |
| 1122 | * committed_data record after the transaction, so we HAVE to force the |
| 1123 | * frozen_data copy in that case. |
| 1124 | */ |
| 1125 | if (jh->b_jlist == BJ_Metadata || force_copy) { |
| 1126 | JBUFFER_TRACE(jh, "generate frozen data"); |
| 1127 | if (!frozen_buffer) { |
| 1128 | JBUFFER_TRACE(jh, "allocate memory for buffer"); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1129 | spin_unlock(&jh->b_state_lock); |
Michal Hocko | 490c1b4 | 2016-03-13 17:38:20 -0400 | [diff] [blame] | 1130 | frozen_buffer = jbd2_alloc(jh2bh(jh)->b_size, |
| 1131 | GFP_NOFS | __GFP_NOFAIL); |
Jan Kara | 8b00f40 | 2015-06-08 12:44:21 -0400 | [diff] [blame] | 1132 | goto repeat; |
| 1133 | } |
| 1134 | jh->b_frozen_data = frozen_buffer; |
| 1135 | frozen_buffer = NULL; |
| 1136 | jbd2_freeze_jh_data(jh); |
| 1137 | } |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1138 | attach_next: |
| 1139 | /* |
| 1140 | * Make sure all stores to jh (b_modified, b_frozen_data) are visible |
| 1141 | * before attaching it to the running transaction. Paired with barrier |
| 1142 | * in jbd2_write_access_granted() |
| 1143 | */ |
| 1144 | smp_wmb(); |
Jan Kara | 8b00f40 | 2015-06-08 12:44:21 -0400 | [diff] [blame] | 1145 | jh->b_next_transaction = transaction; |
| 1146 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1147 | done: |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1148 | spin_unlock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1149 | |
| 1150 | /* |
| 1151 | * If we are about to journal a buffer, then any revoke pending on it is |
| 1152 | * no longer valid |
| 1153 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1154 | jbd2_journal_cancel_revoke(handle, jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1155 | |
| 1156 | out: |
| 1157 | if (unlikely(frozen_buffer)) /* It's usually NULL */ |
Mingming Cao | af1e76d | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 1158 | jbd2_free(frozen_buffer, bh->b_size); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1159 | |
| 1160 | JBUFFER_TRACE(jh, "exit"); |
| 1161 | return error; |
| 1162 | } |
| 1163 | |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1164 | /* Fast check whether buffer is already attached to the required transaction */ |
Junxiao Bi | 087ffd4 | 2015-12-04 12:29:28 -0500 | [diff] [blame] | 1165 | static bool jbd2_write_access_granted(handle_t *handle, struct buffer_head *bh, |
| 1166 | bool undo) |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1167 | { |
| 1168 | struct journal_head *jh; |
| 1169 | bool ret = false; |
| 1170 | |
| 1171 | /* Dirty buffers require special handling... */ |
| 1172 | if (buffer_dirty(bh)) |
| 1173 | return false; |
| 1174 | |
| 1175 | /* |
| 1176 | * RCU protects us from dereferencing freed pages. So the checks we do |
| 1177 | * are guaranteed not to oops. However the jh slab object can get freed |
| 1178 | * & reallocated while we work with it. So we have to be careful. When |
| 1179 | * we see jh attached to the running transaction, we know it must stay |
| 1180 | * so until the transaction is committed. Thus jh won't be freed and |
| 1181 | * will be attached to the same bh while we run. However it can |
| 1182 | * happen jh gets freed, reallocated, and attached to the transaction |
| 1183 | * just after we get pointer to it from bh. So we have to be careful |
| 1184 | * and recheck jh still belongs to our bh before we return success. |
| 1185 | */ |
| 1186 | rcu_read_lock(); |
| 1187 | if (!buffer_jbd(bh)) |
| 1188 | goto out; |
| 1189 | /* This should be bh2jh() but that doesn't work with inline functions */ |
| 1190 | jh = READ_ONCE(bh->b_private); |
| 1191 | if (!jh) |
| 1192 | goto out; |
Junxiao Bi | 087ffd4 | 2015-12-04 12:29:28 -0500 | [diff] [blame] | 1193 | /* For undo access buffer must have data copied */ |
| 1194 | if (undo && !jh->b_committed_data) |
| 1195 | goto out; |
Qian Cai | 6c5d911 | 2020-02-21 23:31:11 -0500 | [diff] [blame] | 1196 | if (READ_ONCE(jh->b_transaction) != handle->h_transaction && |
| 1197 | READ_ONCE(jh->b_next_transaction) != handle->h_transaction) |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1198 | goto out; |
| 1199 | /* |
| 1200 | * There are two reasons for the barrier here: |
| 1201 | * 1) Make sure to fetch b_bh after we did previous checks so that we |
| 1202 | * detect when jh went through free, realloc, attach to transaction |
| 1203 | * while we were checking. Paired with implicit barrier in that path. |
| 1204 | * 2) So that access to bh done after jbd2_write_access_granted() |
| 1205 | * doesn't get reordered and see inconsistent state of concurrent |
| 1206 | * do_get_write_access(). |
| 1207 | */ |
| 1208 | smp_mb(); |
| 1209 | if (unlikely(jh->b_bh != bh)) |
| 1210 | goto out; |
| 1211 | ret = true; |
| 1212 | out: |
| 1213 | rcu_read_unlock(); |
| 1214 | return ret; |
| 1215 | } |
| 1216 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1217 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 1218 | * jbd2_journal_get_write_access() - notify intent to modify a buffer |
| 1219 | * for metadata (not data) update. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1220 | * @handle: transaction to add buffer modifications to |
| 1221 | * @bh: bh to be used for metadata writes |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1222 | * |
Mauro Carvalho Chehab | df1b560 | 2017-05-12 07:58:23 -0300 | [diff] [blame] | 1223 | * Returns: error code or 0 on success. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1224 | * |
| 1225 | * In full data journalling mode the buffer may be of type BJ_AsyncData, |
Mauro Carvalho Chehab | df1b560 | 2017-05-12 07:58:23 -0300 | [diff] [blame] | 1226 | * because we're ``write()ing`` a buffer which is also part of a shared mapping. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1227 | */ |
| 1228 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1229 | int jbd2_journal_get_write_access(handle_t *handle, struct buffer_head *bh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1230 | { |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1231 | struct journal_head *jh; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1232 | int rc; |
| 1233 | |
wangyan | 8eedabf | 2020-02-20 21:46:14 +0800 | [diff] [blame] | 1234 | if (is_handle_aborted(handle)) |
| 1235 | return -EROFS; |
| 1236 | |
Junxiao Bi | 087ffd4 | 2015-12-04 12:29:28 -0500 | [diff] [blame] | 1237 | if (jbd2_write_access_granted(handle, bh, false)) |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1238 | return 0; |
| 1239 | |
| 1240 | jh = jbd2_journal_add_journal_head(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1241 | /* We do not want to get caught playing with fields which the |
| 1242 | * log thread also manipulates. Make sure that the buffer |
| 1243 | * completes any outstanding IO before proceeding. */ |
| 1244 | rc = do_get_write_access(handle, jh, 0); |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1245 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1246 | return rc; |
| 1247 | } |
| 1248 | |
| 1249 | |
| 1250 | /* |
| 1251 | * When the user wants to journal a newly created buffer_head |
| 1252 | * (ie. getblk() returned a new buffer and we are going to populate it |
| 1253 | * manually rather than reading off disk), then we need to keep the |
| 1254 | * buffer_head locked until it has been completely filled with new |
| 1255 | * data. In this case, we should be able to make the assertion that |
| 1256 | * the bh is not already part of an existing transaction. |
| 1257 | * |
| 1258 | * The buffer should already be locked by the caller by this point. |
| 1259 | * There is no lock ranking violation: it was a newly created, |
| 1260 | * unlocked buffer beforehand. */ |
| 1261 | |
| 1262 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 1263 | * jbd2_journal_get_create_access () - notify intent to use newly created bh |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1264 | * @handle: transaction to new buffer to |
| 1265 | * @bh: new buffer. |
| 1266 | * |
| 1267 | * Call this if you create a new bh. |
| 1268 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1269 | int jbd2_journal_get_create_access(handle_t *handle, struct buffer_head *bh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1270 | { |
| 1271 | transaction_t *transaction = handle->h_transaction; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1272 | journal_t *journal; |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1273 | struct journal_head *jh = jbd2_journal_add_journal_head(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1274 | int err; |
| 1275 | |
| 1276 | jbd_debug(5, "journal_head %p\n", jh); |
| 1277 | err = -EROFS; |
| 1278 | if (is_handle_aborted(handle)) |
| 1279 | goto out; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1280 | journal = transaction->t_journal; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1281 | err = 0; |
| 1282 | |
| 1283 | JBUFFER_TRACE(jh, "entry"); |
| 1284 | /* |
| 1285 | * The buffer may already belong to this transaction due to pre-zeroing |
| 1286 | * in the filesystem's new_block code. It may also be on the previous, |
| 1287 | * committing transaction's lists, but it HAS to be in Forget state in |
| 1288 | * that case: the transaction must have deleted the buffer for it to be |
| 1289 | * reused here. |
| 1290 | */ |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1291 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1292 | J_ASSERT_JH(jh, (jh->b_transaction == transaction || |
| 1293 | jh->b_transaction == NULL || |
| 1294 | (jh->b_transaction == journal->j_committing_transaction && |
| 1295 | jh->b_jlist == BJ_Forget))); |
| 1296 | |
| 1297 | J_ASSERT_JH(jh, jh->b_next_transaction == NULL); |
| 1298 | J_ASSERT_JH(jh, buffer_locked(jh2bh(jh))); |
| 1299 | |
| 1300 | if (jh->b_transaction == NULL) { |
Jan Kara | f91d1d0 | 2009-07-13 16:16:20 -0400 | [diff] [blame] | 1301 | /* |
| 1302 | * Previous jbd2_journal_forget() could have left the buffer |
| 1303 | * with jbddirty bit set because it was being committed. When |
| 1304 | * the commit finished, we've filed the buffer for |
| 1305 | * checkpointing and marked it dirty. Now we are reallocating |
| 1306 | * the buffer so the transaction freeing it must have |
| 1307 | * committed and so it's safe to clear the dirty bit. |
| 1308 | */ |
| 1309 | clear_buffer_dirty(jh2bh(jh)); |
Josef Bacik | 9fc7c63 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1310 | /* first access by this transaction */ |
| 1311 | jh->b_modified = 0; |
| 1312 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1313 | JBUFFER_TRACE(jh, "file as BJ_Reserved"); |
Theodore Ts'o | 6e4862a | 2014-03-09 00:46:23 -0500 | [diff] [blame] | 1314 | spin_lock(&journal->j_list_lock); |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1315 | __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved); |
Taesoo Kim | 559cce6 | 2016-10-12 23:19:18 -0400 | [diff] [blame] | 1316 | spin_unlock(&journal->j_list_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1317 | } else if (jh->b_transaction == journal->j_committing_transaction) { |
Josef Bacik | 9fc7c63 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1318 | /* first access by this transaction */ |
| 1319 | jh->b_modified = 0; |
| 1320 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1321 | JBUFFER_TRACE(jh, "set next transaction"); |
Theodore Ts'o | 6e4862a | 2014-03-09 00:46:23 -0500 | [diff] [blame] | 1322 | spin_lock(&journal->j_list_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1323 | jh->b_next_transaction = transaction; |
Taesoo Kim | 559cce6 | 2016-10-12 23:19:18 -0400 | [diff] [blame] | 1324 | spin_unlock(&journal->j_list_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1325 | } |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1326 | spin_unlock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1327 | |
| 1328 | /* |
| 1329 | * akpm: I added this. ext3_alloc_branch can pick up new indirect |
| 1330 | * blocks which contain freed but then revoked metadata. We need |
| 1331 | * to cancel the revoke in case we end up freeing it yet again |
| 1332 | * and the reallocating as data - this would cause a second revoke, |
| 1333 | * which hits an assertion error. |
| 1334 | */ |
| 1335 | JBUFFER_TRACE(jh, "cancelling revoke"); |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1336 | jbd2_journal_cancel_revoke(handle, jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1337 | out: |
Ding Dinghua | 3991b40 | 2011-05-25 17:43:48 -0400 | [diff] [blame] | 1338 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1339 | return err; |
| 1340 | } |
| 1341 | |
| 1342 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 1343 | * jbd2_journal_get_undo_access() - Notify intent to modify metadata with |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1344 | * non-rewindable consequences |
| 1345 | * @handle: transaction |
| 1346 | * @bh: buffer to undo |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1347 | * |
| 1348 | * Sometimes there is a need to distinguish between metadata which has |
| 1349 | * been committed to disk and that which has not. The ext3fs code uses |
| 1350 | * this for freeing and allocating space, we have to make sure that we |
| 1351 | * do not reuse freed space until the deallocation has been committed, |
| 1352 | * since if we overwrote that space we would make the delete |
| 1353 | * un-rewindable in case of a crash. |
| 1354 | * |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1355 | * To deal with that, jbd2_journal_get_undo_access requests write access to a |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1356 | * buffer for parts of non-rewindable operations such as delete |
| 1357 | * operations on the bitmaps. The journaling code must keep a copy of |
| 1358 | * the buffer's contents prior to the undo_access call until such time |
| 1359 | * as we know that the buffer has definitely been committed to disk. |
| 1360 | * |
| 1361 | * We never need to know which transaction the committed data is part |
| 1362 | * of, buffers touched here are guaranteed to be dirtied later and so |
| 1363 | * will be committed to a new transaction in due course, at which point |
| 1364 | * we can discard the old committed data pointer. |
| 1365 | * |
| 1366 | * Returns error number or 0 on success. |
| 1367 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1368 | int jbd2_journal_get_undo_access(handle_t *handle, struct buffer_head *bh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1369 | { |
| 1370 | int err; |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1371 | struct journal_head *jh; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1372 | char *committed_data = NULL; |
| 1373 | |
wangyan | 8eedabf | 2020-02-20 21:46:14 +0800 | [diff] [blame] | 1374 | if (is_handle_aborted(handle)) |
| 1375 | return -EROFS; |
| 1376 | |
Junxiao Bi | 087ffd4 | 2015-12-04 12:29:28 -0500 | [diff] [blame] | 1377 | if (jbd2_write_access_granted(handle, bh, true)) |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1378 | return 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1379 | |
Jan Kara | de92c8c | 2015-06-08 12:46:37 -0400 | [diff] [blame] | 1380 | jh = jbd2_journal_add_journal_head(bh); |
zhangyi (F) | 01215d3 | 2019-02-21 11:24:09 -0500 | [diff] [blame] | 1381 | JBUFFER_TRACE(jh, "entry"); |
| 1382 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1383 | /* |
| 1384 | * Do this first --- it can drop the journal lock, so we want to |
| 1385 | * make sure that obtaining the committed_data is done |
| 1386 | * atomically wrt. completion of any outstanding commits. |
| 1387 | */ |
| 1388 | err = do_get_write_access(handle, jh, 1); |
| 1389 | if (err) |
| 1390 | goto out; |
| 1391 | |
| 1392 | repeat: |
Michal Hocko | 490c1b4 | 2016-03-13 17:38:20 -0400 | [diff] [blame] | 1393 | if (!jh->b_committed_data) |
| 1394 | committed_data = jbd2_alloc(jh2bh(jh)->b_size, |
| 1395 | GFP_NOFS|__GFP_NOFAIL); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1396 | |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1397 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1398 | if (!jh->b_committed_data) { |
| 1399 | /* Copy out the current buffer contents into the |
| 1400 | * preserved, committed copy. */ |
| 1401 | JBUFFER_TRACE(jh, "generate b_committed data"); |
| 1402 | if (!committed_data) { |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1403 | spin_unlock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1404 | goto repeat; |
| 1405 | } |
| 1406 | |
| 1407 | jh->b_committed_data = committed_data; |
| 1408 | committed_data = NULL; |
| 1409 | memcpy(jh->b_committed_data, bh->b_data, bh->b_size); |
| 1410 | } |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1411 | spin_unlock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1412 | out: |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1413 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1414 | if (unlikely(committed_data)) |
Mingming Cao | af1e76d | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 1415 | jbd2_free(committed_data, bh->b_size); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1416 | return err; |
| 1417 | } |
| 1418 | |
| 1419 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 1420 | * jbd2_journal_set_triggers() - Add triggers for commit writeout |
Joel Becker | e06c822 | 2008-09-11 15:35:47 -0700 | [diff] [blame] | 1421 | * @bh: buffer to trigger on |
| 1422 | * @type: struct jbd2_buffer_trigger_type containing the trigger(s). |
| 1423 | * |
| 1424 | * Set any triggers on this journal_head. This is always safe, because |
| 1425 | * triggers for a committing buffer will be saved off, and triggers for |
| 1426 | * a running transaction will match the buffer in that transaction. |
| 1427 | * |
| 1428 | * Call with NULL to clear the triggers. |
| 1429 | */ |
| 1430 | void jbd2_journal_set_triggers(struct buffer_head *bh, |
| 1431 | struct jbd2_buffer_trigger_type *type) |
| 1432 | { |
Jan Kara | ad56eda | 2013-03-11 13:24:56 -0400 | [diff] [blame] | 1433 | struct journal_head *jh = jbd2_journal_grab_journal_head(bh); |
Joel Becker | e06c822 | 2008-09-11 15:35:47 -0700 | [diff] [blame] | 1434 | |
Jan Kara | 188c299 | 2021-08-16 11:57:04 +0200 | [diff] [blame] | 1435 | if (WARN_ON_ONCE(!jh)) |
Jan Kara | ad56eda | 2013-03-11 13:24:56 -0400 | [diff] [blame] | 1436 | return; |
Joel Becker | e06c822 | 2008-09-11 15:35:47 -0700 | [diff] [blame] | 1437 | jh->b_triggers = type; |
Jan Kara | ad56eda | 2013-03-11 13:24:56 -0400 | [diff] [blame] | 1438 | jbd2_journal_put_journal_head(jh); |
Joel Becker | e06c822 | 2008-09-11 15:35:47 -0700 | [diff] [blame] | 1439 | } |
| 1440 | |
Jan Kara | 13ceef0 | 2010-07-14 07:56:33 +0200 | [diff] [blame] | 1441 | void jbd2_buffer_frozen_trigger(struct journal_head *jh, void *mapped_data, |
Joel Becker | e06c822 | 2008-09-11 15:35:47 -0700 | [diff] [blame] | 1442 | struct jbd2_buffer_trigger_type *triggers) |
| 1443 | { |
| 1444 | struct buffer_head *bh = jh2bh(jh); |
| 1445 | |
Jan Kara | 13ceef0 | 2010-07-14 07:56:33 +0200 | [diff] [blame] | 1446 | if (!triggers || !triggers->t_frozen) |
Joel Becker | e06c822 | 2008-09-11 15:35:47 -0700 | [diff] [blame] | 1447 | return; |
| 1448 | |
Jan Kara | 13ceef0 | 2010-07-14 07:56:33 +0200 | [diff] [blame] | 1449 | triggers->t_frozen(triggers, bh, mapped_data, bh->b_size); |
Joel Becker | e06c822 | 2008-09-11 15:35:47 -0700 | [diff] [blame] | 1450 | } |
| 1451 | |
| 1452 | void jbd2_buffer_abort_trigger(struct journal_head *jh, |
| 1453 | struct jbd2_buffer_trigger_type *triggers) |
| 1454 | { |
| 1455 | if (!triggers || !triggers->t_abort) |
| 1456 | return; |
| 1457 | |
| 1458 | triggers->t_abort(triggers, jh2bh(jh)); |
| 1459 | } |
| 1460 | |
Joel Becker | e06c822 | 2008-09-11 15:35:47 -0700 | [diff] [blame] | 1461 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 1462 | * jbd2_journal_dirty_metadata() - mark a buffer as containing dirty metadata |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1463 | * @handle: transaction to add buffer to. |
| 1464 | * @bh: buffer to mark |
| 1465 | * |
| 1466 | * mark dirty metadata which needs to be journaled as part of the current |
| 1467 | * transaction. |
| 1468 | * |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1469 | * The buffer must have previously had jbd2_journal_get_write_access() |
| 1470 | * called so that it has a valid journal_head attached to the buffer |
| 1471 | * head. |
| 1472 | * |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1473 | * The buffer is placed on the transaction's metadata list and is marked |
| 1474 | * as belonging to the transaction. |
| 1475 | * |
| 1476 | * Returns error number or 0 on success. |
| 1477 | * |
| 1478 | * Special care needs to be taken if the buffer already belongs to the |
| 1479 | * current committing transaction (in which case we should have frozen |
| 1480 | * data present for that commit). In that case, we don't relink the |
| 1481 | * buffer: that only gets done when the old transaction finally |
| 1482 | * completes its commit. |
| 1483 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1484 | int jbd2_journal_dirty_metadata(handle_t *handle, struct buffer_head *bh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1485 | { |
| 1486 | transaction_t *transaction = handle->h_transaction; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1487 | journal_t *journal; |
Jan Kara | ad56eda | 2013-03-11 13:24:56 -0400 | [diff] [blame] | 1488 | struct journal_head *jh; |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1489 | int ret = 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1490 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1491 | if (is_handle_aborted(handle)) |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1492 | return -EROFS; |
zhangyi (F) | 01215d3 | 2019-02-21 11:24:09 -0500 | [diff] [blame] | 1493 | if (!buffer_jbd(bh)) |
| 1494 | return -EUCLEAN; |
| 1495 | |
Jan Kara | 6e06ae8 | 2015-07-12 18:11:30 -0400 | [diff] [blame] | 1496 | /* |
| 1497 | * We don't grab jh reference here since the buffer must be part |
| 1498 | * of the running transaction. |
| 1499 | */ |
| 1500 | jh = bh2jh(bh); |
zhangyi (F) | 01215d3 | 2019-02-21 11:24:09 -0500 | [diff] [blame] | 1501 | jbd_debug(5, "journal_head %p\n", jh); |
| 1502 | JBUFFER_TRACE(jh, "entry"); |
| 1503 | |
Jan Kara | 6e06ae8 | 2015-07-12 18:11:30 -0400 | [diff] [blame] | 1504 | /* |
| 1505 | * This and the following assertions are unreliable since we may see jh |
| 1506 | * in inconsistent state unless we grab bh_state lock. But this is |
| 1507 | * crucial to catch bugs so let's do a reliable check until the |
| 1508 | * lockless handling is fully proven. |
| 1509 | */ |
Jan Kara | 83fe6b1 | 2021-04-06 18:18:00 +0200 | [diff] [blame] | 1510 | if (data_race(jh->b_transaction != transaction && |
| 1511 | jh->b_next_transaction != transaction)) { |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1512 | spin_lock(&jh->b_state_lock); |
Jan Kara | 6e06ae8 | 2015-07-12 18:11:30 -0400 | [diff] [blame] | 1513 | J_ASSERT_JH(jh, jh->b_transaction == transaction || |
| 1514 | jh->b_next_transaction == transaction); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1515 | spin_unlock(&jh->b_state_lock); |
Jan Kara | 6e06ae8 | 2015-07-12 18:11:30 -0400 | [diff] [blame] | 1516 | } |
| 1517 | if (jh->b_modified == 1) { |
| 1518 | /* If it's in our transaction it must be in BJ_Metadata list. */ |
Jan Kara | 83fe6b1 | 2021-04-06 18:18:00 +0200 | [diff] [blame] | 1519 | if (data_race(jh->b_transaction == transaction && |
| 1520 | jh->b_jlist != BJ_Metadata)) { |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1521 | spin_lock(&jh->b_state_lock); |
Theodore Ts'o | e09463f | 2018-06-16 20:21:45 -0400 | [diff] [blame] | 1522 | if (jh->b_transaction == transaction && |
| 1523 | jh->b_jlist != BJ_Metadata) |
| 1524 | pr_err("JBD2: assertion failure: h_type=%u " |
| 1525 | "h_line_no=%u block_no=%llu jlist=%u\n", |
| 1526 | handle->h_type, handle->h_line_no, |
| 1527 | (unsigned long long) bh->b_blocknr, |
| 1528 | jh->b_jlist); |
Jan Kara | 6e06ae8 | 2015-07-12 18:11:30 -0400 | [diff] [blame] | 1529 | J_ASSERT_JH(jh, jh->b_transaction != transaction || |
| 1530 | jh->b_jlist == BJ_Metadata); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1531 | spin_unlock(&jh->b_state_lock); |
Jan Kara | 6e06ae8 | 2015-07-12 18:11:30 -0400 | [diff] [blame] | 1532 | } |
| 1533 | goto out; |
| 1534 | } |
| 1535 | |
| 1536 | journal = transaction->t_journal; |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1537 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1538 | |
| 1539 | if (jh->b_modified == 0) { |
| 1540 | /* |
| 1541 | * This buffer's got modified and becoming part |
| 1542 | * of the transaction. This needs to be done |
| 1543 | * once a transaction -bzzz |
| 1544 | */ |
Jan Kara | d090707 | 2019-11-05 17:44:28 +0100 | [diff] [blame] | 1545 | if (WARN_ON_ONCE(jbd2_handle_buffer_credits(handle) <= 0)) { |
Theodore Ts'o | f6c07ca | 2013-12-08 21:12:59 -0500 | [diff] [blame] | 1546 | ret = -ENOSPC; |
| 1547 | goto out_unlock_bh; |
| 1548 | } |
Theodore Ts'o | e09463f | 2018-06-16 20:21:45 -0400 | [diff] [blame] | 1549 | jh->b_modified = 1; |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 1550 | handle->h_total_credits--; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1551 | } |
| 1552 | |
| 1553 | /* |
| 1554 | * fastpath, to avoid expensive locking. If this buffer is already |
| 1555 | * on the running transaction's metadata list there is nothing to do. |
| 1556 | * Nobody can take it off again because there is a handle open. |
| 1557 | * I _think_ we're OK here with SMP barriers - a mistaken decision will |
| 1558 | * result in this test being false, so we go in and take the locks. |
| 1559 | */ |
| 1560 | if (jh->b_transaction == transaction && jh->b_jlist == BJ_Metadata) { |
| 1561 | JBUFFER_TRACE(jh, "fastpath"); |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1562 | if (unlikely(jh->b_transaction != |
| 1563 | journal->j_running_transaction)) { |
Dmitry Monakhov | a67c848 | 2013-12-08 21:14:59 -0500 | [diff] [blame] | 1564 | printk(KERN_ERR "JBD2: %s: " |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1565 | "jh->b_transaction (%llu, %p, %u) != " |
Theodore Ts'o | 66a4cb1 | 2014-03-12 16:38:03 -0400 | [diff] [blame] | 1566 | "journal->j_running_transaction (%p, %u)\n", |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1567 | journal->j_devname, |
| 1568 | (unsigned long long) bh->b_blocknr, |
| 1569 | jh->b_transaction, |
| 1570 | jh->b_transaction ? jh->b_transaction->t_tid : 0, |
| 1571 | journal->j_running_transaction, |
| 1572 | journal->j_running_transaction ? |
| 1573 | journal->j_running_transaction->t_tid : 0); |
| 1574 | ret = -EINVAL; |
| 1575 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1576 | goto out_unlock_bh; |
| 1577 | } |
| 1578 | |
| 1579 | set_buffer_jbddirty(bh); |
| 1580 | |
| 1581 | /* |
| 1582 | * Metadata already on the current transaction list doesn't |
| 1583 | * need to be filed. Metadata on another transaction's list must |
| 1584 | * be committing, and will be refiled once the commit completes: |
| 1585 | * leave it alone for now. |
| 1586 | */ |
| 1587 | if (jh->b_transaction != transaction) { |
| 1588 | JBUFFER_TRACE(jh, "already on other transaction"); |
Theodore Ts'o | 66a4cb1 | 2014-03-12 16:38:03 -0400 | [diff] [blame] | 1589 | if (unlikely(((jh->b_transaction != |
| 1590 | journal->j_committing_transaction)) || |
| 1591 | (jh->b_next_transaction != transaction))) { |
| 1592 | printk(KERN_ERR "jbd2_journal_dirty_metadata: %s: " |
| 1593 | "bad jh for block %llu: " |
| 1594 | "transaction (%p, %u), " |
| 1595 | "jh->b_transaction (%p, %u), " |
| 1596 | "jh->b_next_transaction (%p, %u), jlist %u\n", |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1597 | journal->j_devname, |
| 1598 | (unsigned long long) bh->b_blocknr, |
Theodore Ts'o | 66a4cb1 | 2014-03-12 16:38:03 -0400 | [diff] [blame] | 1599 | transaction, transaction->t_tid, |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1600 | jh->b_transaction, |
Theodore Ts'o | 66a4cb1 | 2014-03-12 16:38:03 -0400 | [diff] [blame] | 1601 | jh->b_transaction ? |
| 1602 | jh->b_transaction->t_tid : 0, |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1603 | jh->b_next_transaction, |
| 1604 | jh->b_next_transaction ? |
| 1605 | jh->b_next_transaction->t_tid : 0, |
Theodore Ts'o | 66a4cb1 | 2014-03-12 16:38:03 -0400 | [diff] [blame] | 1606 | jh->b_jlist); |
| 1607 | WARN_ON(1); |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1608 | ret = -EINVAL; |
| 1609 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1610 | /* And this case is illegal: we can't reuse another |
| 1611 | * transaction's data buffer, ever. */ |
| 1612 | goto out_unlock_bh; |
| 1613 | } |
| 1614 | |
| 1615 | /* That test should have eliminated the following case: */ |
Mingming Cao | 4019191 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1616 | J_ASSERT_JH(jh, jh->b_frozen_data == NULL); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1617 | |
| 1618 | JBUFFER_TRACE(jh, "file as BJ_Metadata"); |
| 1619 | spin_lock(&journal->j_list_lock); |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1620 | __jbd2_journal_file_buffer(jh, transaction, BJ_Metadata); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1621 | spin_unlock(&journal->j_list_lock); |
| 1622 | out_unlock_bh: |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1623 | spin_unlock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1624 | out: |
| 1625 | JBUFFER_TRACE(jh, "exit"); |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 1626 | return ret; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1627 | } |
| 1628 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1629 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 1630 | * jbd2_journal_forget() - bforget() for potentially-journaled buffers. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1631 | * @handle: transaction handle |
| 1632 | * @bh: bh to 'forget' |
| 1633 | * |
| 1634 | * We can only do the bforget if there are no commits pending against the |
| 1635 | * buffer. If the buffer is dirty in the current running transaction we |
| 1636 | * can safely unlink it. |
| 1637 | * |
| 1638 | * bh may not be a journalled buffer at all - it may be a non-JBD |
| 1639 | * buffer which came off the hashtable. Check for this. |
| 1640 | * |
| 1641 | * Decrements bh->b_count by one. |
| 1642 | * |
| 1643 | * Allow this call even if the handle has aborted --- it may be part of |
| 1644 | * the caller's cleanup after an abort. |
| 1645 | */ |
Shijie Luo | 8d6ce13 | 2020-01-23 01:43:25 -0500 | [diff] [blame] | 1646 | int jbd2_journal_forget(handle_t *handle, struct buffer_head *bh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1647 | { |
| 1648 | transaction_t *transaction = handle->h_transaction; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1649 | journal_t *journal; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1650 | struct journal_head *jh; |
| 1651 | int drop_reserve = 0; |
| 1652 | int err = 0; |
Josef Bacik | 1dfc322 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1653 | int was_modified = 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1654 | |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1655 | if (is_handle_aborted(handle)) |
| 1656 | return -EROFS; |
| 1657 | journal = transaction->t_journal; |
| 1658 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1659 | BUFFER_TRACE(bh, "entry"); |
| 1660 | |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1661 | jh = jbd2_journal_grab_journal_head(bh); |
| 1662 | if (!jh) { |
| 1663 | __bforget(bh); |
| 1664 | return 0; |
| 1665 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1666 | |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1667 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1668 | |
| 1669 | /* Critical error: attempting to delete a bitmap buffer, maybe? |
| 1670 | * Don't do any jbd operations, and return an error. */ |
| 1671 | if (!J_EXPECT_JH(jh, !jh->b_committed_data, |
| 1672 | "inconsistent data on disk")) { |
| 1673 | err = -EIO; |
Jan Kara | 2e710ff | 2019-08-09 14:42:31 +0200 | [diff] [blame] | 1674 | goto drop; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1675 | } |
| 1676 | |
Adam Buchbinder | 48fc7f7 | 2012-09-19 21:48:00 -0400 | [diff] [blame] | 1677 | /* keep track of whether or not this transaction modified us */ |
Josef Bacik | 1dfc322 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1678 | was_modified = jh->b_modified; |
| 1679 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1680 | /* |
| 1681 | * The buffer's going from the transaction, we must drop |
| 1682 | * all references -bzzz |
| 1683 | */ |
| 1684 | jh->b_modified = 0; |
| 1685 | |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1686 | if (jh->b_transaction == transaction) { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1687 | J_ASSERT_JH(jh, !jh->b_frozen_data); |
| 1688 | |
| 1689 | /* If we are forgetting a buffer which is already part |
| 1690 | * of this transaction, then we can just drop it from |
| 1691 | * the transaction immediately. */ |
| 1692 | clear_buffer_dirty(bh); |
| 1693 | clear_buffer_jbddirty(bh); |
| 1694 | |
| 1695 | JBUFFER_TRACE(jh, "belongs to current transaction: unfile"); |
| 1696 | |
Josef Bacik | 1dfc322 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1697 | /* |
| 1698 | * we only want to drop a reference if this transaction |
| 1699 | * modified the buffer |
| 1700 | */ |
| 1701 | if (was_modified) |
| 1702 | drop_reserve = 1; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1703 | |
| 1704 | /* |
| 1705 | * We are no longer going to journal this buffer. |
| 1706 | * However, the commit of this transaction is still |
| 1707 | * important to the buffer: the delete that we are now |
| 1708 | * processing might obsolete an old log entry, so by |
| 1709 | * committing, we can satisfy the buffer's checkpoint. |
| 1710 | * |
| 1711 | * So, if we have a checkpoint on the buffer, we should |
| 1712 | * now refile the buffer on our BJ_Forget list so that |
| 1713 | * we know to remove the checkpoint after we commit. |
| 1714 | */ |
| 1715 | |
Theodore Ts'o | 0bfea81 | 2014-03-09 00:56:58 -0500 | [diff] [blame] | 1716 | spin_lock(&journal->j_list_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1717 | if (jh->b_cp_transaction) { |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1718 | __jbd2_journal_temp_unlink_buffer(jh); |
| 1719 | __jbd2_journal_file_buffer(jh, transaction, BJ_Forget); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1720 | } else { |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1721 | __jbd2_journal_unfile_buffer(jh); |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 1722 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1723 | } |
Theodore Ts'o | 0bfea81 | 2014-03-09 00:56:58 -0500 | [diff] [blame] | 1724 | spin_unlock(&journal->j_list_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1725 | } else if (jh->b_transaction) { |
| 1726 | J_ASSERT_JH(jh, (jh->b_transaction == |
| 1727 | journal->j_committing_transaction)); |
| 1728 | /* However, if the buffer is still owned by a prior |
| 1729 | * (committing) transaction, we can't drop it yet... */ |
| 1730 | JBUFFER_TRACE(jh, "belongs to older transaction"); |
zhangyi (F) | 904cdbd | 2019-02-10 23:23:04 -0500 | [diff] [blame] | 1731 | /* ... but we CAN drop it from the new transaction through |
| 1732 | * marking the buffer as freed and set j_next_transaction to |
| 1733 | * the new transaction, so that not only the commit code |
| 1734 | * knows it should clear dirty bits when it is done with the |
| 1735 | * buffer, but also the buffer can be checkpointed only |
| 1736 | * after the new transaction commits. */ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1737 | |
zhangyi (F) | 904cdbd | 2019-02-10 23:23:04 -0500 | [diff] [blame] | 1738 | set_buffer_freed(bh); |
| 1739 | |
| 1740 | if (!jh->b_next_transaction) { |
Theodore Ts'o | 0bfea81 | 2014-03-09 00:56:58 -0500 | [diff] [blame] | 1741 | spin_lock(&journal->j_list_lock); |
zhangyi (F) | 904cdbd | 2019-02-10 23:23:04 -0500 | [diff] [blame] | 1742 | jh->b_next_transaction = transaction; |
Theodore Ts'o | 0bfea81 | 2014-03-09 00:56:58 -0500 | [diff] [blame] | 1743 | spin_unlock(&journal->j_list_lock); |
zhangyi (F) | 904cdbd | 2019-02-10 23:23:04 -0500 | [diff] [blame] | 1744 | } else { |
| 1745 | J_ASSERT(jh->b_next_transaction == transaction); |
Josef Bacik | 1dfc322 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1746 | |
| 1747 | /* |
| 1748 | * only drop a reference if this transaction modified |
| 1749 | * the buffer |
| 1750 | */ |
| 1751 | if (was_modified) |
| 1752 | drop_reserve = 1; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1753 | } |
zhangyi (F) | 5975992 | 2019-02-10 23:26:06 -0500 | [diff] [blame] | 1754 | } else { |
| 1755 | /* |
| 1756 | * Finally, if the buffer is not belongs to any |
| 1757 | * transaction, we can just drop it now if it has no |
| 1758 | * checkpoint. |
| 1759 | */ |
| 1760 | spin_lock(&journal->j_list_lock); |
| 1761 | if (!jh->b_cp_transaction) { |
| 1762 | JBUFFER_TRACE(jh, "belongs to none transaction"); |
| 1763 | spin_unlock(&journal->j_list_lock); |
Jan Kara | 2e710ff | 2019-08-09 14:42:31 +0200 | [diff] [blame] | 1764 | goto drop; |
zhangyi (F) | 5975992 | 2019-02-10 23:26:06 -0500 | [diff] [blame] | 1765 | } |
| 1766 | |
| 1767 | /* |
| 1768 | * Otherwise, if the buffer has been written to disk, |
| 1769 | * it is safe to remove the checkpoint and drop it. |
| 1770 | */ |
| 1771 | if (!buffer_dirty(bh)) { |
| 1772 | __jbd2_journal_remove_checkpoint(jh); |
| 1773 | spin_unlock(&journal->j_list_lock); |
Jan Kara | 2e710ff | 2019-08-09 14:42:31 +0200 | [diff] [blame] | 1774 | goto drop; |
zhangyi (F) | 5975992 | 2019-02-10 23:26:06 -0500 | [diff] [blame] | 1775 | } |
| 1776 | |
| 1777 | /* |
| 1778 | * The buffer is still not written to disk, we should |
| 1779 | * attach this buffer to current transaction so that the |
| 1780 | * buffer can be checkpointed only after the current |
| 1781 | * transaction commits. |
| 1782 | */ |
| 1783 | clear_buffer_dirty(bh); |
| 1784 | __jbd2_journal_file_buffer(jh, transaction, BJ_Forget); |
| 1785 | spin_unlock(&journal->j_list_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1786 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1787 | drop: |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1788 | __brelse(bh); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1789 | spin_unlock(&jh->b_state_lock); |
| 1790 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1791 | if (drop_reserve) { |
| 1792 | /* no need to reserve log space for this block -bzzz */ |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 1793 | handle->h_total_credits++; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1794 | } |
| 1795 | return err; |
| 1796 | } |
| 1797 | |
| 1798 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 1799 | * jbd2_journal_stop() - complete a transaction |
Masanari Iida | bd7ced9 | 2016-02-02 22:31:06 +0900 | [diff] [blame] | 1800 | * @handle: transaction to complete. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1801 | * |
| 1802 | * All done for a particular handle. |
| 1803 | * |
| 1804 | * There is not much action needed here. We just return any remaining |
| 1805 | * buffer credits to the transaction and remove the handle. The only |
| 1806 | * complication is that we need to start a commit operation if the |
| 1807 | * filesystem is marked for synchronous update. |
| 1808 | * |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1809 | * jbd2_journal_stop itself will not usually return an error, but it may |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1810 | * do so in unusual circumstances. In particular, expect it to |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1811 | * return -EIO if a jbd2_journal_abort has been executed since the |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1812 | * transaction began. |
| 1813 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1814 | int jbd2_journal_stop(handle_t *handle) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1815 | { |
| 1816 | transaction_t *transaction = handle->h_transaction; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1817 | journal_t *journal; |
| 1818 | int err = 0, wait_for_commit = 0; |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 1819 | tid_t tid; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1820 | pid_t pid; |
| 1821 | |
Jan Kara | dfaf5ff | 2019-11-05 17:44:20 +0100 | [diff] [blame] | 1822 | if (--handle->h_ref > 0) { |
| 1823 | jbd_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1, |
| 1824 | handle->h_ref); |
| 1825 | if (is_handle_aborted(handle)) |
| 1826 | return -EIO; |
| 1827 | return 0; |
| 1828 | } |
Lukas Czerner | 9d50659 | 2015-05-14 18:55:18 -0400 | [diff] [blame] | 1829 | if (!transaction) { |
| 1830 | /* |
Jan Kara | dfaf5ff | 2019-11-05 17:44:20 +0100 | [diff] [blame] | 1831 | * Handle is already detached from the transaction so there is |
| 1832 | * nothing to do other than free the handle. |
Lukas Czerner | 9d50659 | 2015-05-14 18:55:18 -0400 | [diff] [blame] | 1833 | */ |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 1834 | memalloc_nofs_restore(handle->saved_alloc_context); |
Jan Kara | dfaf5ff | 2019-11-05 17:44:20 +0100 | [diff] [blame] | 1835 | goto free_and_exit; |
Lukas Czerner | 9d50659 | 2015-05-14 18:55:18 -0400 | [diff] [blame] | 1836 | } |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1837 | journal = transaction->t_journal; |
Jan Kara | dfaf5ff | 2019-11-05 17:44:20 +0100 | [diff] [blame] | 1838 | tid = transaction->t_tid; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1839 | |
| 1840 | if (is_handle_aborted(handle)) |
| 1841 | err = -EIO; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1842 | |
| 1843 | jbd_debug(4, "Handle %p going down\n", handle); |
Theodore Ts'o | 343d9c2 | 2013-02-08 13:00:22 -0500 | [diff] [blame] | 1844 | trace_jbd2_handle_stats(journal->j_fs_dev->bd_dev, |
Jan Kara | dfaf5ff | 2019-11-05 17:44:20 +0100 | [diff] [blame] | 1845 | tid, handle->h_type, handle->h_line_no, |
Theodore Ts'o | 343d9c2 | 2013-02-08 13:00:22 -0500 | [diff] [blame] | 1846 | jiffies - handle->h_start_jiffies, |
| 1847 | handle->h_sync, handle->h_requested_credits, |
| 1848 | (handle->h_requested_credits - |
Jan Kara | 933f1c1 | 2019-11-05 17:44:27 +0100 | [diff] [blame] | 1849 | handle->h_total_credits)); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1850 | |
| 1851 | /* |
| 1852 | * Implement synchronous transaction batching. If the handle |
| 1853 | * was synchronous, don't force a commit immediately. Let's |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 1854 | * yield and let another thread piggyback onto this |
| 1855 | * transaction. Keep doing that while new threads continue to |
| 1856 | * arrive. It doesn't cost much - we're about to run a commit |
| 1857 | * and sleep on IO anyway. Speeds up many-threaded, many-dir |
| 1858 | * operations by 30x or more... |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1859 | * |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 1860 | * We try and optimize the sleep time against what the |
| 1861 | * underlying disk can do, instead of having a static sleep |
| 1862 | * time. This is useful for the case where our storage is so |
| 1863 | * fast that it is more optimal to go ahead and force a flush |
| 1864 | * and wait for the transaction to be committed than it is to |
| 1865 | * wait for an arbitrary amount of time for new writers to |
| 1866 | * join the transaction. We achieve this by measuring how |
| 1867 | * long it takes to commit a transaction, and compare it with |
| 1868 | * how long this transaction has been running, and if run time |
| 1869 | * < commit time then we sleep for the delta and commit. This |
| 1870 | * greatly helps super fast disks that would see slowdowns as |
| 1871 | * more threads started doing fsyncs. |
| 1872 | * |
| 1873 | * But don't do this if this process was the most recent one |
| 1874 | * to perform a synchronous write. We do this to detect the |
| 1875 | * case where a single process is doing a stream of sync |
| 1876 | * writes. No point in waiting for joiners in that case. |
Eric Sandeen | 5dd2142 | 2014-07-05 19:18:22 -0400 | [diff] [blame] | 1877 | * |
| 1878 | * Setting max_batch_time to 0 disables this completely. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1879 | */ |
| 1880 | pid = current->pid; |
Eric Sandeen | 5dd2142 | 2014-07-05 19:18:22 -0400 | [diff] [blame] | 1881 | if (handle->h_sync && journal->j_last_sync_writer != pid && |
| 1882 | journal->j_max_batch_time) { |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 1883 | u64 commit_time, trans_time; |
| 1884 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1885 | journal->j_last_sync_writer = pid; |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 1886 | |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 1887 | read_lock(&journal->j_state_lock); |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 1888 | commit_time = journal->j_average_commit_time; |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 1889 | read_unlock(&journal->j_state_lock); |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 1890 | |
| 1891 | trans_time = ktime_to_ns(ktime_sub(ktime_get(), |
| 1892 | transaction->t_start_time)); |
| 1893 | |
Theodore Ts'o | 3077384 | 2009-01-03 20:27:38 -0500 | [diff] [blame] | 1894 | commit_time = max_t(u64, commit_time, |
| 1895 | 1000*journal->j_min_batch_time); |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 1896 | commit_time = min_t(u64, commit_time, |
Theodore Ts'o | 3077384 | 2009-01-03 20:27:38 -0500 | [diff] [blame] | 1897 | 1000*journal->j_max_batch_time); |
Josef Bacik | e07f718 | 2008-11-26 01:14:26 -0500 | [diff] [blame] | 1898 | |
| 1899 | if (trans_time < commit_time) { |
| 1900 | ktime_t expires = ktime_add_ns(ktime_get(), |
| 1901 | commit_time); |
| 1902 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 1903 | schedule_hrtimeout(&expires, HRTIMER_MODE_ABS); |
| 1904 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1905 | } |
| 1906 | |
Theodore Ts'o | 7058548 | 2009-03-25 23:35:46 -0400 | [diff] [blame] | 1907 | if (handle->h_sync) |
| 1908 | transaction->t_synchronous_commit = 1; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1909 | |
| 1910 | /* |
| 1911 | * If the handle is marked SYNC, we need to set another commit |
Jan Kara | 150549e | 2019-11-05 17:44:21 +0100 | [diff] [blame] | 1912 | * going! We also want to force a commit if the transaction is too |
| 1913 | * old now. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1914 | */ |
| 1915 | if (handle->h_sync || |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 1916 | time_after_eq(jiffies, transaction->t_expires)) { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1917 | /* Do this even for aborted journals: an abort still |
| 1918 | * completes the commit thread, it just doesn't write |
| 1919 | * anything to disk. */ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1920 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1921 | jbd_debug(2, "transaction too old, requesting commit for " |
| 1922 | "handle %p\n", handle); |
| 1923 | /* This is non-blocking */ |
Jan Kara | dfaf5ff | 2019-11-05 17:44:20 +0100 | [diff] [blame] | 1924 | jbd2_log_start_commit(journal, tid); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1925 | |
| 1926 | /* |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 1927 | * Special case: JBD2_SYNC synchronous updates require us |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1928 | * to wait for the commit to complete. |
| 1929 | */ |
| 1930 | if (handle->h_sync && !(current->flags & PF_MEMALLOC)) |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 1931 | wait_for_commit = 1; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1932 | } |
| 1933 | |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 1934 | /* |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 1935 | * Once stop_this_handle() drops t_updates, the transaction could start |
| 1936 | * committing on us and eventually disappear. So we must not |
| 1937 | * dereference transaction pointer again after calling |
| 1938 | * stop_this_handle(). |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 1939 | */ |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 1940 | stop_this_handle(handle); |
Jan Kara | 7a4b188 | 2016-06-30 11:30:21 -0400 | [diff] [blame] | 1941 | |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 1942 | if (wait_for_commit) |
| 1943 | err = jbd2_log_wait_commit(journal, tid); |
| 1944 | |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 1945 | free_and_exit: |
Jan Kara | ec8b6f6 | 2019-11-05 17:44:23 +0100 | [diff] [blame] | 1946 | if (handle->h_rsv_handle) |
| 1947 | jbd2_free_handle(handle->h_rsv_handle); |
Mingming Cao | af1e76d | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 1948 | jbd2_free_handle(handle); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1949 | return err; |
| 1950 | } |
| 1951 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1952 | /* |
| 1953 | * |
| 1954 | * List management code snippets: various functions for manipulating the |
| 1955 | * transaction buffer lists. |
| 1956 | * |
| 1957 | */ |
| 1958 | |
| 1959 | /* |
| 1960 | * Append a buffer to a transaction list, given the transaction's list head |
| 1961 | * pointer. |
| 1962 | * |
| 1963 | * j_list_lock is held. |
| 1964 | * |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1965 | * jh->b_state_lock is held. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1966 | */ |
| 1967 | |
| 1968 | static inline void |
| 1969 | __blist_add_buffer(struct journal_head **list, struct journal_head *jh) |
| 1970 | { |
| 1971 | if (!*list) { |
| 1972 | jh->b_tnext = jh->b_tprev = jh; |
| 1973 | *list = jh; |
| 1974 | } else { |
| 1975 | /* Insert at the tail of the list to preserve order */ |
| 1976 | struct journal_head *first = *list, *last = first->b_tprev; |
| 1977 | jh->b_tprev = last; |
| 1978 | jh->b_tnext = first; |
| 1979 | last->b_tnext = first->b_tprev = jh; |
| 1980 | } |
| 1981 | } |
| 1982 | |
| 1983 | /* |
| 1984 | * Remove a buffer from a transaction list, given the transaction's list |
| 1985 | * head pointer. |
| 1986 | * |
| 1987 | * Called with j_list_lock held, and the journal may not be locked. |
| 1988 | * |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 1989 | * jh->b_state_lock is held. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 1990 | */ |
| 1991 | |
| 1992 | static inline void |
| 1993 | __blist_del_buffer(struct journal_head **list, struct journal_head *jh) |
| 1994 | { |
| 1995 | if (*list == jh) { |
| 1996 | *list = jh->b_tnext; |
| 1997 | if (*list == jh) |
| 1998 | *list = NULL; |
| 1999 | } |
| 2000 | jh->b_tprev->b_tnext = jh->b_tnext; |
| 2001 | jh->b_tnext->b_tprev = jh->b_tprev; |
| 2002 | } |
| 2003 | |
| 2004 | /* |
| 2005 | * Remove a buffer from the appropriate transaction list. |
| 2006 | * |
| 2007 | * Note that this function can *change* the value of |
Jan Kara | f5113ef | 2013-06-04 12:01:45 -0400 | [diff] [blame] | 2008 | * bh->b_transaction->t_buffers, t_forget, t_shadow_list, t_log_list or |
| 2009 | * t_reserved_list. If the caller is holding onto a copy of one of these |
| 2010 | * pointers, it could go bad. Generally the caller needs to re-read the |
| 2011 | * pointer from the transaction_t. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2012 | * |
Jan Kara | 5bebccf | 2012-03-13 22:25:06 -0400 | [diff] [blame] | 2013 | * Called under j_list_lock. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2014 | */ |
Jan Kara | 5bebccf | 2012-03-13 22:25:06 -0400 | [diff] [blame] | 2015 | static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2016 | { |
| 2017 | struct journal_head **list = NULL; |
| 2018 | transaction_t *transaction; |
| 2019 | struct buffer_head *bh = jh2bh(jh); |
| 2020 | |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2021 | lockdep_assert_held(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2022 | transaction = jh->b_transaction; |
| 2023 | if (transaction) |
| 2024 | assert_spin_locked(&transaction->t_journal->j_list_lock); |
| 2025 | |
| 2026 | J_ASSERT_JH(jh, jh->b_jlist < BJ_Types); |
| 2027 | if (jh->b_jlist != BJ_None) |
Mingming Cao | 4019191 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2028 | J_ASSERT_JH(jh, transaction != NULL); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2029 | |
| 2030 | switch (jh->b_jlist) { |
| 2031 | case BJ_None: |
| 2032 | return; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2033 | case BJ_Metadata: |
| 2034 | transaction->t_nr_buffers--; |
| 2035 | J_ASSERT_JH(jh, transaction->t_nr_buffers >= 0); |
| 2036 | list = &transaction->t_buffers; |
| 2037 | break; |
| 2038 | case BJ_Forget: |
| 2039 | list = &transaction->t_forget; |
| 2040 | break; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2041 | case BJ_Shadow: |
| 2042 | list = &transaction->t_shadow_list; |
| 2043 | break; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2044 | case BJ_Reserved: |
| 2045 | list = &transaction->t_reserved_list; |
| 2046 | break; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2047 | } |
| 2048 | |
| 2049 | __blist_del_buffer(list, jh); |
| 2050 | jh->b_jlist = BJ_None; |
Theodore Ts'o | e112666 | 2017-02-04 23:14:19 -0500 | [diff] [blame] | 2051 | if (transaction && is_journal_aborted(transaction->t_journal)) |
| 2052 | clear_buffer_jbddirty(bh); |
| 2053 | else if (test_clear_buffer_jbddirty(bh)) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2054 | mark_buffer_dirty(bh); /* Expose it to the VM */ |
| 2055 | } |
| 2056 | |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2057 | /* |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2058 | * Remove buffer from all transactions. The caller is responsible for dropping |
| 2059 | * the jh reference that belonged to the transaction. |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2060 | * |
| 2061 | * Called with bh_state lock and j_list_lock |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2062 | */ |
| 2063 | static void __jbd2_journal_unfile_buffer(struct journal_head *jh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2064 | { |
Lukas Czerner | 24dc986 | 2020-06-17 11:25:49 +0200 | [diff] [blame] | 2065 | J_ASSERT_JH(jh, jh->b_transaction != NULL); |
| 2066 | J_ASSERT_JH(jh, jh->b_next_transaction == NULL); |
| 2067 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2068 | __jbd2_journal_temp_unlink_buffer(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2069 | jh->b_transaction = NULL; |
| 2070 | } |
| 2071 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2072 | void jbd2_journal_unfile_buffer(journal_t *journal, struct journal_head *jh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2073 | { |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2074 | struct buffer_head *bh = jh2bh(jh); |
| 2075 | |
| 2076 | /* Get reference so that buffer cannot be freed before we unlock it */ |
| 2077 | get_bh(bh); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2078 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2079 | spin_lock(&journal->j_list_lock); |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2080 | __jbd2_journal_unfile_buffer(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2081 | spin_unlock(&journal->j_list_lock); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2082 | spin_unlock(&jh->b_state_lock); |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2083 | jbd2_journal_put_journal_head(jh); |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2084 | __brelse(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2085 | } |
| 2086 | |
| 2087 | /* |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2088 | * Called from jbd2_journal_try_to_free_buffers(). |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2089 | * |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2090 | * Called under jh->b_state_lock |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2091 | */ |
| 2092 | static void |
| 2093 | __journal_try_to_free_buffer(journal_t *journal, struct buffer_head *bh) |
| 2094 | { |
| 2095 | struct journal_head *jh; |
| 2096 | |
| 2097 | jh = bh2jh(bh); |
| 2098 | |
| 2099 | if (buffer_locked(bh) || buffer_dirty(bh)) |
| 2100 | goto out; |
| 2101 | |
Theodore Ts'o | d2eb0b9 | 2014-03-09 00:07:19 -0500 | [diff] [blame] | 2102 | if (jh->b_next_transaction != NULL || jh->b_transaction != NULL) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2103 | goto out; |
| 2104 | |
| 2105 | spin_lock(&journal->j_list_lock); |
Theodore Ts'o | d2eb0b9 | 2014-03-09 00:07:19 -0500 | [diff] [blame] | 2106 | if (jh->b_cp_transaction != NULL) { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2107 | /* written-back checkpointed metadata buffer */ |
Jan Kara | c254c9e | 2012-03-13 22:27:44 -0400 | [diff] [blame] | 2108 | JBUFFER_TRACE(jh, "remove from checkpoint list"); |
| 2109 | __jbd2_journal_remove_checkpoint(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2110 | } |
| 2111 | spin_unlock(&journal->j_list_lock); |
| 2112 | out: |
| 2113 | return; |
| 2114 | } |
| 2115 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2116 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 2117 | * jbd2_journal_try_to_free_buffers() - try to free page buffers. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2118 | * @journal: journal for operation |
| 2119 | * @page: to try and free |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2120 | * |
| 2121 | * For all the buffers on this page, |
| 2122 | * if they are fully written out ordered data, move them onto BUF_CLEAN |
| 2123 | * so try_to_free_buffers() can reap them. |
| 2124 | * |
| 2125 | * This function returns non-zero if we wish try_to_free_buffers() |
| 2126 | * to be called. We do this if the page is releasable by try_to_free_buffers(). |
| 2127 | * We also do it if the page has locked or dirty buffers and the caller wants |
| 2128 | * us to perform sync or async writeout. |
| 2129 | * |
| 2130 | * This complicates JBD locking somewhat. We aren't protected by the |
| 2131 | * BKL here. We wish to remove the buffer from its committing or |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2132 | * running transaction's ->t_datalist via __jbd2_journal_unfile_buffer. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2133 | * |
| 2134 | * This may *change* the value of transaction_t->t_datalist, so anyone |
| 2135 | * who looks at t_datalist needs to lock against this function. |
| 2136 | * |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2137 | * Even worse, someone may be doing a jbd2_journal_dirty_data on this |
| 2138 | * buffer. So we need to lock against that. jbd2_journal_dirty_data() |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2139 | * will come out of the lock with the buffer dirty, which makes it |
| 2140 | * ineligible for release here. |
| 2141 | * |
| 2142 | * Who else is affected by this? hmm... Really the only contender |
| 2143 | * is do_get_write_access() - it could be looking at the buffer while |
| 2144 | * journal_try_to_free_buffer() is changing its state. But that |
| 2145 | * cannot happen because we never reallocate freed data as metadata |
| 2146 | * while the data is part of a transaction. Yes? |
Mingming Cao | 530576b | 2008-07-13 21:06:39 -0400 | [diff] [blame] | 2147 | * |
| 2148 | * Return 0 on failure, 1 on success |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2149 | */ |
zhangyi (F) | 529a781 | 2020-06-20 10:54:27 +0800 | [diff] [blame] | 2150 | int jbd2_journal_try_to_free_buffers(journal_t *journal, struct page *page) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2151 | { |
| 2152 | struct buffer_head *head; |
| 2153 | struct buffer_head *bh; |
| 2154 | int ret = 0; |
| 2155 | |
| 2156 | J_ASSERT(PageLocked(page)); |
| 2157 | |
| 2158 | head = page_buffers(page); |
| 2159 | bh = head; |
| 2160 | do { |
| 2161 | struct journal_head *jh; |
| 2162 | |
| 2163 | /* |
| 2164 | * We take our own ref against the journal_head here to avoid |
| 2165 | * having to add tons of locking around each instance of |
Mingming Cao | 530576b | 2008-07-13 21:06:39 -0400 | [diff] [blame] | 2166 | * jbd2_journal_put_journal_head(). |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2167 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2168 | jh = jbd2_journal_grab_journal_head(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2169 | if (!jh) |
| 2170 | continue; |
| 2171 | |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2172 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2173 | __journal_try_to_free_buffer(journal, bh); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2174 | spin_unlock(&jh->b_state_lock); |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2175 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2176 | if (buffer_jbd(bh)) |
| 2177 | goto busy; |
| 2178 | } while ((bh = bh->b_this_page) != head); |
Mingming Cao | 530576b | 2008-07-13 21:06:39 -0400 | [diff] [blame] | 2179 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2180 | ret = try_to_free_buffers(page); |
| 2181 | busy: |
| 2182 | return ret; |
| 2183 | } |
| 2184 | |
| 2185 | /* |
| 2186 | * This buffer is no longer needed. If it is on an older transaction's |
| 2187 | * checkpoint list we need to record it on this transaction's forget list |
| 2188 | * to pin this buffer (and hence its checkpointing transaction) down until |
| 2189 | * this transaction commits. If the buffer isn't on a checkpoint list, we |
| 2190 | * release it. |
| 2191 | * Returns non-zero if JBD no longer has an interest in the buffer. |
| 2192 | * |
| 2193 | * Called under j_list_lock. |
| 2194 | * |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2195 | * Called under jh->b_state_lock. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2196 | */ |
| 2197 | static int __dispose_buffer(struct journal_head *jh, transaction_t *transaction) |
| 2198 | { |
| 2199 | int may_free = 1; |
| 2200 | struct buffer_head *bh = jh2bh(jh); |
| 2201 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2202 | if (jh->b_cp_transaction) { |
| 2203 | JBUFFER_TRACE(jh, "on running+cp transaction"); |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2204 | __jbd2_journal_temp_unlink_buffer(jh); |
Jan Kara | f91d1d0 | 2009-07-13 16:16:20 -0400 | [diff] [blame] | 2205 | /* |
| 2206 | * We don't want to write the buffer anymore, clear the |
| 2207 | * bit so that we don't confuse checks in |
| 2208 | * __journal_file_buffer |
| 2209 | */ |
| 2210 | clear_buffer_dirty(bh); |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2211 | __jbd2_journal_file_buffer(jh, transaction, BJ_Forget); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2212 | may_free = 0; |
| 2213 | } else { |
| 2214 | JBUFFER_TRACE(jh, "on running transaction"); |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2215 | __jbd2_journal_unfile_buffer(jh); |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2216 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2217 | } |
| 2218 | return may_free; |
| 2219 | } |
| 2220 | |
| 2221 | /* |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2222 | * jbd2_journal_invalidatepage |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2223 | * |
| 2224 | * This code is tricky. It has a number of cases to deal with. |
| 2225 | * |
| 2226 | * There are two invariants which this code relies on: |
| 2227 | * |
| 2228 | * i_size must be updated on disk before we start calling invalidatepage on the |
| 2229 | * data. |
| 2230 | * |
| 2231 | * This is done in ext3 by defining an ext3_setattr method which |
| 2232 | * updates i_size before truncate gets going. By maintaining this |
| 2233 | * invariant, we can be sure that it is safe to throw away any buffers |
| 2234 | * attached to the current transaction: once the transaction commits, |
| 2235 | * we know that the data will not be needed. |
| 2236 | * |
| 2237 | * Note however that we can *not* throw away data belonging to the |
| 2238 | * previous, committing transaction! |
| 2239 | * |
| 2240 | * Any disk blocks which *are* part of the previous, committing |
| 2241 | * transaction (and which therefore cannot be discarded immediately) are |
| 2242 | * not going to be reused in the new running transaction |
| 2243 | * |
| 2244 | * The bitmap committed_data images guarantee this: any block which is |
| 2245 | * allocated in one transaction and removed in the next will be marked |
| 2246 | * as in-use in the committed_data bitmap, so cannot be reused until |
| 2247 | * the next transaction to delete the block commits. This means that |
| 2248 | * leaving committing buffers dirty is quite safe: the disk blocks |
| 2249 | * cannot be reallocated to a different file and so buffer aliasing is |
| 2250 | * not possible. |
| 2251 | * |
| 2252 | * |
| 2253 | * The above applies mainly to ordered data mode. In writeback mode we |
| 2254 | * don't make guarantees about the order in which data hits disk --- in |
| 2255 | * particular we don't guarantee that new dirty data is flushed before |
| 2256 | * transaction commit --- so it is always safe just to discard data |
| 2257 | * immediately in that mode. --sct |
| 2258 | */ |
| 2259 | |
| 2260 | /* |
| 2261 | * The journal_unmap_buffer helper function returns zero if the buffer |
| 2262 | * concerned remains pinned as an anonymous buffer belonging to an older |
| 2263 | * transaction. |
| 2264 | * |
| 2265 | * We're outside-transaction here. Either or both of j_running_transaction |
| 2266 | * and j_committing_transaction may be NULL. |
| 2267 | */ |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2268 | static int journal_unmap_buffer(journal_t *journal, struct buffer_head *bh, |
| 2269 | int partial_page) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2270 | { |
| 2271 | transaction_t *transaction; |
| 2272 | struct journal_head *jh; |
| 2273 | int may_free = 1; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2274 | |
| 2275 | BUFFER_TRACE(bh, "entry"); |
| 2276 | |
| 2277 | /* |
| 2278 | * It is safe to proceed here without the j_list_lock because the |
| 2279 | * buffers cannot be stolen by try_to_free_buffers as long as we are |
| 2280 | * holding the page lock. --sct |
| 2281 | */ |
| 2282 | |
Thomas Gleixner | d84560f | 2019-08-09 14:42:27 +0200 | [diff] [blame] | 2283 | jh = jbd2_journal_grab_journal_head(bh); |
| 2284 | if (!jh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2285 | goto zap_buffer_unlocked; |
| 2286 | |
Jan Kara | 87c89c2 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2287 | /* OK, we have data buffer in journaled mode */ |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 2288 | write_lock(&journal->j_state_lock); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2289 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2290 | spin_lock(&journal->j_list_lock); |
| 2291 | |
dingdinghua | ba86902 | 2010-02-15 16:35:42 -0500 | [diff] [blame] | 2292 | /* |
| 2293 | * We cannot remove the buffer from checkpoint lists until the |
| 2294 | * transaction adding inode to orphan list (let's call it T) |
| 2295 | * is committed. Otherwise if the transaction changing the |
| 2296 | * buffer would be cleaned from the journal before T is |
| 2297 | * committed, a crash will cause that the correct contents of |
| 2298 | * the buffer will be lost. On the other hand we have to |
| 2299 | * clear the buffer dirty bit at latest at the moment when the |
| 2300 | * transaction marking the buffer as freed in the filesystem |
| 2301 | * structures is committed because from that moment on the |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2302 | * block can be reallocated and used by a different page. |
dingdinghua | ba86902 | 2010-02-15 16:35:42 -0500 | [diff] [blame] | 2303 | * Since the block hasn't been freed yet but the inode has |
| 2304 | * already been added to orphan list, it is safe for us to add |
| 2305 | * the buffer to BJ_Forget list of the newest transaction. |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2306 | * |
| 2307 | * Also we have to clear buffer_mapped flag of a truncated buffer |
| 2308 | * because the buffer_head may be attached to the page straddling |
| 2309 | * i_size (can happen only when blocksize < pagesize) and thus the |
| 2310 | * buffer_head can be reused when the file is extended again. So we end |
| 2311 | * up keeping around invalidated buffers attached to transactions' |
| 2312 | * BJ_Forget list just to stop checkpointing code from cleaning up |
| 2313 | * the transaction this buffer was modified in. |
dingdinghua | ba86902 | 2010-02-15 16:35:42 -0500 | [diff] [blame] | 2314 | */ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2315 | transaction = jh->b_transaction; |
| 2316 | if (transaction == NULL) { |
| 2317 | /* First case: not on any transaction. If it |
| 2318 | * has no checkpoint link, then we can zap it: |
| 2319 | * it's a writeback-mode buffer so we don't care |
| 2320 | * if it hits disk safely. */ |
| 2321 | if (!jh->b_cp_transaction) { |
| 2322 | JBUFFER_TRACE(jh, "not on any transaction: zap"); |
| 2323 | goto zap_buffer; |
| 2324 | } |
| 2325 | |
| 2326 | if (!buffer_dirty(bh)) { |
| 2327 | /* bdflush has written it. We can drop it now */ |
Jan Kara | bc23f0c | 2015-11-24 15:34:35 -0500 | [diff] [blame] | 2328 | __jbd2_journal_remove_checkpoint(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2329 | goto zap_buffer; |
| 2330 | } |
| 2331 | |
| 2332 | /* OK, it must be in the journal but still not |
| 2333 | * written fully to disk: it's metadata or |
| 2334 | * journaled data... */ |
| 2335 | |
| 2336 | if (journal->j_running_transaction) { |
| 2337 | /* ... and once the current transaction has |
| 2338 | * committed, the buffer won't be needed any |
| 2339 | * longer. */ |
| 2340 | JBUFFER_TRACE(jh, "checkpointed: add to BJ_Forget"); |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2341 | may_free = __dispose_buffer(jh, |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2342 | journal->j_running_transaction); |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2343 | goto zap_buffer; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2344 | } else { |
| 2345 | /* There is no currently-running transaction. So the |
| 2346 | * orphan record which we wrote for this file must have |
| 2347 | * passed into commit. We must attach this buffer to |
| 2348 | * the committing transaction, if it exists. */ |
| 2349 | if (journal->j_committing_transaction) { |
| 2350 | JBUFFER_TRACE(jh, "give to committing trans"); |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2351 | may_free = __dispose_buffer(jh, |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2352 | journal->j_committing_transaction); |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2353 | goto zap_buffer; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2354 | } else { |
| 2355 | /* The orphan record's transaction has |
| 2356 | * committed. We can cleanse this buffer */ |
| 2357 | clear_buffer_jbddirty(bh); |
Jan Kara | bc23f0c | 2015-11-24 15:34:35 -0500 | [diff] [blame] | 2358 | __jbd2_journal_remove_checkpoint(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2359 | goto zap_buffer; |
| 2360 | } |
| 2361 | } |
| 2362 | } else if (transaction == journal->j_committing_transaction) { |
Eric Sandeen | 9b57988 | 2006-10-28 10:38:28 -0700 | [diff] [blame] | 2363 | JBUFFER_TRACE(jh, "on committing transaction"); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2364 | /* |
dingdinghua | ba86902 | 2010-02-15 16:35:42 -0500 | [diff] [blame] | 2365 | * The buffer is committing, we simply cannot touch |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2366 | * it. If the page is straddling i_size we have to wait |
| 2367 | * for commit and try again. |
| 2368 | */ |
| 2369 | if (partial_page) { |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2370 | spin_unlock(&journal->j_list_lock); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2371 | spin_unlock(&jh->b_state_lock); |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2372 | write_unlock(&journal->j_state_lock); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2373 | jbd2_journal_put_journal_head(jh); |
Jan Kara | 53e8726 | 2012-12-25 13:29:52 -0500 | [diff] [blame] | 2374 | return -EBUSY; |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2375 | } |
| 2376 | /* |
zhangyi (F) | 6a66a7d | 2020-02-13 14:38:20 +0800 | [diff] [blame] | 2377 | * OK, buffer won't be reachable after truncate. We just clear |
| 2378 | * b_modified to not confuse transaction credit accounting, and |
| 2379 | * set j_next_transaction to the running transaction (if there |
| 2380 | * is one) and mark buffer as freed so that commit code knows |
| 2381 | * it should clear dirty bits when it is done with the buffer. |
dingdinghua | ba86902 | 2010-02-15 16:35:42 -0500 | [diff] [blame] | 2382 | */ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2383 | set_buffer_freed(bh); |
dingdinghua | ba86902 | 2010-02-15 16:35:42 -0500 | [diff] [blame] | 2384 | if (journal->j_running_transaction && buffer_jbddirty(bh)) |
| 2385 | jh->b_next_transaction = journal->j_running_transaction; |
zhangyi (F) | 6a66a7d | 2020-02-13 14:38:20 +0800 | [diff] [blame] | 2386 | jh->b_modified = 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2387 | spin_unlock(&journal->j_list_lock); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2388 | spin_unlock(&jh->b_state_lock); |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 2389 | write_unlock(&journal->j_state_lock); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2390 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2391 | return 0; |
| 2392 | } else { |
| 2393 | /* Good, the buffer belongs to the running transaction. |
| 2394 | * We are writing our own transaction's data, not any |
| 2395 | * previous one's, so it is safe to throw it away |
| 2396 | * (remember that we expect the filesystem to have set |
| 2397 | * i_size already for this truncate so recovery will not |
| 2398 | * expose the disk blocks we are discarding here.) */ |
| 2399 | J_ASSERT_JH(jh, transaction == journal->j_running_transaction); |
Eric Sandeen | 9b57988 | 2006-10-28 10:38:28 -0700 | [diff] [blame] | 2400 | JBUFFER_TRACE(jh, "on running transaction"); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2401 | may_free = __dispose_buffer(jh, transaction); |
| 2402 | } |
| 2403 | |
| 2404 | zap_buffer: |
Jan Kara | b794e7a | 2012-09-26 23:11:13 -0400 | [diff] [blame] | 2405 | /* |
| 2406 | * This is tricky. Although the buffer is truncated, it may be reused |
| 2407 | * if blocksize < pagesize and it is attached to the page straddling |
| 2408 | * EOF. Since the buffer might have been added to BJ_Forget list of the |
| 2409 | * running transaction, journal_get_write_access() won't clear |
| 2410 | * b_modified and credit accounting gets confused. So clear b_modified |
| 2411 | * here. |
| 2412 | */ |
| 2413 | jh->b_modified = 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2414 | spin_unlock(&journal->j_list_lock); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2415 | spin_unlock(&jh->b_state_lock); |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 2416 | write_unlock(&journal->j_state_lock); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2417 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2418 | zap_buffer_unlocked: |
| 2419 | clear_buffer_dirty(bh); |
| 2420 | J_ASSERT_BH(bh, !buffer_jbddirty(bh)); |
| 2421 | clear_buffer_mapped(bh); |
| 2422 | clear_buffer_req(bh); |
| 2423 | clear_buffer_new(bh); |
Eric Sandeen | 1529116 | 2012-02-20 17:53:01 -0500 | [diff] [blame] | 2424 | clear_buffer_delay(bh); |
| 2425 | clear_buffer_unwritten(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2426 | bh->b_bdev = NULL; |
| 2427 | return may_free; |
| 2428 | } |
| 2429 | |
| 2430 | /** |
Mauro Carvalho Chehab | 2bf31d9 | 2020-11-16 11:18:08 +0100 | [diff] [blame] | 2431 | * jbd2_journal_invalidatepage() |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2432 | * @journal: journal to use for flush... |
| 2433 | * @page: page to flush |
Lukas Czerner | 259709b | 2013-05-21 23:20:03 -0400 | [diff] [blame] | 2434 | * @offset: start of the range to invalidate |
| 2435 | * @length: length of the range to invalidate |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2436 | * |
Lukas Czerner | 259709b | 2013-05-21 23:20:03 -0400 | [diff] [blame] | 2437 | * Reap page buffers containing data after in the specified range in page. |
| 2438 | * Can return -EBUSY if buffers are part of the committing transaction and |
| 2439 | * the page is straddling i_size. Caller then has to wait for current commit |
| 2440 | * and try again. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2441 | */ |
Jan Kara | 53e8726 | 2012-12-25 13:29:52 -0500 | [diff] [blame] | 2442 | int jbd2_journal_invalidatepage(journal_t *journal, |
| 2443 | struct page *page, |
Lukas Czerner | 259709b | 2013-05-21 23:20:03 -0400 | [diff] [blame] | 2444 | unsigned int offset, |
| 2445 | unsigned int length) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2446 | { |
| 2447 | struct buffer_head *head, *bh, *next; |
Lukas Czerner | 259709b | 2013-05-21 23:20:03 -0400 | [diff] [blame] | 2448 | unsigned int stop = offset + length; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2449 | unsigned int curr_off = 0; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2450 | int partial_page = (offset || length < PAGE_SIZE); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2451 | int may_free = 1; |
Jan Kara | 53e8726 | 2012-12-25 13:29:52 -0500 | [diff] [blame] | 2452 | int ret = 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2453 | |
| 2454 | if (!PageLocked(page)) |
| 2455 | BUG(); |
| 2456 | if (!page_has_buffers(page)) |
Jan Kara | 53e8726 | 2012-12-25 13:29:52 -0500 | [diff] [blame] | 2457 | return 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2458 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2459 | BUG_ON(stop > PAGE_SIZE || stop < length); |
Lukas Czerner | 259709b | 2013-05-21 23:20:03 -0400 | [diff] [blame] | 2460 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2461 | /* We will potentially be playing with lists other than just the |
| 2462 | * data lists (especially for journaled data mode), so be |
| 2463 | * cautious in our locking. */ |
| 2464 | |
| 2465 | head = bh = page_buffers(page); |
| 2466 | do { |
| 2467 | unsigned int next_off = curr_off + bh->b_size; |
| 2468 | next = bh->b_this_page; |
| 2469 | |
Lukas Czerner | 259709b | 2013-05-21 23:20:03 -0400 | [diff] [blame] | 2470 | if (next_off > stop) |
| 2471 | return 0; |
| 2472 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2473 | if (offset <= curr_off) { |
| 2474 | /* This block is wholly outside the truncation point */ |
| 2475 | lock_buffer(bh); |
Lukas Czerner | 259709b | 2013-05-21 23:20:03 -0400 | [diff] [blame] | 2476 | ret = journal_unmap_buffer(journal, bh, partial_page); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2477 | unlock_buffer(bh); |
Jan Kara | 53e8726 | 2012-12-25 13:29:52 -0500 | [diff] [blame] | 2478 | if (ret < 0) |
| 2479 | return ret; |
| 2480 | may_free &= ret; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2481 | } |
| 2482 | curr_off = next_off; |
| 2483 | bh = next; |
| 2484 | |
| 2485 | } while (bh != head); |
| 2486 | |
Lukas Czerner | 259709b | 2013-05-21 23:20:03 -0400 | [diff] [blame] | 2487 | if (!partial_page) { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2488 | if (may_free && try_to_free_buffers(page)) |
| 2489 | J_ASSERT(!page_has_buffers(page)); |
| 2490 | } |
Jan Kara | 53e8726 | 2012-12-25 13:29:52 -0500 | [diff] [blame] | 2491 | return 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2492 | } |
| 2493 | |
| 2494 | /* |
| 2495 | * File a buffer on the given transaction list. |
| 2496 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2497 | void __jbd2_journal_file_buffer(struct journal_head *jh, |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2498 | transaction_t *transaction, int jlist) |
| 2499 | { |
| 2500 | struct journal_head **list = NULL; |
| 2501 | int was_dirty = 0; |
| 2502 | struct buffer_head *bh = jh2bh(jh); |
| 2503 | |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2504 | lockdep_assert_held(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2505 | assert_spin_locked(&transaction->t_journal->j_list_lock); |
| 2506 | |
| 2507 | J_ASSERT_JH(jh, jh->b_jlist < BJ_Types); |
| 2508 | J_ASSERT_JH(jh, jh->b_transaction == transaction || |
Mingming Cao | 4019191 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2509 | jh->b_transaction == NULL); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2510 | |
| 2511 | if (jh->b_transaction && jh->b_jlist == jlist) |
| 2512 | return; |
| 2513 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2514 | if (jlist == BJ_Metadata || jlist == BJ_Reserved || |
| 2515 | jlist == BJ_Shadow || jlist == BJ_Forget) { |
Jan Kara | f91d1d0 | 2009-07-13 16:16:20 -0400 | [diff] [blame] | 2516 | /* |
| 2517 | * For metadata buffers, we track dirty bit in buffer_jbddirty |
| 2518 | * instead of buffer_dirty. We should not see a dirty bit set |
| 2519 | * here because we clear it in do_get_write_access but e.g. |
| 2520 | * tune2fs can modify the sb and set the dirty bit at any time |
| 2521 | * so we try to gracefully handle that. |
| 2522 | */ |
| 2523 | if (buffer_dirty(bh)) |
| 2524 | warn_dirty_buffer(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2525 | if (test_clear_buffer_dirty(bh) || |
| 2526 | test_clear_buffer_jbddirty(bh)) |
| 2527 | was_dirty = 1; |
| 2528 | } |
| 2529 | |
| 2530 | if (jh->b_transaction) |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2531 | __jbd2_journal_temp_unlink_buffer(jh); |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2532 | else |
| 2533 | jbd2_journal_grab_journal_head(bh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2534 | jh->b_transaction = transaction; |
| 2535 | |
| 2536 | switch (jlist) { |
| 2537 | case BJ_None: |
| 2538 | J_ASSERT_JH(jh, !jh->b_committed_data); |
| 2539 | J_ASSERT_JH(jh, !jh->b_frozen_data); |
| 2540 | return; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2541 | case BJ_Metadata: |
| 2542 | transaction->t_nr_buffers++; |
| 2543 | list = &transaction->t_buffers; |
| 2544 | break; |
| 2545 | case BJ_Forget: |
| 2546 | list = &transaction->t_forget; |
| 2547 | break; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2548 | case BJ_Shadow: |
| 2549 | list = &transaction->t_shadow_list; |
| 2550 | break; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2551 | case BJ_Reserved: |
| 2552 | list = &transaction->t_reserved_list; |
| 2553 | break; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2554 | } |
| 2555 | |
| 2556 | __blist_add_buffer(list, jh); |
| 2557 | jh->b_jlist = jlist; |
| 2558 | |
| 2559 | if (was_dirty) |
| 2560 | set_buffer_jbddirty(bh); |
| 2561 | } |
| 2562 | |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2563 | void jbd2_journal_file_buffer(struct journal_head *jh, |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2564 | transaction_t *transaction, int jlist) |
| 2565 | { |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2566 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2567 | spin_lock(&transaction->t_journal->j_list_lock); |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2568 | __jbd2_journal_file_buffer(jh, transaction, jlist); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2569 | spin_unlock(&transaction->t_journal->j_list_lock); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2570 | spin_unlock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2571 | } |
| 2572 | |
| 2573 | /* |
| 2574 | * Remove a buffer from its current buffer list in preparation for |
| 2575 | * dropping it from its current transaction entirely. If the buffer has |
| 2576 | * already started to be used by a subsequent transaction, refile the |
| 2577 | * buffer on that transaction's metadata list. |
| 2578 | * |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2579 | * Called under j_list_lock |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2580 | * Called under jh->b_state_lock |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2581 | * |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2582 | * When this function returns true, there's no next transaction to refile to |
| 2583 | * and the caller has to drop jh reference through |
| 2584 | * jbd2_journal_put_journal_head(). |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2585 | */ |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2586 | bool __jbd2_journal_refile_buffer(struct journal_head *jh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2587 | { |
dingdinghua | ba86902 | 2010-02-15 16:35:42 -0500 | [diff] [blame] | 2588 | int was_dirty, jlist; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2589 | struct buffer_head *bh = jh2bh(jh); |
| 2590 | |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2591 | lockdep_assert_held(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2592 | if (jh->b_transaction) |
| 2593 | assert_spin_locked(&jh->b_transaction->t_journal->j_list_lock); |
| 2594 | |
| 2595 | /* If the buffer is now unused, just drop it. */ |
| 2596 | if (jh->b_next_transaction == NULL) { |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2597 | __jbd2_journal_unfile_buffer(jh); |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2598 | return true; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2599 | } |
| 2600 | |
| 2601 | /* |
| 2602 | * It has been modified by a later transaction: add it to the new |
| 2603 | * transaction's metadata list. |
| 2604 | */ |
| 2605 | |
| 2606 | was_dirty = test_clear_buffer_jbddirty(bh); |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2607 | __jbd2_journal_temp_unlink_buffer(jh); |
Lukas Czerner | 24dc986 | 2020-06-17 11:25:49 +0200 | [diff] [blame] | 2608 | |
| 2609 | /* |
| 2610 | * b_transaction must be set, otherwise the new b_transaction won't |
| 2611 | * be holding jh reference |
| 2612 | */ |
| 2613 | J_ASSERT_JH(jh, jh->b_transaction != NULL); |
| 2614 | |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2615 | /* |
| 2616 | * We set b_transaction here because b_next_transaction will inherit |
| 2617 | * our jh reference and thus __jbd2_journal_file_buffer() must not |
| 2618 | * take a new one. |
| 2619 | */ |
Qian Cai | 6c5d911 | 2020-02-21 23:31:11 -0500 | [diff] [blame] | 2620 | WRITE_ONCE(jh->b_transaction, jh->b_next_transaction); |
| 2621 | WRITE_ONCE(jh->b_next_transaction, NULL); |
dingdinghua | ba86902 | 2010-02-15 16:35:42 -0500 | [diff] [blame] | 2622 | if (buffer_freed(bh)) |
| 2623 | jlist = BJ_Forget; |
| 2624 | else if (jh->b_modified) |
| 2625 | jlist = BJ_Metadata; |
| 2626 | else |
| 2627 | jlist = BJ_Reserved; |
| 2628 | __jbd2_journal_file_buffer(jh, jh->b_transaction, jlist); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2629 | J_ASSERT_JH(jh, jh->b_transaction->t_state == T_RUNNING); |
| 2630 | |
| 2631 | if (was_dirty) |
| 2632 | set_buffer_jbddirty(bh); |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2633 | return false; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2634 | } |
| 2635 | |
| 2636 | /* |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2637 | * __jbd2_journal_refile_buffer() with necessary locking added. We take our |
| 2638 | * bh reference so that we can safely unlock bh. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2639 | * |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 2640 | * The jh and bh may be freed by this call. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2641 | */ |
Mingming Cao | f7f4bcc | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 2642 | void jbd2_journal_refile_buffer(journal_t *journal, struct journal_head *jh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2643 | { |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2644 | bool drop; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2645 | |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2646 | spin_lock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2647 | spin_lock(&journal->j_list_lock); |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2648 | drop = __jbd2_journal_refile_buffer(jh); |
Thomas Gleixner | 4641706 | 2019-08-09 14:42:32 +0200 | [diff] [blame] | 2649 | spin_unlock(&jh->b_state_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2650 | spin_unlock(&journal->j_list_lock); |
Jan Kara | 93108eb | 2019-08-09 14:42:29 +0200 | [diff] [blame] | 2651 | if (drop) |
| 2652 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2653 | } |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2654 | |
| 2655 | /* |
| 2656 | * File inode in the inode list of the handle's transaction |
| 2657 | */ |
Jan Kara | 41617e1 | 2016-04-24 00:56:07 -0400 | [diff] [blame] | 2658 | static int jbd2_journal_file_inode(handle_t *handle, struct jbd2_inode *jinode, |
Ross Zwisler | 6ba0e7d | 2019-06-20 17:24:56 -0400 | [diff] [blame] | 2659 | unsigned long flags, loff_t start_byte, loff_t end_byte) |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2660 | { |
| 2661 | transaction_t *transaction = handle->h_transaction; |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 2662 | journal_t *journal; |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2663 | |
| 2664 | if (is_handle_aborted(handle)) |
Theodore Ts'o | 41a5b91 | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 2665 | return -EROFS; |
| 2666 | journal = transaction->t_journal; |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2667 | |
| 2668 | jbd_debug(4, "Adding inode %lu, tid:%d\n", jinode->i_vfs_inode->i_ino, |
| 2669 | transaction->t_tid); |
| 2670 | |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2671 | spin_lock(&journal->j_list_lock); |
Jan Kara | 41617e1 | 2016-04-24 00:56:07 -0400 | [diff] [blame] | 2672 | jinode->i_flags |= flags; |
Ross Zwisler | 6ba0e7d | 2019-06-20 17:24:56 -0400 | [diff] [blame] | 2673 | |
| 2674 | if (jinode->i_dirty_end) { |
| 2675 | jinode->i_dirty_start = min(jinode->i_dirty_start, start_byte); |
| 2676 | jinode->i_dirty_end = max(jinode->i_dirty_end, end_byte); |
| 2677 | } else { |
| 2678 | jinode->i_dirty_start = start_byte; |
| 2679 | jinode->i_dirty_end = end_byte; |
| 2680 | } |
| 2681 | |
Jan Kara | 41617e1 | 2016-04-24 00:56:07 -0400 | [diff] [blame] | 2682 | /* Is inode already attached where we need it? */ |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2683 | if (jinode->i_transaction == transaction || |
| 2684 | jinode->i_next_transaction == transaction) |
| 2685 | goto done; |
| 2686 | |
Jan Kara | 81be12c | 2011-05-24 11:52:40 -0400 | [diff] [blame] | 2687 | /* |
| 2688 | * We only ever set this variable to 1 so the test is safe. Since |
| 2689 | * t_need_data_flush is likely to be set, we do the test to save some |
| 2690 | * cacheline bouncing |
| 2691 | */ |
| 2692 | if (!transaction->t_need_data_flush) |
| 2693 | transaction->t_need_data_flush = 1; |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2694 | /* On some different transaction's list - should be |
| 2695 | * the committing one */ |
| 2696 | if (jinode->i_transaction) { |
| 2697 | J_ASSERT(jinode->i_next_transaction == NULL); |
| 2698 | J_ASSERT(jinode->i_transaction == |
| 2699 | journal->j_committing_transaction); |
| 2700 | jinode->i_next_transaction = transaction; |
| 2701 | goto done; |
| 2702 | } |
| 2703 | /* Not on any transaction list... */ |
| 2704 | J_ASSERT(!jinode->i_next_transaction); |
| 2705 | jinode->i_transaction = transaction; |
| 2706 | list_add(&jinode->i_list, &transaction->t_inode_list); |
| 2707 | done: |
| 2708 | spin_unlock(&journal->j_list_lock); |
| 2709 | |
| 2710 | return 0; |
| 2711 | } |
| 2712 | |
Ross Zwisler | 6ba0e7d | 2019-06-20 17:24:56 -0400 | [diff] [blame] | 2713 | int jbd2_journal_inode_ranged_write(handle_t *handle, |
| 2714 | struct jbd2_inode *jinode, loff_t start_byte, loff_t length) |
| 2715 | { |
| 2716 | return jbd2_journal_file_inode(handle, jinode, |
| 2717 | JI_WRITE_DATA | JI_WAIT_DATA, start_byte, |
| 2718 | start_byte + length - 1); |
| 2719 | } |
| 2720 | |
| 2721 | int jbd2_journal_inode_ranged_wait(handle_t *handle, struct jbd2_inode *jinode, |
| 2722 | loff_t start_byte, loff_t length) |
| 2723 | { |
| 2724 | return jbd2_journal_file_inode(handle, jinode, JI_WAIT_DATA, |
| 2725 | start_byte, start_byte + length - 1); |
Jan Kara | 41617e1 | 2016-04-24 00:56:07 -0400 | [diff] [blame] | 2726 | } |
| 2727 | |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2728 | /* |
Jan Kara | 7f5aa21 | 2009-02-10 11:15:34 -0500 | [diff] [blame] | 2729 | * File truncate and transaction commit interact with each other in a |
| 2730 | * non-trivial way. If a transaction writing data block A is |
| 2731 | * committing, we cannot discard the data by truncate until we have |
| 2732 | * written them. Otherwise if we crashed after the transaction with |
| 2733 | * write has committed but before the transaction with truncate has |
| 2734 | * committed, we could see stale data in block A. This function is a |
| 2735 | * helper to solve this problem. It starts writeout of the truncated |
| 2736 | * part in case it is in the committing transaction. |
| 2737 | * |
| 2738 | * Filesystem code must call this function when inode is journaled in |
| 2739 | * ordered mode before truncation happens and after the inode has been |
| 2740 | * placed on orphan list with the new inode size. The second condition |
| 2741 | * avoids the race that someone writes new data and we start |
| 2742 | * committing the transaction after this function has been called but |
| 2743 | * before a transaction for truncate is started (and furthermore it |
| 2744 | * allows us to optimize the case where the addition to orphan list |
| 2745 | * happens in the same transaction as write --- we don't have to write |
| 2746 | * any data in such case). |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2747 | */ |
Jan Kara | 7f5aa21 | 2009-02-10 11:15:34 -0500 | [diff] [blame] | 2748 | int jbd2_journal_begin_ordered_truncate(journal_t *journal, |
| 2749 | struct jbd2_inode *jinode, |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2750 | loff_t new_size) |
| 2751 | { |
Jan Kara | 7f5aa21 | 2009-02-10 11:15:34 -0500 | [diff] [blame] | 2752 | transaction_t *inode_trans, *commit_trans; |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2753 | int ret = 0; |
| 2754 | |
Jan Kara | 7f5aa21 | 2009-02-10 11:15:34 -0500 | [diff] [blame] | 2755 | /* This is a quick check to avoid locking if not necessary */ |
| 2756 | if (!jinode->i_transaction) |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2757 | goto out; |
Jan Kara | 7f5aa21 | 2009-02-10 11:15:34 -0500 | [diff] [blame] | 2758 | /* Locks are here just to force reading of recent values, it is |
| 2759 | * enough that the transaction was not committing before we started |
| 2760 | * a transaction adding the inode to orphan list */ |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 2761 | read_lock(&journal->j_state_lock); |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2762 | commit_trans = journal->j_committing_transaction; |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 2763 | read_unlock(&journal->j_state_lock); |
Jan Kara | 7f5aa21 | 2009-02-10 11:15:34 -0500 | [diff] [blame] | 2764 | spin_lock(&journal->j_list_lock); |
| 2765 | inode_trans = jinode->i_transaction; |
| 2766 | spin_unlock(&journal->j_list_lock); |
| 2767 | if (inode_trans == commit_trans) { |
| 2768 | ret = filemap_fdatawrite_range(jinode->i_vfs_inode->i_mapping, |
Jan Kara | c851ed5 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2769 | new_size, LLONG_MAX); |
| 2770 | if (ret) |
| 2771 | jbd2_journal_abort(journal, ret); |
| 2772 | } |
| 2773 | out: |
| 2774 | return ret; |
| 2775 | } |