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