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