Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1 | /* -*- mode: c; c-basic-offset: 8; -*- |
| 2 | * vim: noexpandtab sw=8 ts=8 sts=0: |
| 3 | * |
| 4 | * journal.c |
| 5 | * |
| 6 | * Defines functions of journalling api |
| 7 | * |
| 8 | * Copyright (C) 2003, 2004 Oracle. All rights reserved. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public |
| 12 | * License as published by the Free Software Foundation; either |
| 13 | * version 2 of the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public |
| 21 | * License along with this program; if not, write to the |
| 22 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | * Boston, MA 021110-1307, USA. |
| 24 | */ |
| 25 | |
| 26 | #include <linux/fs.h> |
| 27 | #include <linux/types.h> |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/highmem.h> |
| 30 | #include <linux/kthread.h> |
| 31 | |
| 32 | #define MLOG_MASK_PREFIX ML_JOURNAL |
| 33 | #include <cluster/masklog.h> |
| 34 | |
| 35 | #include "ocfs2.h" |
| 36 | |
| 37 | #include "alloc.h" |
Mark Fasheh | 316f4b9 | 2007-09-07 18:21:26 -0700 | [diff] [blame] | 38 | #include "dir.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 39 | #include "dlmglue.h" |
| 40 | #include "extent_map.h" |
| 41 | #include "heartbeat.h" |
| 42 | #include "inode.h" |
| 43 | #include "journal.h" |
| 44 | #include "localalloc.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 45 | #include "slot_map.h" |
| 46 | #include "super.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 47 | #include "sysfile.h" |
| 48 | |
| 49 | #include "buffer_head_io.h" |
| 50 | |
Ingo Molnar | 34af946 | 2006-06-27 02:53:55 -0700 | [diff] [blame] | 51 | DEFINE_SPINLOCK(trans_inc_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 52 | |
| 53 | static int ocfs2_force_read_journal(struct inode *inode); |
| 54 | static int ocfs2_recover_node(struct ocfs2_super *osb, |
| 55 | int node_num); |
| 56 | static int __ocfs2_recovery_thread(void *arg); |
| 57 | static int ocfs2_commit_cache(struct ocfs2_super *osb); |
| 58 | static int ocfs2_wait_on_mount(struct ocfs2_super *osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 59 | static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb, |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 60 | int dirty, int replayed); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 61 | static int ocfs2_trylock_journal(struct ocfs2_super *osb, |
| 62 | int slot_num); |
| 63 | static int ocfs2_recover_orphans(struct ocfs2_super *osb, |
| 64 | int slot); |
| 65 | static int ocfs2_commit_thread(void *arg); |
| 66 | |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * The recovery_list is a simple linked list of node numbers to recover. |
| 70 | * It is protected by the recovery_lock. |
| 71 | */ |
| 72 | |
| 73 | struct ocfs2_recovery_map { |
Joel Becker | fc881fa | 2008-02-01 12:04:48 -0800 | [diff] [blame] | 74 | unsigned int rm_used; |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 75 | unsigned int *rm_entries; |
| 76 | }; |
| 77 | |
| 78 | int ocfs2_recovery_init(struct ocfs2_super *osb) |
| 79 | { |
| 80 | struct ocfs2_recovery_map *rm; |
| 81 | |
| 82 | mutex_init(&osb->recovery_lock); |
| 83 | osb->disable_recovery = 0; |
| 84 | osb->recovery_thread_task = NULL; |
| 85 | init_waitqueue_head(&osb->recovery_event); |
| 86 | |
| 87 | rm = kzalloc(sizeof(struct ocfs2_recovery_map) + |
| 88 | osb->max_slots * sizeof(unsigned int), |
| 89 | GFP_KERNEL); |
| 90 | if (!rm) { |
| 91 | mlog_errno(-ENOMEM); |
| 92 | return -ENOMEM; |
| 93 | } |
| 94 | |
| 95 | rm->rm_entries = (unsigned int *)((char *)rm + |
| 96 | sizeof(struct ocfs2_recovery_map)); |
| 97 | osb->recovery_map = rm; |
| 98 | |
| 99 | return 0; |
| 100 | } |
| 101 | |
| 102 | /* we can't grab the goofy sem lock from inside wait_event, so we use |
| 103 | * memory barriers to make sure that we'll see the null task before |
| 104 | * being woken up */ |
| 105 | static int ocfs2_recovery_thread_running(struct ocfs2_super *osb) |
| 106 | { |
| 107 | mb(); |
| 108 | return osb->recovery_thread_task != NULL; |
| 109 | } |
| 110 | |
| 111 | void ocfs2_recovery_exit(struct ocfs2_super *osb) |
| 112 | { |
| 113 | struct ocfs2_recovery_map *rm; |
| 114 | |
| 115 | /* disable any new recovery threads and wait for any currently |
| 116 | * running ones to exit. Do this before setting the vol_state. */ |
| 117 | mutex_lock(&osb->recovery_lock); |
| 118 | osb->disable_recovery = 1; |
| 119 | mutex_unlock(&osb->recovery_lock); |
| 120 | wait_event(osb->recovery_event, !ocfs2_recovery_thread_running(osb)); |
| 121 | |
| 122 | /* At this point, we know that no more recovery threads can be |
| 123 | * launched, so wait for any recovery completion work to |
| 124 | * complete. */ |
| 125 | flush_workqueue(ocfs2_wq); |
| 126 | |
| 127 | /* |
| 128 | * Now that recovery is shut down, and the osb is about to be |
| 129 | * freed, the osb_lock is not taken here. |
| 130 | */ |
| 131 | rm = osb->recovery_map; |
| 132 | /* XXX: Should we bug if there are dirty entries? */ |
| 133 | |
| 134 | kfree(rm); |
| 135 | } |
| 136 | |
| 137 | static int __ocfs2_recovery_map_test(struct ocfs2_super *osb, |
| 138 | unsigned int node_num) |
| 139 | { |
| 140 | int i; |
| 141 | struct ocfs2_recovery_map *rm = osb->recovery_map; |
| 142 | |
| 143 | assert_spin_locked(&osb->osb_lock); |
| 144 | |
| 145 | for (i = 0; i < rm->rm_used; i++) { |
| 146 | if (rm->rm_entries[i] == node_num) |
| 147 | return 1; |
| 148 | } |
| 149 | |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | /* Behaves like test-and-set. Returns the previous value */ |
| 154 | static int ocfs2_recovery_map_set(struct ocfs2_super *osb, |
| 155 | unsigned int node_num) |
| 156 | { |
| 157 | struct ocfs2_recovery_map *rm = osb->recovery_map; |
| 158 | |
| 159 | spin_lock(&osb->osb_lock); |
| 160 | if (__ocfs2_recovery_map_test(osb, node_num)) { |
| 161 | spin_unlock(&osb->osb_lock); |
| 162 | return 1; |
| 163 | } |
| 164 | |
| 165 | /* XXX: Can this be exploited? Not from o2dlm... */ |
| 166 | BUG_ON(rm->rm_used >= osb->max_slots); |
| 167 | |
| 168 | rm->rm_entries[rm->rm_used] = node_num; |
| 169 | rm->rm_used++; |
| 170 | spin_unlock(&osb->osb_lock); |
| 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | static void ocfs2_recovery_map_clear(struct ocfs2_super *osb, |
| 176 | unsigned int node_num) |
| 177 | { |
| 178 | int i; |
| 179 | struct ocfs2_recovery_map *rm = osb->recovery_map; |
| 180 | |
| 181 | spin_lock(&osb->osb_lock); |
| 182 | |
| 183 | for (i = 0; i < rm->rm_used; i++) { |
| 184 | if (rm->rm_entries[i] == node_num) |
| 185 | break; |
| 186 | } |
| 187 | |
| 188 | if (i < rm->rm_used) { |
| 189 | /* XXX: be careful with the pointer math */ |
| 190 | memmove(&(rm->rm_entries[i]), &(rm->rm_entries[i + 1]), |
| 191 | (rm->rm_used - i - 1) * sizeof(unsigned int)); |
| 192 | rm->rm_used--; |
| 193 | } |
| 194 | |
| 195 | spin_unlock(&osb->osb_lock); |
| 196 | } |
| 197 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 198 | static int ocfs2_commit_cache(struct ocfs2_super *osb) |
| 199 | { |
| 200 | int status = 0; |
| 201 | unsigned int flushed; |
| 202 | unsigned long old_id; |
| 203 | struct ocfs2_journal *journal = NULL; |
| 204 | |
| 205 | mlog_entry_void(); |
| 206 | |
| 207 | journal = osb->journal; |
| 208 | |
| 209 | /* Flush all pending commits and checkpoint the journal. */ |
| 210 | down_write(&journal->j_trans_barrier); |
| 211 | |
| 212 | if (atomic_read(&journal->j_num_trans) == 0) { |
| 213 | up_write(&journal->j_trans_barrier); |
| 214 | mlog(0, "No transactions for me to flush!\n"); |
| 215 | goto finally; |
| 216 | } |
| 217 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 218 | jbd2_journal_lock_updates(journal->j_journal); |
| 219 | status = jbd2_journal_flush(journal->j_journal); |
| 220 | jbd2_journal_unlock_updates(journal->j_journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 221 | if (status < 0) { |
| 222 | up_write(&journal->j_trans_barrier); |
| 223 | mlog_errno(status); |
| 224 | goto finally; |
| 225 | } |
| 226 | |
| 227 | old_id = ocfs2_inc_trans_id(journal); |
| 228 | |
| 229 | flushed = atomic_read(&journal->j_num_trans); |
| 230 | atomic_set(&journal->j_num_trans, 0); |
| 231 | up_write(&journal->j_trans_barrier); |
| 232 | |
| 233 | mlog(0, "commit_thread: flushed transaction %lu (%u handles)\n", |
| 234 | journal->j_trans_id, flushed); |
| 235 | |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 236 | ocfs2_wake_downconvert_thread(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 237 | wake_up(&journal->j_checkpointed); |
| 238 | finally: |
| 239 | mlog_exit(status); |
| 240 | return status; |
| 241 | } |
| 242 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 243 | /* pass it NULL and it will allocate a new handle object for you. If |
| 244 | * you pass it a handle however, it may still return error, in which |
| 245 | * case it has free'd the passed handle for you. */ |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 246 | handle_t *ocfs2_start_trans(struct ocfs2_super *osb, int max_buffs) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 247 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 248 | journal_t *journal = osb->journal->j_journal; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 249 | handle_t *handle; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 250 | |
Eric Sesterhenn / snakebyte | ebdec83 | 2006-01-27 10:32:52 +0100 | [diff] [blame] | 251 | BUG_ON(!osb || !osb->journal->j_journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 252 | |
Mark Fasheh | 65eff9c | 2006-10-09 17:26:22 -0700 | [diff] [blame] | 253 | if (ocfs2_is_hard_readonly(osb)) |
| 254 | return ERR_PTR(-EROFS); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 255 | |
| 256 | BUG_ON(osb->journal->j_state == OCFS2_JOURNAL_FREE); |
| 257 | BUG_ON(max_buffs <= 0); |
| 258 | |
Jan Kara | 90e86a6 | 2008-08-27 22:30:28 +0200 | [diff] [blame^] | 259 | /* Nested transaction? Just return the handle... */ |
| 260 | if (journal_current_handle()) |
| 261 | return jbd2_journal_start(journal, max_buffs); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 262 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 263 | down_read(&osb->journal->j_trans_barrier); |
| 264 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 265 | handle = jbd2_journal_start(journal, max_buffs); |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 266 | if (IS_ERR(handle)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 267 | up_read(&osb->journal->j_trans_barrier); |
| 268 | |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 269 | mlog_errno(PTR_ERR(handle)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 270 | |
| 271 | if (is_journal_aborted(journal)) { |
| 272 | ocfs2_abort(osb->sb, "Detected aborted journal"); |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 273 | handle = ERR_PTR(-EROFS); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 274 | } |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 275 | } else { |
| 276 | if (!ocfs2_mount_local(osb)) |
| 277 | atomic_inc(&(osb->journal->j_num_trans)); |
| 278 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 279 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 280 | return handle; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 281 | } |
| 282 | |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 283 | int ocfs2_commit_trans(struct ocfs2_super *osb, |
| 284 | handle_t *handle) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 285 | { |
Jan Kara | 90e86a6 | 2008-08-27 22:30:28 +0200 | [diff] [blame^] | 286 | int ret, nested; |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 287 | struct ocfs2_journal *journal = osb->journal; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 288 | |
| 289 | BUG_ON(!handle); |
| 290 | |
Jan Kara | 90e86a6 | 2008-08-27 22:30:28 +0200 | [diff] [blame^] | 291 | nested = handle->h_ref > 1; |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 292 | ret = jbd2_journal_stop(handle); |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 293 | if (ret < 0) |
| 294 | mlog_errno(ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 295 | |
Jan Kara | 90e86a6 | 2008-08-27 22:30:28 +0200 | [diff] [blame^] | 296 | if (!nested) |
| 297 | up_read(&journal->j_trans_barrier); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 298 | |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 299 | return ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | /* |
| 303 | * 'nblocks' is what you want to add to the current |
| 304 | * transaction. extend_trans will either extend the current handle by |
| 305 | * nblocks, or commit it and start a new one with nblocks credits. |
| 306 | * |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 307 | * This might call jbd2_journal_restart() which will commit dirty buffers |
Mark Fasheh | e8aed34 | 2007-12-03 16:43:01 -0800 | [diff] [blame] | 308 | * and then restart the transaction. Before calling |
| 309 | * ocfs2_extend_trans(), any changed blocks should have been |
| 310 | * dirtied. After calling it, all blocks which need to be changed must |
| 311 | * go through another set of journal_access/journal_dirty calls. |
| 312 | * |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 313 | * WARNING: This will not release any semaphores or disk locks taken |
| 314 | * during the transaction, so make sure they were taken *before* |
| 315 | * start_trans or we'll have ordering deadlocks. |
| 316 | * |
| 317 | * WARNING2: Note that we do *not* drop j_trans_barrier here. This is |
| 318 | * good because transaction ids haven't yet been recorded on the |
| 319 | * cluster locks associated with this handle. |
| 320 | */ |
Mark Fasheh | 1fc5814 | 2006-10-05 14:15:36 -0700 | [diff] [blame] | 321 | int ocfs2_extend_trans(handle_t *handle, int nblocks) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 322 | { |
| 323 | int status; |
| 324 | |
| 325 | BUG_ON(!handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 326 | BUG_ON(!nblocks); |
| 327 | |
| 328 | mlog_entry_void(); |
| 329 | |
| 330 | mlog(0, "Trying to extend transaction by %d blocks\n", nblocks); |
| 331 | |
Joel Becker | e407e39 | 2008-06-12 22:35:39 -0700 | [diff] [blame] | 332 | #ifdef CONFIG_OCFS2_DEBUG_FS |
Mark Fasheh | 0879c58 | 2007-12-03 16:42:19 -0800 | [diff] [blame] | 333 | status = 1; |
| 334 | #else |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 335 | status = jbd2_journal_extend(handle, nblocks); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 336 | if (status < 0) { |
| 337 | mlog_errno(status); |
| 338 | goto bail; |
| 339 | } |
Mark Fasheh | 0879c58 | 2007-12-03 16:42:19 -0800 | [diff] [blame] | 340 | #endif |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 341 | |
| 342 | if (status > 0) { |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 343 | mlog(0, |
| 344 | "jbd2_journal_extend failed, trying " |
| 345 | "jbd2_journal_restart\n"); |
| 346 | status = jbd2_journal_restart(handle, nblocks); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 347 | if (status < 0) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 348 | mlog_errno(status); |
| 349 | goto bail; |
| 350 | } |
Mark Fasheh | 01ddf1e | 2006-10-05 13:54:39 -0700 | [diff] [blame] | 351 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 352 | |
| 353 | status = 0; |
| 354 | bail: |
| 355 | |
| 356 | mlog_exit(status); |
| 357 | return status; |
| 358 | } |
| 359 | |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 360 | int ocfs2_journal_access(handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 361 | struct inode *inode, |
| 362 | struct buffer_head *bh, |
| 363 | int type) |
| 364 | { |
| 365 | int status; |
| 366 | |
| 367 | BUG_ON(!inode); |
| 368 | BUG_ON(!handle); |
| 369 | BUG_ON(!bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 370 | |
Badari Pulavarty | 205f87f | 2006-03-26 01:38:00 -0800 | [diff] [blame] | 371 | mlog_entry("bh->b_blocknr=%llu, type=%d (\"%s\"), bh->b_size = %zu\n", |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 372 | (unsigned long long)bh->b_blocknr, type, |
| 373 | (type == OCFS2_JOURNAL_ACCESS_CREATE) ? |
| 374 | "OCFS2_JOURNAL_ACCESS_CREATE" : |
| 375 | "OCFS2_JOURNAL_ACCESS_WRITE", |
| 376 | bh->b_size); |
| 377 | |
| 378 | /* we can safely remove this assertion after testing. */ |
| 379 | if (!buffer_uptodate(bh)) { |
| 380 | mlog(ML_ERROR, "giving me a buffer that's not uptodate!\n"); |
| 381 | mlog(ML_ERROR, "b_blocknr=%llu\n", |
| 382 | (unsigned long long)bh->b_blocknr); |
| 383 | BUG(); |
| 384 | } |
| 385 | |
| 386 | /* Set the current transaction information on the inode so |
| 387 | * that the locking code knows whether it can drop it's locks |
| 388 | * on this inode or not. We're protected from the commit |
| 389 | * thread updating the current transaction id until |
| 390 | * ocfs2_commit_trans() because ocfs2_start_trans() took |
| 391 | * j_trans_barrier for us. */ |
| 392 | ocfs2_set_inode_lock_trans(OCFS2_SB(inode->i_sb)->journal, inode); |
| 393 | |
Mark Fasheh | 251b6ec | 2006-01-10 15:41:43 -0800 | [diff] [blame] | 394 | mutex_lock(&OCFS2_I(inode)->ip_io_mutex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 395 | switch (type) { |
| 396 | case OCFS2_JOURNAL_ACCESS_CREATE: |
| 397 | case OCFS2_JOURNAL_ACCESS_WRITE: |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 398 | status = jbd2_journal_get_write_access(handle, bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 399 | break; |
| 400 | |
| 401 | case OCFS2_JOURNAL_ACCESS_UNDO: |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 402 | status = jbd2_journal_get_undo_access(handle, bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 403 | break; |
| 404 | |
| 405 | default: |
| 406 | status = -EINVAL; |
| 407 | mlog(ML_ERROR, "Uknown access type!\n"); |
| 408 | } |
Mark Fasheh | 251b6ec | 2006-01-10 15:41:43 -0800 | [diff] [blame] | 409 | mutex_unlock(&OCFS2_I(inode)->ip_io_mutex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 410 | |
| 411 | if (status < 0) |
| 412 | mlog(ML_ERROR, "Error %d getting %d access to buffer!\n", |
| 413 | status, type); |
| 414 | |
| 415 | mlog_exit(status); |
| 416 | return status; |
| 417 | } |
| 418 | |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 419 | int ocfs2_journal_dirty(handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 420 | struct buffer_head *bh) |
| 421 | { |
| 422 | int status; |
| 423 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 424 | mlog_entry("(bh->b_blocknr=%llu)\n", |
| 425 | (unsigned long long)bh->b_blocknr); |
| 426 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 427 | status = jbd2_journal_dirty_metadata(handle, bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 428 | if (status < 0) |
| 429 | mlog(ML_ERROR, "Could not dirty metadata buffer. " |
| 430 | "(bh->b_blocknr=%llu)\n", |
| 431 | (unsigned long long)bh->b_blocknr); |
| 432 | |
| 433 | mlog_exit(status); |
| 434 | return status; |
| 435 | } |
| 436 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 437 | #define OCFS2_DEFAULT_COMMIT_INTERVAL (HZ * JBD2_DEFAULT_MAX_COMMIT_AGE) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 438 | |
| 439 | void ocfs2_set_journal_params(struct ocfs2_super *osb) |
| 440 | { |
| 441 | journal_t *journal = osb->journal->j_journal; |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 442 | unsigned long commit_interval = OCFS2_DEFAULT_COMMIT_INTERVAL; |
| 443 | |
| 444 | if (osb->osb_commit_interval) |
| 445 | commit_interval = osb->osb_commit_interval; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 446 | |
| 447 | spin_lock(&journal->j_state_lock); |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 448 | journal->j_commit_interval = commit_interval; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 449 | if (osb->s_mount_opt & OCFS2_MOUNT_BARRIER) |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 450 | journal->j_flags |= JBD2_BARRIER; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 451 | else |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 452 | journal->j_flags &= ~JBD2_BARRIER; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 453 | spin_unlock(&journal->j_state_lock); |
| 454 | } |
| 455 | |
| 456 | int ocfs2_journal_init(struct ocfs2_journal *journal, int *dirty) |
| 457 | { |
| 458 | int status = -1; |
| 459 | struct inode *inode = NULL; /* the journal inode */ |
| 460 | journal_t *j_journal = NULL; |
| 461 | struct ocfs2_dinode *di = NULL; |
| 462 | struct buffer_head *bh = NULL; |
| 463 | struct ocfs2_super *osb; |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 464 | int inode_lock = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 465 | |
| 466 | mlog_entry_void(); |
| 467 | |
| 468 | BUG_ON(!journal); |
| 469 | |
| 470 | osb = journal->j_osb; |
| 471 | |
| 472 | /* already have the inode for our journal */ |
| 473 | inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE, |
| 474 | osb->slot_num); |
| 475 | if (inode == NULL) { |
| 476 | status = -EACCES; |
| 477 | mlog_errno(status); |
| 478 | goto done; |
| 479 | } |
| 480 | if (is_bad_inode(inode)) { |
| 481 | mlog(ML_ERROR, "access error (bad inode)\n"); |
| 482 | iput(inode); |
| 483 | inode = NULL; |
| 484 | status = -EACCES; |
| 485 | goto done; |
| 486 | } |
| 487 | |
| 488 | SET_INODE_JOURNAL(inode); |
| 489 | OCFS2_I(inode)->ip_open_count++; |
| 490 | |
Mark Fasheh | 6eff579 | 2006-01-18 10:31:47 -0800 | [diff] [blame] | 491 | /* Skip recovery waits here - journal inode metadata never |
| 492 | * changes in a live cluster so it can be considered an |
| 493 | * exception to the rule. */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 494 | status = ocfs2_inode_lock_full(inode, &bh, 1, OCFS2_META_LOCK_RECOVERY); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 495 | if (status < 0) { |
| 496 | if (status != -ERESTARTSYS) |
| 497 | mlog(ML_ERROR, "Could not get lock on journal!\n"); |
| 498 | goto done; |
| 499 | } |
| 500 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 501 | inode_lock = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 502 | di = (struct ocfs2_dinode *)bh->b_data; |
| 503 | |
| 504 | if (inode->i_size < OCFS2_MIN_JOURNAL_SIZE) { |
| 505 | mlog(ML_ERROR, "Journal file size (%lld) is too small!\n", |
| 506 | inode->i_size); |
| 507 | status = -EINVAL; |
| 508 | goto done; |
| 509 | } |
| 510 | |
| 511 | mlog(0, "inode->i_size = %lld\n", inode->i_size); |
Andrew Morton | 5515eff | 2006-03-26 01:37:53 -0800 | [diff] [blame] | 512 | mlog(0, "inode->i_blocks = %llu\n", |
| 513 | (unsigned long long)inode->i_blocks); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 514 | mlog(0, "inode->ip_clusters = %u\n", OCFS2_I(inode)->ip_clusters); |
| 515 | |
| 516 | /* call the kernels journal init function now */ |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 517 | j_journal = jbd2_journal_init_inode(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 518 | if (j_journal == NULL) { |
| 519 | mlog(ML_ERROR, "Linux journal layer error\n"); |
| 520 | status = -EINVAL; |
| 521 | goto done; |
| 522 | } |
| 523 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 524 | mlog(0, "Returned from jbd2_journal_init_inode\n"); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 525 | mlog(0, "j_journal->j_maxlen = %u\n", j_journal->j_maxlen); |
| 526 | |
| 527 | *dirty = (le32_to_cpu(di->id1.journal1.ij_flags) & |
| 528 | OCFS2_JOURNAL_DIRTY_FL); |
| 529 | |
| 530 | journal->j_journal = j_journal; |
| 531 | journal->j_inode = inode; |
| 532 | journal->j_bh = bh; |
| 533 | |
| 534 | ocfs2_set_journal_params(osb); |
| 535 | |
| 536 | journal->j_state = OCFS2_JOURNAL_LOADED; |
| 537 | |
| 538 | status = 0; |
| 539 | done: |
| 540 | if (status < 0) { |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 541 | if (inode_lock) |
| 542 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 543 | brelse(bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 544 | if (inode) { |
| 545 | OCFS2_I(inode)->ip_open_count--; |
| 546 | iput(inode); |
| 547 | } |
| 548 | } |
| 549 | |
| 550 | mlog_exit(status); |
| 551 | return status; |
| 552 | } |
| 553 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 554 | static void ocfs2_bump_recovery_generation(struct ocfs2_dinode *di) |
| 555 | { |
| 556 | le32_add_cpu(&(di->id1.journal1.ij_recovery_generation), 1); |
| 557 | } |
| 558 | |
| 559 | static u32 ocfs2_get_recovery_generation(struct ocfs2_dinode *di) |
| 560 | { |
| 561 | return le32_to_cpu(di->id1.journal1.ij_recovery_generation); |
| 562 | } |
| 563 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 564 | static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb, |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 565 | int dirty, int replayed) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 566 | { |
| 567 | int status; |
| 568 | unsigned int flags; |
| 569 | struct ocfs2_journal *journal = osb->journal; |
| 570 | struct buffer_head *bh = journal->j_bh; |
| 571 | struct ocfs2_dinode *fe; |
| 572 | |
| 573 | mlog_entry_void(); |
| 574 | |
| 575 | fe = (struct ocfs2_dinode *)bh->b_data; |
Joel Becker | 10995aa | 2008-11-13 14:49:12 -0800 | [diff] [blame] | 576 | |
| 577 | /* The journal bh on the osb always comes from ocfs2_journal_init() |
| 578 | * and was validated there inside ocfs2_inode_lock_full(). It's a |
| 579 | * code bug if we mess it up. */ |
| 580 | BUG_ON(!OCFS2_IS_VALID_DINODE(fe)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 581 | |
| 582 | flags = le32_to_cpu(fe->id1.journal1.ij_flags); |
| 583 | if (dirty) |
| 584 | flags |= OCFS2_JOURNAL_DIRTY_FL; |
| 585 | else |
| 586 | flags &= ~OCFS2_JOURNAL_DIRTY_FL; |
| 587 | fe->id1.journal1.ij_flags = cpu_to_le32(flags); |
| 588 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 589 | if (replayed) |
| 590 | ocfs2_bump_recovery_generation(fe); |
| 591 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 592 | status = ocfs2_write_block(osb, bh, journal->j_inode); |
| 593 | if (status < 0) |
| 594 | mlog_errno(status); |
| 595 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 596 | mlog_exit(status); |
| 597 | return status; |
| 598 | } |
| 599 | |
| 600 | /* |
| 601 | * If the journal has been kmalloc'd it needs to be freed after this |
| 602 | * call. |
| 603 | */ |
| 604 | void ocfs2_journal_shutdown(struct ocfs2_super *osb) |
| 605 | { |
| 606 | struct ocfs2_journal *journal = NULL; |
| 607 | int status = 0; |
| 608 | struct inode *inode = NULL; |
| 609 | int num_running_trans = 0; |
| 610 | |
| 611 | mlog_entry_void(); |
| 612 | |
Eric Sesterhenn / snakebyte | ebdec83 | 2006-01-27 10:32:52 +0100 | [diff] [blame] | 613 | BUG_ON(!osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 614 | |
| 615 | journal = osb->journal; |
| 616 | if (!journal) |
| 617 | goto done; |
| 618 | |
| 619 | inode = journal->j_inode; |
| 620 | |
| 621 | if (journal->j_state != OCFS2_JOURNAL_LOADED) |
| 622 | goto done; |
| 623 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 624 | /* need to inc inode use count - jbd2_journal_destroy will iput. */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 625 | if (!igrab(inode)) |
| 626 | BUG(); |
| 627 | |
| 628 | num_running_trans = atomic_read(&(osb->journal->j_num_trans)); |
| 629 | if (num_running_trans > 0) |
| 630 | mlog(0, "Shutting down journal: must wait on %d " |
| 631 | "running transactions!\n", |
| 632 | num_running_trans); |
| 633 | |
| 634 | /* Do a commit_cache here. It will flush our journal, *and* |
| 635 | * release any locks that are still held. |
| 636 | * set the SHUTDOWN flag and release the trans lock. |
| 637 | * the commit thread will take the trans lock for us below. */ |
| 638 | journal->j_state = OCFS2_JOURNAL_IN_SHUTDOWN; |
| 639 | |
| 640 | /* The OCFS2_JOURNAL_IN_SHUTDOWN will signal to commit_cache to not |
| 641 | * drop the trans_lock (which we want to hold until we |
| 642 | * completely destroy the journal. */ |
| 643 | if (osb->commit_task) { |
| 644 | /* Wait for the commit thread */ |
| 645 | mlog(0, "Waiting for ocfs2commit to exit....\n"); |
| 646 | kthread_stop(osb->commit_task); |
| 647 | osb->commit_task = NULL; |
| 648 | } |
| 649 | |
| 650 | BUG_ON(atomic_read(&(osb->journal->j_num_trans)) != 0); |
| 651 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 652 | if (ocfs2_mount_local(osb)) { |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 653 | jbd2_journal_lock_updates(journal->j_journal); |
| 654 | status = jbd2_journal_flush(journal->j_journal); |
| 655 | jbd2_journal_unlock_updates(journal->j_journal); |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 656 | if (status < 0) |
| 657 | mlog_errno(status); |
| 658 | } |
| 659 | |
| 660 | if (status == 0) { |
| 661 | /* |
| 662 | * Do not toggle if flush was unsuccessful otherwise |
| 663 | * will leave dirty metadata in a "clean" journal |
| 664 | */ |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 665 | status = ocfs2_journal_toggle_dirty(osb, 0, 0); |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 666 | if (status < 0) |
| 667 | mlog_errno(status); |
| 668 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 669 | |
| 670 | /* Shutdown the kernel journal system */ |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 671 | jbd2_journal_destroy(journal->j_journal); |
Sunil Mushran | ae0dff6 | 2008-10-22 13:24:29 -0700 | [diff] [blame] | 672 | journal->j_journal = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 673 | |
| 674 | OCFS2_I(inode)->ip_open_count--; |
| 675 | |
| 676 | /* unlock our journal */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 677 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 678 | |
| 679 | brelse(journal->j_bh); |
| 680 | journal->j_bh = NULL; |
| 681 | |
| 682 | journal->j_state = OCFS2_JOURNAL_FREE; |
| 683 | |
| 684 | // up_write(&journal->j_trans_barrier); |
| 685 | done: |
| 686 | if (inode) |
| 687 | iput(inode); |
| 688 | mlog_exit_void(); |
| 689 | } |
| 690 | |
| 691 | static void ocfs2_clear_journal_error(struct super_block *sb, |
| 692 | journal_t *journal, |
| 693 | int slot) |
| 694 | { |
| 695 | int olderr; |
| 696 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 697 | olderr = jbd2_journal_errno(journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 698 | if (olderr) { |
| 699 | mlog(ML_ERROR, "File system error %d recorded in " |
| 700 | "journal %u.\n", olderr, slot); |
| 701 | mlog(ML_ERROR, "File system on device %s needs checking.\n", |
| 702 | sb->s_id); |
| 703 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 704 | jbd2_journal_ack_err(journal); |
| 705 | jbd2_journal_clear_err(journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 706 | } |
| 707 | } |
| 708 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 709 | int ocfs2_journal_load(struct ocfs2_journal *journal, int local, int replayed) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 710 | { |
| 711 | int status = 0; |
| 712 | struct ocfs2_super *osb; |
| 713 | |
| 714 | mlog_entry_void(); |
| 715 | |
Julia Lawall | b1f3550 | 2008-03-04 15:21:05 -0800 | [diff] [blame] | 716 | BUG_ON(!journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 717 | |
| 718 | osb = journal->j_osb; |
| 719 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 720 | status = jbd2_journal_load(journal->j_journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 721 | if (status < 0) { |
| 722 | mlog(ML_ERROR, "Failed to load journal!\n"); |
| 723 | goto done; |
| 724 | } |
| 725 | |
| 726 | ocfs2_clear_journal_error(osb->sb, journal->j_journal, osb->slot_num); |
| 727 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 728 | status = ocfs2_journal_toggle_dirty(osb, 1, replayed); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 729 | if (status < 0) { |
| 730 | mlog_errno(status); |
| 731 | goto done; |
| 732 | } |
| 733 | |
| 734 | /* Launch the commit thread */ |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 735 | if (!local) { |
| 736 | osb->commit_task = kthread_run(ocfs2_commit_thread, osb, |
| 737 | "ocfs2cmt"); |
| 738 | if (IS_ERR(osb->commit_task)) { |
| 739 | status = PTR_ERR(osb->commit_task); |
| 740 | osb->commit_task = NULL; |
| 741 | mlog(ML_ERROR, "unable to launch ocfs2commit thread, " |
| 742 | "error=%d", status); |
| 743 | goto done; |
| 744 | } |
| 745 | } else |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 746 | osb->commit_task = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 747 | |
| 748 | done: |
| 749 | mlog_exit(status); |
| 750 | return status; |
| 751 | } |
| 752 | |
| 753 | |
| 754 | /* 'full' flag tells us whether we clear out all blocks or if we just |
| 755 | * mark the journal clean */ |
| 756 | int ocfs2_journal_wipe(struct ocfs2_journal *journal, int full) |
| 757 | { |
| 758 | int status; |
| 759 | |
| 760 | mlog_entry_void(); |
| 761 | |
Eric Sesterhenn / snakebyte | ebdec83 | 2006-01-27 10:32:52 +0100 | [diff] [blame] | 762 | BUG_ON(!journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 763 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 764 | status = jbd2_journal_wipe(journal->j_journal, full); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 765 | if (status < 0) { |
| 766 | mlog_errno(status); |
| 767 | goto bail; |
| 768 | } |
| 769 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 770 | status = ocfs2_journal_toggle_dirty(journal->j_osb, 0, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 771 | if (status < 0) |
| 772 | mlog_errno(status); |
| 773 | |
| 774 | bail: |
| 775 | mlog_exit(status); |
| 776 | return status; |
| 777 | } |
| 778 | |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 779 | static int ocfs2_recovery_completed(struct ocfs2_super *osb) |
| 780 | { |
| 781 | int empty; |
| 782 | struct ocfs2_recovery_map *rm = osb->recovery_map; |
| 783 | |
| 784 | spin_lock(&osb->osb_lock); |
| 785 | empty = (rm->rm_used == 0); |
| 786 | spin_unlock(&osb->osb_lock); |
| 787 | |
| 788 | return empty; |
| 789 | } |
| 790 | |
| 791 | void ocfs2_wait_for_recovery(struct ocfs2_super *osb) |
| 792 | { |
| 793 | wait_event(osb->recovery_event, ocfs2_recovery_completed(osb)); |
| 794 | } |
| 795 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 796 | /* |
| 797 | * JBD Might read a cached version of another nodes journal file. We |
| 798 | * don't want this as this file changes often and we get no |
| 799 | * notification on those changes. The only way to be sure that we've |
| 800 | * got the most up to date version of those blocks then is to force |
| 801 | * read them off disk. Just searching through the buffer cache won't |
| 802 | * work as there may be pages backing this file which are still marked |
| 803 | * up to date. We know things can't change on this file underneath us |
| 804 | * as we have the lock by now :) |
| 805 | */ |
| 806 | static int ocfs2_force_read_journal(struct inode *inode) |
| 807 | { |
| 808 | int status = 0; |
Mark Fasheh | 4f902c3 | 2007-03-09 16:26:50 -0800 | [diff] [blame] | 809 | int i; |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 810 | u64 v_blkno, p_blkno, p_blocks, num_blocks; |
Mark Fasheh | 4f902c3 | 2007-03-09 16:26:50 -0800 | [diff] [blame] | 811 | #define CONCURRENT_JOURNAL_FILL 32ULL |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 812 | struct buffer_head *bhs[CONCURRENT_JOURNAL_FILL]; |
| 813 | |
| 814 | mlog_entry_void(); |
| 815 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 816 | memset(bhs, 0, sizeof(struct buffer_head *) * CONCURRENT_JOURNAL_FILL); |
| 817 | |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 818 | num_blocks = ocfs2_blocks_for_bytes(inode->i_sb, inode->i_size); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 819 | v_blkno = 0; |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 820 | while (v_blkno < num_blocks) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 821 | status = ocfs2_extent_map_get_blocks(inode, v_blkno, |
Mark Fasheh | 49cb8d2 | 2007-03-09 16:21:46 -0800 | [diff] [blame] | 822 | &p_blkno, &p_blocks, NULL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 823 | if (status < 0) { |
| 824 | mlog_errno(status); |
| 825 | goto bail; |
| 826 | } |
| 827 | |
| 828 | if (p_blocks > CONCURRENT_JOURNAL_FILL) |
| 829 | p_blocks = CONCURRENT_JOURNAL_FILL; |
| 830 | |
Mark Fasheh | dd4a2c2 | 2006-04-12 14:24:05 -0700 | [diff] [blame] | 831 | /* We are reading journal data which should not |
| 832 | * be put in the uptodate cache */ |
Joel Becker | da1e909 | 2008-10-09 17:20:29 -0700 | [diff] [blame] | 833 | status = ocfs2_read_blocks_sync(OCFS2_SB(inode->i_sb), |
| 834 | p_blkno, p_blocks, bhs); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 835 | if (status < 0) { |
| 836 | mlog_errno(status); |
| 837 | goto bail; |
| 838 | } |
| 839 | |
| 840 | for(i = 0; i < p_blocks; i++) { |
| 841 | brelse(bhs[i]); |
| 842 | bhs[i] = NULL; |
| 843 | } |
| 844 | |
| 845 | v_blkno += p_blocks; |
| 846 | } |
| 847 | |
| 848 | bail: |
| 849 | for(i = 0; i < CONCURRENT_JOURNAL_FILL; i++) |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 850 | brelse(bhs[i]); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 851 | mlog_exit(status); |
| 852 | return status; |
| 853 | } |
| 854 | |
| 855 | struct ocfs2_la_recovery_item { |
| 856 | struct list_head lri_list; |
| 857 | int lri_slot; |
| 858 | struct ocfs2_dinode *lri_la_dinode; |
| 859 | struct ocfs2_dinode *lri_tl_dinode; |
| 860 | }; |
| 861 | |
| 862 | /* Does the second half of the recovery process. By this point, the |
| 863 | * node is marked clean and can actually be considered recovered, |
| 864 | * hence it's no longer in the recovery map, but there's still some |
| 865 | * cleanup we can do which shouldn't happen within the recovery thread |
| 866 | * as locking in that context becomes very difficult if we are to take |
| 867 | * recovering nodes into account. |
| 868 | * |
| 869 | * NOTE: This function can and will sleep on recovery of other nodes |
| 870 | * during cluster locking, just like any other ocfs2 process. |
| 871 | */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 872 | void ocfs2_complete_recovery(struct work_struct *work) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 873 | { |
| 874 | int ret; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 875 | struct ocfs2_journal *journal = |
| 876 | container_of(work, struct ocfs2_journal, j_recovery_work); |
| 877 | struct ocfs2_super *osb = journal->j_osb; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 878 | struct ocfs2_dinode *la_dinode, *tl_dinode; |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 879 | struct ocfs2_la_recovery_item *item, *n; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 880 | LIST_HEAD(tmp_la_list); |
| 881 | |
| 882 | mlog_entry_void(); |
| 883 | |
| 884 | mlog(0, "completing recovery from keventd\n"); |
| 885 | |
| 886 | spin_lock(&journal->j_lock); |
| 887 | list_splice_init(&journal->j_la_cleanups, &tmp_la_list); |
| 888 | spin_unlock(&journal->j_lock); |
| 889 | |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 890 | list_for_each_entry_safe(item, n, &tmp_la_list, lri_list) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 891 | list_del_init(&item->lri_list); |
| 892 | |
| 893 | mlog(0, "Complete recovery for slot %d\n", item->lri_slot); |
| 894 | |
| 895 | la_dinode = item->lri_la_dinode; |
| 896 | if (la_dinode) { |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 897 | mlog(0, "Clean up local alloc %llu\n", |
Mark Fasheh | 1ca1a11 | 2007-04-27 16:01:25 -0700 | [diff] [blame] | 898 | (unsigned long long)le64_to_cpu(la_dinode->i_blkno)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 899 | |
| 900 | ret = ocfs2_complete_local_alloc_recovery(osb, |
| 901 | la_dinode); |
| 902 | if (ret < 0) |
| 903 | mlog_errno(ret); |
| 904 | |
| 905 | kfree(la_dinode); |
| 906 | } |
| 907 | |
| 908 | tl_dinode = item->lri_tl_dinode; |
| 909 | if (tl_dinode) { |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 910 | mlog(0, "Clean up truncate log %llu\n", |
Mark Fasheh | 1ca1a11 | 2007-04-27 16:01:25 -0700 | [diff] [blame] | 911 | (unsigned long long)le64_to_cpu(tl_dinode->i_blkno)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 912 | |
| 913 | ret = ocfs2_complete_truncate_log_recovery(osb, |
| 914 | tl_dinode); |
| 915 | if (ret < 0) |
| 916 | mlog_errno(ret); |
| 917 | |
| 918 | kfree(tl_dinode); |
| 919 | } |
| 920 | |
| 921 | ret = ocfs2_recover_orphans(osb, item->lri_slot); |
| 922 | if (ret < 0) |
| 923 | mlog_errno(ret); |
| 924 | |
| 925 | kfree(item); |
| 926 | } |
| 927 | |
| 928 | mlog(0, "Recovery completion\n"); |
| 929 | mlog_exit_void(); |
| 930 | } |
| 931 | |
| 932 | /* NOTE: This function always eats your references to la_dinode and |
| 933 | * tl_dinode, either manually on error, or by passing them to |
| 934 | * ocfs2_complete_recovery */ |
| 935 | static void ocfs2_queue_recovery_completion(struct ocfs2_journal *journal, |
| 936 | int slot_num, |
| 937 | struct ocfs2_dinode *la_dinode, |
| 938 | struct ocfs2_dinode *tl_dinode) |
| 939 | { |
| 940 | struct ocfs2_la_recovery_item *item; |
| 941 | |
Sunil Mushran | afae00ab | 2006-04-12 14:37:00 -0700 | [diff] [blame] | 942 | item = kmalloc(sizeof(struct ocfs2_la_recovery_item), GFP_NOFS); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 943 | if (!item) { |
| 944 | /* Though we wish to avoid it, we are in fact safe in |
| 945 | * skipping local alloc cleanup as fsck.ocfs2 is more |
| 946 | * than capable of reclaiming unused space. */ |
| 947 | if (la_dinode) |
| 948 | kfree(la_dinode); |
| 949 | |
| 950 | if (tl_dinode) |
| 951 | kfree(tl_dinode); |
| 952 | |
| 953 | mlog_errno(-ENOMEM); |
| 954 | return; |
| 955 | } |
| 956 | |
| 957 | INIT_LIST_HEAD(&item->lri_list); |
| 958 | item->lri_la_dinode = la_dinode; |
| 959 | item->lri_slot = slot_num; |
| 960 | item->lri_tl_dinode = tl_dinode; |
| 961 | |
| 962 | spin_lock(&journal->j_lock); |
| 963 | list_add_tail(&item->lri_list, &journal->j_la_cleanups); |
| 964 | queue_work(ocfs2_wq, &journal->j_recovery_work); |
| 965 | spin_unlock(&journal->j_lock); |
| 966 | } |
| 967 | |
| 968 | /* Called by the mount code to queue recovery the last part of |
| 969 | * recovery for it's own slot. */ |
| 970 | void ocfs2_complete_mount_recovery(struct ocfs2_super *osb) |
| 971 | { |
| 972 | struct ocfs2_journal *journal = osb->journal; |
| 973 | |
| 974 | if (osb->dirty) { |
| 975 | /* No need to queue up our truncate_log as regular |
| 976 | * cleanup will catch that. */ |
| 977 | ocfs2_queue_recovery_completion(journal, |
| 978 | osb->slot_num, |
| 979 | osb->local_alloc_copy, |
| 980 | NULL); |
| 981 | ocfs2_schedule_truncate_log_flush(osb, 0); |
| 982 | |
| 983 | osb->local_alloc_copy = NULL; |
| 984 | osb->dirty = 0; |
| 985 | } |
| 986 | } |
| 987 | |
| 988 | static int __ocfs2_recovery_thread(void *arg) |
| 989 | { |
| 990 | int status, node_num; |
| 991 | struct ocfs2_super *osb = arg; |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 992 | struct ocfs2_recovery_map *rm = osb->recovery_map; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 993 | |
| 994 | mlog_entry_void(); |
| 995 | |
| 996 | status = ocfs2_wait_on_mount(osb); |
| 997 | if (status < 0) { |
| 998 | goto bail; |
| 999 | } |
| 1000 | |
| 1001 | restart: |
| 1002 | status = ocfs2_super_lock(osb, 1); |
| 1003 | if (status < 0) { |
| 1004 | mlog_errno(status); |
| 1005 | goto bail; |
| 1006 | } |
| 1007 | |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 1008 | spin_lock(&osb->osb_lock); |
| 1009 | while (rm->rm_used) { |
| 1010 | /* It's always safe to remove entry zero, as we won't |
| 1011 | * clear it until ocfs2_recover_node() has succeeded. */ |
| 1012 | node_num = rm->rm_entries[0]; |
| 1013 | spin_unlock(&osb->osb_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1014 | |
| 1015 | status = ocfs2_recover_node(osb, node_num); |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 1016 | if (!status) { |
| 1017 | ocfs2_recovery_map_clear(osb, node_num); |
| 1018 | } else { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1019 | mlog(ML_ERROR, |
| 1020 | "Error %d recovering node %d on device (%u,%u)!\n", |
| 1021 | status, node_num, |
| 1022 | MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev)); |
| 1023 | mlog(ML_ERROR, "Volume requires unmount.\n"); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1024 | } |
| 1025 | |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 1026 | spin_lock(&osb->osb_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1027 | } |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 1028 | spin_unlock(&osb->osb_lock); |
| 1029 | mlog(0, "All nodes recovered\n"); |
| 1030 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1031 | /* Refresh all journal recovery generations from disk */ |
| 1032 | status = ocfs2_check_journals_nolocks(osb); |
| 1033 | status = (status == -EROFS) ? 0 : status; |
| 1034 | if (status < 0) |
| 1035 | mlog_errno(status); |
| 1036 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1037 | ocfs2_super_unlock(osb, 1); |
| 1038 | |
| 1039 | /* We always run recovery on our own orphan dir - the dead |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 1040 | * node(s) may have disallowd a previos inode delete. Re-processing |
| 1041 | * is therefore required. */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1042 | ocfs2_queue_recovery_completion(osb->journal, osb->slot_num, NULL, |
| 1043 | NULL); |
| 1044 | |
| 1045 | bail: |
Arjan van de Ven | c74ec2f | 2006-01-13 21:54:23 -0800 | [diff] [blame] | 1046 | mutex_lock(&osb->recovery_lock); |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 1047 | if (!status && !ocfs2_recovery_completed(osb)) { |
Arjan van de Ven | c74ec2f | 2006-01-13 21:54:23 -0800 | [diff] [blame] | 1048 | mutex_unlock(&osb->recovery_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1049 | goto restart; |
| 1050 | } |
| 1051 | |
| 1052 | osb->recovery_thread_task = NULL; |
| 1053 | mb(); /* sync with ocfs2_recovery_thread_running */ |
| 1054 | wake_up(&osb->recovery_event); |
| 1055 | |
Arjan van de Ven | c74ec2f | 2006-01-13 21:54:23 -0800 | [diff] [blame] | 1056 | mutex_unlock(&osb->recovery_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1057 | |
| 1058 | mlog_exit(status); |
| 1059 | /* no one is callint kthread_stop() for us so the kthread() api |
| 1060 | * requires that we call do_exit(). And it isn't exported, but |
| 1061 | * complete_and_exit() seems to be a minimal wrapper around it. */ |
| 1062 | complete_and_exit(NULL, status); |
| 1063 | return status; |
| 1064 | } |
| 1065 | |
| 1066 | void ocfs2_recovery_thread(struct ocfs2_super *osb, int node_num) |
| 1067 | { |
| 1068 | mlog_entry("(node_num=%d, osb->node_num = %d)\n", |
| 1069 | node_num, osb->node_num); |
| 1070 | |
Arjan van de Ven | c74ec2f | 2006-01-13 21:54:23 -0800 | [diff] [blame] | 1071 | mutex_lock(&osb->recovery_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1072 | if (osb->disable_recovery) |
| 1073 | goto out; |
| 1074 | |
| 1075 | /* People waiting on recovery will wait on |
| 1076 | * the recovery map to empty. */ |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 1077 | if (ocfs2_recovery_map_set(osb, node_num)) |
| 1078 | mlog(0, "node %d already in recovery map.\n", node_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1079 | |
| 1080 | mlog(0, "starting recovery thread...\n"); |
| 1081 | |
| 1082 | if (osb->recovery_thread_task) |
| 1083 | goto out; |
| 1084 | |
| 1085 | osb->recovery_thread_task = kthread_run(__ocfs2_recovery_thread, osb, |
Mark Fasheh | 7842704 | 2006-05-04 12:03:26 -0700 | [diff] [blame] | 1086 | "ocfs2rec"); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1087 | if (IS_ERR(osb->recovery_thread_task)) { |
| 1088 | mlog_errno((int)PTR_ERR(osb->recovery_thread_task)); |
| 1089 | osb->recovery_thread_task = NULL; |
| 1090 | } |
| 1091 | |
| 1092 | out: |
Arjan van de Ven | c74ec2f | 2006-01-13 21:54:23 -0800 | [diff] [blame] | 1093 | mutex_unlock(&osb->recovery_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1094 | wake_up(&osb->recovery_event); |
| 1095 | |
| 1096 | mlog_exit_void(); |
| 1097 | } |
| 1098 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1099 | static int ocfs2_read_journal_inode(struct ocfs2_super *osb, |
| 1100 | int slot_num, |
| 1101 | struct buffer_head **bh, |
| 1102 | struct inode **ret_inode) |
| 1103 | { |
| 1104 | int status = -EACCES; |
| 1105 | struct inode *inode = NULL; |
| 1106 | |
| 1107 | BUG_ON(slot_num >= osb->max_slots); |
| 1108 | |
| 1109 | inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE, |
| 1110 | slot_num); |
| 1111 | if (!inode || is_bad_inode(inode)) { |
| 1112 | mlog_errno(status); |
| 1113 | goto bail; |
| 1114 | } |
| 1115 | SET_INODE_JOURNAL(inode); |
| 1116 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 1117 | status = ocfs2_read_inode_block_full(inode, bh, OCFS2_BH_IGNORE_CACHE); |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1118 | if (status < 0) { |
| 1119 | mlog_errno(status); |
| 1120 | goto bail; |
| 1121 | } |
| 1122 | |
| 1123 | status = 0; |
| 1124 | |
| 1125 | bail: |
| 1126 | if (inode) { |
| 1127 | if (status || !ret_inode) |
| 1128 | iput(inode); |
| 1129 | else |
| 1130 | *ret_inode = inode; |
| 1131 | } |
| 1132 | return status; |
| 1133 | } |
| 1134 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1135 | /* Does the actual journal replay and marks the journal inode as |
| 1136 | * clean. Will only replay if the journal inode is marked dirty. */ |
| 1137 | static int ocfs2_replay_journal(struct ocfs2_super *osb, |
| 1138 | int node_num, |
| 1139 | int slot_num) |
| 1140 | { |
| 1141 | int status; |
| 1142 | int got_lock = 0; |
| 1143 | unsigned int flags; |
| 1144 | struct inode *inode = NULL; |
| 1145 | struct ocfs2_dinode *fe; |
| 1146 | journal_t *journal = NULL; |
| 1147 | struct buffer_head *bh = NULL; |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1148 | u32 slot_reco_gen; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1149 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1150 | status = ocfs2_read_journal_inode(osb, slot_num, &bh, &inode); |
| 1151 | if (status) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1152 | mlog_errno(status); |
| 1153 | goto done; |
| 1154 | } |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1155 | |
| 1156 | fe = (struct ocfs2_dinode *)bh->b_data; |
| 1157 | slot_reco_gen = ocfs2_get_recovery_generation(fe); |
| 1158 | brelse(bh); |
| 1159 | bh = NULL; |
| 1160 | |
| 1161 | /* |
| 1162 | * As the fs recovery is asynchronous, there is a small chance that |
| 1163 | * another node mounted (and recovered) the slot before the recovery |
| 1164 | * thread could get the lock. To handle that, we dirty read the journal |
| 1165 | * inode for that slot to get the recovery generation. If it is |
| 1166 | * different than what we expected, the slot has been recovered. |
| 1167 | * If not, it needs recovery. |
| 1168 | */ |
| 1169 | if (osb->slot_recovery_generations[slot_num] != slot_reco_gen) { |
| 1170 | mlog(0, "Slot %u already recovered (old/new=%u/%u)\n", slot_num, |
| 1171 | osb->slot_recovery_generations[slot_num], slot_reco_gen); |
| 1172 | osb->slot_recovery_generations[slot_num] = slot_reco_gen; |
| 1173 | status = -EBUSY; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1174 | goto done; |
| 1175 | } |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1176 | |
| 1177 | /* Continue with recovery as the journal has not yet been recovered */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1178 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1179 | status = ocfs2_inode_lock_full(inode, &bh, 1, OCFS2_META_LOCK_RECOVERY); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1180 | if (status < 0) { |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1181 | mlog(0, "status returned from ocfs2_inode_lock=%d\n", status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1182 | if (status != -ERESTARTSYS) |
| 1183 | mlog(ML_ERROR, "Could not lock journal!\n"); |
| 1184 | goto done; |
| 1185 | } |
| 1186 | got_lock = 1; |
| 1187 | |
| 1188 | fe = (struct ocfs2_dinode *) bh->b_data; |
| 1189 | |
| 1190 | flags = le32_to_cpu(fe->id1.journal1.ij_flags); |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1191 | slot_reco_gen = ocfs2_get_recovery_generation(fe); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1192 | |
| 1193 | if (!(flags & OCFS2_JOURNAL_DIRTY_FL)) { |
| 1194 | mlog(0, "No recovery required for node %d\n", node_num); |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1195 | /* Refresh recovery generation for the slot */ |
| 1196 | osb->slot_recovery_generations[slot_num] = slot_reco_gen; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1197 | goto done; |
| 1198 | } |
| 1199 | |
| 1200 | mlog(ML_NOTICE, "Recovering node %d from slot %d on device (%u,%u)\n", |
| 1201 | node_num, slot_num, |
| 1202 | MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev)); |
| 1203 | |
| 1204 | OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters); |
| 1205 | |
| 1206 | status = ocfs2_force_read_journal(inode); |
| 1207 | if (status < 0) { |
| 1208 | mlog_errno(status); |
| 1209 | goto done; |
| 1210 | } |
| 1211 | |
| 1212 | mlog(0, "calling journal_init_inode\n"); |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 1213 | journal = jbd2_journal_init_inode(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1214 | if (journal == NULL) { |
| 1215 | mlog(ML_ERROR, "Linux journal layer error\n"); |
| 1216 | status = -EIO; |
| 1217 | goto done; |
| 1218 | } |
| 1219 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 1220 | status = jbd2_journal_load(journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1221 | if (status < 0) { |
| 1222 | mlog_errno(status); |
| 1223 | if (!igrab(inode)) |
| 1224 | BUG(); |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 1225 | jbd2_journal_destroy(journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1226 | goto done; |
| 1227 | } |
| 1228 | |
| 1229 | ocfs2_clear_journal_error(osb->sb, journal, slot_num); |
| 1230 | |
| 1231 | /* wipe the journal */ |
| 1232 | mlog(0, "flushing the journal.\n"); |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 1233 | jbd2_journal_lock_updates(journal); |
| 1234 | status = jbd2_journal_flush(journal); |
| 1235 | jbd2_journal_unlock_updates(journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1236 | if (status < 0) |
| 1237 | mlog_errno(status); |
| 1238 | |
| 1239 | /* This will mark the node clean */ |
| 1240 | flags = le32_to_cpu(fe->id1.journal1.ij_flags); |
| 1241 | flags &= ~OCFS2_JOURNAL_DIRTY_FL; |
| 1242 | fe->id1.journal1.ij_flags = cpu_to_le32(flags); |
| 1243 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1244 | /* Increment recovery generation to indicate successful recovery */ |
| 1245 | ocfs2_bump_recovery_generation(fe); |
| 1246 | osb->slot_recovery_generations[slot_num] = |
| 1247 | ocfs2_get_recovery_generation(fe); |
| 1248 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1249 | status = ocfs2_write_block(osb, bh, inode); |
| 1250 | if (status < 0) |
| 1251 | mlog_errno(status); |
| 1252 | |
| 1253 | if (!igrab(inode)) |
| 1254 | BUG(); |
| 1255 | |
Joel Becker | 2b4e30f | 2008-09-03 20:03:41 -0700 | [diff] [blame] | 1256 | jbd2_journal_destroy(journal); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1257 | |
| 1258 | done: |
| 1259 | /* drop the lock on this nodes journal */ |
| 1260 | if (got_lock) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1261 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1262 | |
| 1263 | if (inode) |
| 1264 | iput(inode); |
| 1265 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1266 | brelse(bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1267 | |
| 1268 | mlog_exit(status); |
| 1269 | return status; |
| 1270 | } |
| 1271 | |
| 1272 | /* |
| 1273 | * Do the most important parts of node recovery: |
| 1274 | * - Replay it's journal |
| 1275 | * - Stamp a clean local allocator file |
| 1276 | * - Stamp a clean truncate log |
| 1277 | * - Mark the node clean |
| 1278 | * |
| 1279 | * If this function completes without error, a node in OCFS2 can be |
| 1280 | * said to have been safely recovered. As a result, failure during the |
| 1281 | * second part of a nodes recovery process (local alloc recovery) is |
| 1282 | * far less concerning. |
| 1283 | */ |
| 1284 | static int ocfs2_recover_node(struct ocfs2_super *osb, |
| 1285 | int node_num) |
| 1286 | { |
| 1287 | int status = 0; |
| 1288 | int slot_num; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1289 | struct ocfs2_dinode *la_copy = NULL; |
| 1290 | struct ocfs2_dinode *tl_copy = NULL; |
| 1291 | |
| 1292 | mlog_entry("(node_num=%d, osb->node_num = %d)\n", |
| 1293 | node_num, osb->node_num); |
| 1294 | |
| 1295 | mlog(0, "checking node %d\n", node_num); |
| 1296 | |
| 1297 | /* Should not ever be called to recover ourselves -- in that |
| 1298 | * case we should've called ocfs2_journal_load instead. */ |
Eric Sesterhenn / snakebyte | ebdec83 | 2006-01-27 10:32:52 +0100 | [diff] [blame] | 1299 | BUG_ON(osb->node_num == node_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1300 | |
Joel Becker | d85b20e | 2008-02-01 12:01:05 -0800 | [diff] [blame] | 1301 | slot_num = ocfs2_node_num_to_slot(osb, node_num); |
| 1302 | if (slot_num == -ENOENT) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1303 | status = 0; |
| 1304 | mlog(0, "no slot for this node, so no recovery required.\n"); |
| 1305 | goto done; |
| 1306 | } |
| 1307 | |
| 1308 | mlog(0, "node %d was using slot %d\n", node_num, slot_num); |
| 1309 | |
| 1310 | status = ocfs2_replay_journal(osb, node_num, slot_num); |
| 1311 | if (status < 0) { |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1312 | if (status == -EBUSY) { |
| 1313 | mlog(0, "Skipping recovery for slot %u (node %u) " |
| 1314 | "as another node has recovered it\n", slot_num, |
| 1315 | node_num); |
| 1316 | status = 0; |
| 1317 | goto done; |
| 1318 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1319 | mlog_errno(status); |
| 1320 | goto done; |
| 1321 | } |
| 1322 | |
| 1323 | /* Stamp a clean local alloc file AFTER recovering the journal... */ |
| 1324 | status = ocfs2_begin_local_alloc_recovery(osb, slot_num, &la_copy); |
| 1325 | if (status < 0) { |
| 1326 | mlog_errno(status); |
| 1327 | goto done; |
| 1328 | } |
| 1329 | |
| 1330 | /* An error from begin_truncate_log_recovery is not |
| 1331 | * serious enough to warrant halting the rest of |
| 1332 | * recovery. */ |
| 1333 | status = ocfs2_begin_truncate_log_recovery(osb, slot_num, &tl_copy); |
| 1334 | if (status < 0) |
| 1335 | mlog_errno(status); |
| 1336 | |
| 1337 | /* Likewise, this would be a strange but ultimately not so |
| 1338 | * harmful place to get an error... */ |
Mark Fasheh | 8e8a460 | 2008-02-01 11:59:09 -0800 | [diff] [blame] | 1339 | status = ocfs2_clear_slot(osb, slot_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1340 | if (status < 0) |
| 1341 | mlog_errno(status); |
| 1342 | |
| 1343 | /* This will kfree the memory pointed to by la_copy and tl_copy */ |
| 1344 | ocfs2_queue_recovery_completion(osb->journal, slot_num, la_copy, |
| 1345 | tl_copy); |
| 1346 | |
| 1347 | status = 0; |
| 1348 | done: |
| 1349 | |
| 1350 | mlog_exit(status); |
| 1351 | return status; |
| 1352 | } |
| 1353 | |
| 1354 | /* Test node liveness by trylocking his journal. If we get the lock, |
| 1355 | * we drop it here. Return 0 if we got the lock, -EAGAIN if node is |
| 1356 | * still alive (we couldn't get the lock) and < 0 on error. */ |
| 1357 | static int ocfs2_trylock_journal(struct ocfs2_super *osb, |
| 1358 | int slot_num) |
| 1359 | { |
| 1360 | int status, flags; |
| 1361 | struct inode *inode = NULL; |
| 1362 | |
| 1363 | inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE, |
| 1364 | slot_num); |
| 1365 | if (inode == NULL) { |
| 1366 | mlog(ML_ERROR, "access error\n"); |
| 1367 | status = -EACCES; |
| 1368 | goto bail; |
| 1369 | } |
| 1370 | if (is_bad_inode(inode)) { |
| 1371 | mlog(ML_ERROR, "access error (bad inode)\n"); |
| 1372 | iput(inode); |
| 1373 | inode = NULL; |
| 1374 | status = -EACCES; |
| 1375 | goto bail; |
| 1376 | } |
| 1377 | SET_INODE_JOURNAL(inode); |
| 1378 | |
| 1379 | flags = OCFS2_META_LOCK_RECOVERY | OCFS2_META_LOCK_NOQUEUE; |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1380 | status = ocfs2_inode_lock_full(inode, NULL, 1, flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1381 | if (status < 0) { |
| 1382 | if (status != -EAGAIN) |
| 1383 | mlog_errno(status); |
| 1384 | goto bail; |
| 1385 | } |
| 1386 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1387 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1388 | bail: |
| 1389 | if (inode) |
| 1390 | iput(inode); |
| 1391 | |
| 1392 | return status; |
| 1393 | } |
| 1394 | |
| 1395 | /* Call this underneath ocfs2_super_lock. It also assumes that the |
| 1396 | * slot info struct has been updated from disk. */ |
| 1397 | int ocfs2_mark_dead_nodes(struct ocfs2_super *osb) |
| 1398 | { |
Joel Becker | d85b20e | 2008-02-01 12:01:05 -0800 | [diff] [blame] | 1399 | unsigned int node_num; |
| 1400 | int status, i; |
Mark Fasheh | a1af7d1 | 2008-08-19 17:20:28 -0700 | [diff] [blame] | 1401 | u32 gen; |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1402 | struct buffer_head *bh = NULL; |
| 1403 | struct ocfs2_dinode *di; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1404 | |
| 1405 | /* This is called with the super block cluster lock, so we |
| 1406 | * know that the slot map can't change underneath us. */ |
| 1407 | |
Joel Becker | d85b20e | 2008-02-01 12:01:05 -0800 | [diff] [blame] | 1408 | for (i = 0; i < osb->max_slots; i++) { |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1409 | /* Read journal inode to get the recovery generation */ |
| 1410 | status = ocfs2_read_journal_inode(osb, i, &bh, NULL); |
| 1411 | if (status) { |
| 1412 | mlog_errno(status); |
| 1413 | goto bail; |
| 1414 | } |
| 1415 | di = (struct ocfs2_dinode *)bh->b_data; |
Mark Fasheh | a1af7d1 | 2008-08-19 17:20:28 -0700 | [diff] [blame] | 1416 | gen = ocfs2_get_recovery_generation(di); |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1417 | brelse(bh); |
| 1418 | bh = NULL; |
| 1419 | |
Mark Fasheh | a1af7d1 | 2008-08-19 17:20:28 -0700 | [diff] [blame] | 1420 | spin_lock(&osb->osb_lock); |
| 1421 | osb->slot_recovery_generations[i] = gen; |
| 1422 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1423 | mlog(0, "Slot %u recovery generation is %u\n", i, |
| 1424 | osb->slot_recovery_generations[i]); |
| 1425 | |
Mark Fasheh | a1af7d1 | 2008-08-19 17:20:28 -0700 | [diff] [blame] | 1426 | if (i == osb->slot_num) { |
| 1427 | spin_unlock(&osb->osb_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1428 | continue; |
Mark Fasheh | a1af7d1 | 2008-08-19 17:20:28 -0700 | [diff] [blame] | 1429 | } |
Joel Becker | d85b20e | 2008-02-01 12:01:05 -0800 | [diff] [blame] | 1430 | |
| 1431 | status = ocfs2_slot_to_node_num_locked(osb, i, &node_num); |
Mark Fasheh | a1af7d1 | 2008-08-19 17:20:28 -0700 | [diff] [blame] | 1432 | if (status == -ENOENT) { |
| 1433 | spin_unlock(&osb->osb_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1434 | continue; |
Mark Fasheh | a1af7d1 | 2008-08-19 17:20:28 -0700 | [diff] [blame] | 1435 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1436 | |
Mark Fasheh | a1af7d1 | 2008-08-19 17:20:28 -0700 | [diff] [blame] | 1437 | if (__ocfs2_recovery_map_test(osb, node_num)) { |
| 1438 | spin_unlock(&osb->osb_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1439 | continue; |
Mark Fasheh | a1af7d1 | 2008-08-19 17:20:28 -0700 | [diff] [blame] | 1440 | } |
Joel Becker | d85b20e | 2008-02-01 12:01:05 -0800 | [diff] [blame] | 1441 | spin_unlock(&osb->osb_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1442 | |
| 1443 | /* Ok, we have a slot occupied by another node which |
| 1444 | * is not in the recovery map. We trylock his journal |
| 1445 | * file here to test if he's alive. */ |
| 1446 | status = ocfs2_trylock_journal(osb, i); |
| 1447 | if (!status) { |
| 1448 | /* Since we're called from mount, we know that |
| 1449 | * the recovery thread can't race us on |
| 1450 | * setting / checking the recovery bits. */ |
| 1451 | ocfs2_recovery_thread(osb, node_num); |
| 1452 | } else if ((status < 0) && (status != -EAGAIN)) { |
| 1453 | mlog_errno(status); |
| 1454 | goto bail; |
| 1455 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1456 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1457 | |
| 1458 | status = 0; |
| 1459 | bail: |
| 1460 | mlog_exit(status); |
| 1461 | return status; |
| 1462 | } |
| 1463 | |
Mark Fasheh | 5eae5b9 | 2007-09-10 17:50:51 -0700 | [diff] [blame] | 1464 | struct ocfs2_orphan_filldir_priv { |
| 1465 | struct inode *head; |
| 1466 | struct ocfs2_super *osb; |
| 1467 | }; |
| 1468 | |
| 1469 | static int ocfs2_orphan_filldir(void *priv, const char *name, int name_len, |
| 1470 | loff_t pos, u64 ino, unsigned type) |
| 1471 | { |
| 1472 | struct ocfs2_orphan_filldir_priv *p = priv; |
| 1473 | struct inode *iter; |
| 1474 | |
| 1475 | if (name_len == 1 && !strncmp(".", name, 1)) |
| 1476 | return 0; |
| 1477 | if (name_len == 2 && !strncmp("..", name, 2)) |
| 1478 | return 0; |
| 1479 | |
| 1480 | /* Skip bad inodes so that recovery can continue */ |
| 1481 | iter = ocfs2_iget(p->osb, ino, |
Jan Kara | 5fa0613 | 2008-01-11 00:11:45 +0100 | [diff] [blame] | 1482 | OCFS2_FI_FLAG_ORPHAN_RECOVERY, 0); |
Mark Fasheh | 5eae5b9 | 2007-09-10 17:50:51 -0700 | [diff] [blame] | 1483 | if (IS_ERR(iter)) |
| 1484 | return 0; |
| 1485 | |
| 1486 | mlog(0, "queue orphan %llu\n", |
| 1487 | (unsigned long long)OCFS2_I(iter)->ip_blkno); |
| 1488 | /* No locking is required for the next_orphan queue as there |
| 1489 | * is only ever a single process doing orphan recovery. */ |
| 1490 | OCFS2_I(iter)->ip_next_orphan = p->head; |
| 1491 | p->head = iter; |
| 1492 | |
| 1493 | return 0; |
| 1494 | } |
| 1495 | |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 1496 | static int ocfs2_queue_orphans(struct ocfs2_super *osb, |
| 1497 | int slot, |
| 1498 | struct inode **head) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1499 | { |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 1500 | int status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1501 | struct inode *orphan_dir_inode = NULL; |
Mark Fasheh | 5eae5b9 | 2007-09-10 17:50:51 -0700 | [diff] [blame] | 1502 | struct ocfs2_orphan_filldir_priv priv; |
| 1503 | loff_t pos = 0; |
| 1504 | |
| 1505 | priv.osb = osb; |
| 1506 | priv.head = *head; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1507 | |
| 1508 | orphan_dir_inode = ocfs2_get_system_file_inode(osb, |
| 1509 | ORPHAN_DIR_SYSTEM_INODE, |
| 1510 | slot); |
| 1511 | if (!orphan_dir_inode) { |
| 1512 | status = -ENOENT; |
| 1513 | mlog_errno(status); |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 1514 | return status; |
| 1515 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1516 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1517 | mutex_lock(&orphan_dir_inode->i_mutex); |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1518 | status = ocfs2_inode_lock(orphan_dir_inode, NULL, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1519 | if (status < 0) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1520 | mlog_errno(status); |
| 1521 | goto out; |
| 1522 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1523 | |
Mark Fasheh | 5eae5b9 | 2007-09-10 17:50:51 -0700 | [diff] [blame] | 1524 | status = ocfs2_dir_foreach(orphan_dir_inode, &pos, &priv, |
| 1525 | ocfs2_orphan_filldir); |
| 1526 | if (status) { |
| 1527 | mlog_errno(status); |
Mark Fasheh | a86370f | 2007-12-03 14:06:23 -0800 | [diff] [blame] | 1528 | goto out_cluster; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1529 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1530 | |
Mark Fasheh | 5eae5b9 | 2007-09-10 17:50:51 -0700 | [diff] [blame] | 1531 | *head = priv.head; |
| 1532 | |
Mark Fasheh | a86370f | 2007-12-03 14:06:23 -0800 | [diff] [blame] | 1533 | out_cluster: |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1534 | ocfs2_inode_unlock(orphan_dir_inode, 0); |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 1535 | out: |
| 1536 | mutex_unlock(&orphan_dir_inode->i_mutex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1537 | iput(orphan_dir_inode); |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 1538 | return status; |
| 1539 | } |
| 1540 | |
| 1541 | static int ocfs2_orphan_recovery_can_continue(struct ocfs2_super *osb, |
| 1542 | int slot) |
| 1543 | { |
| 1544 | int ret; |
| 1545 | |
| 1546 | spin_lock(&osb->osb_lock); |
| 1547 | ret = !osb->osb_orphan_wipes[slot]; |
| 1548 | spin_unlock(&osb->osb_lock); |
| 1549 | return ret; |
| 1550 | } |
| 1551 | |
| 1552 | static void ocfs2_mark_recovering_orphan_dir(struct ocfs2_super *osb, |
| 1553 | int slot) |
| 1554 | { |
| 1555 | spin_lock(&osb->osb_lock); |
| 1556 | /* Mark ourselves such that new processes in delete_inode() |
| 1557 | * know to quit early. */ |
| 1558 | ocfs2_node_map_set_bit(osb, &osb->osb_recovering_orphan_dirs, slot); |
| 1559 | while (osb->osb_orphan_wipes[slot]) { |
| 1560 | /* If any processes are already in the middle of an |
| 1561 | * orphan wipe on this dir, then we need to wait for |
| 1562 | * them. */ |
| 1563 | spin_unlock(&osb->osb_lock); |
| 1564 | wait_event_interruptible(osb->osb_wipe_event, |
| 1565 | ocfs2_orphan_recovery_can_continue(osb, slot)); |
| 1566 | spin_lock(&osb->osb_lock); |
| 1567 | } |
| 1568 | spin_unlock(&osb->osb_lock); |
| 1569 | } |
| 1570 | |
| 1571 | static void ocfs2_clear_recovering_orphan_dir(struct ocfs2_super *osb, |
| 1572 | int slot) |
| 1573 | { |
| 1574 | ocfs2_node_map_clear_bit(osb, &osb->osb_recovering_orphan_dirs, slot); |
| 1575 | } |
| 1576 | |
| 1577 | /* |
| 1578 | * Orphan recovery. Each mounted node has it's own orphan dir which we |
| 1579 | * must run during recovery. Our strategy here is to build a list of |
| 1580 | * the inodes in the orphan dir and iget/iput them. The VFS does |
| 1581 | * (most) of the rest of the work. |
| 1582 | * |
| 1583 | * Orphan recovery can happen at any time, not just mount so we have a |
| 1584 | * couple of extra considerations. |
| 1585 | * |
| 1586 | * - We grab as many inodes as we can under the orphan dir lock - |
| 1587 | * doing iget() outside the orphan dir risks getting a reference on |
| 1588 | * an invalid inode. |
| 1589 | * - We must be sure not to deadlock with other processes on the |
| 1590 | * system wanting to run delete_inode(). This can happen when they go |
| 1591 | * to lock the orphan dir and the orphan recovery process attempts to |
| 1592 | * iget() inside the orphan dir lock. This can be avoided by |
| 1593 | * advertising our state to ocfs2_delete_inode(). |
| 1594 | */ |
| 1595 | static int ocfs2_recover_orphans(struct ocfs2_super *osb, |
| 1596 | int slot) |
| 1597 | { |
| 1598 | int ret = 0; |
| 1599 | struct inode *inode = NULL; |
| 1600 | struct inode *iter; |
| 1601 | struct ocfs2_inode_info *oi; |
| 1602 | |
| 1603 | mlog(0, "Recover inodes from orphan dir in slot %d\n", slot); |
| 1604 | |
| 1605 | ocfs2_mark_recovering_orphan_dir(osb, slot); |
| 1606 | ret = ocfs2_queue_orphans(osb, slot, &inode); |
| 1607 | ocfs2_clear_recovering_orphan_dir(osb, slot); |
| 1608 | |
| 1609 | /* Error here should be noted, but we want to continue with as |
| 1610 | * many queued inodes as we've got. */ |
| 1611 | if (ret) |
| 1612 | mlog_errno(ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1613 | |
| 1614 | while (inode) { |
| 1615 | oi = OCFS2_I(inode); |
Mark Fasheh | b069705 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1616 | mlog(0, "iput orphan %llu\n", (unsigned long long)oi->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1617 | |
| 1618 | iter = oi->ip_next_orphan; |
| 1619 | |
| 1620 | spin_lock(&oi->ip_lock); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 1621 | /* The remote delete code may have set these on the |
| 1622 | * assumption that the other node would wipe them |
| 1623 | * successfully. If they are still in the node's |
| 1624 | * orphan dir, we need to reset that state. */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1625 | oi->ip_flags &= ~(OCFS2_INODE_DELETED|OCFS2_INODE_SKIP_DELETE); |
| 1626 | |
| 1627 | /* Set the proper information to get us going into |
| 1628 | * ocfs2_delete_inode. */ |
| 1629 | oi->ip_flags |= OCFS2_INODE_MAYBE_ORPHANED; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1630 | spin_unlock(&oi->ip_lock); |
| 1631 | |
| 1632 | iput(inode); |
| 1633 | |
| 1634 | inode = iter; |
| 1635 | } |
| 1636 | |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 1637 | return ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1638 | } |
| 1639 | |
| 1640 | static int ocfs2_wait_on_mount(struct ocfs2_super *osb) |
| 1641 | { |
| 1642 | /* This check is good because ocfs2 will wait on our recovery |
| 1643 | * thread before changing it to something other than MOUNTED |
| 1644 | * or DISABLED. */ |
| 1645 | wait_event(osb->osb_mount_event, |
| 1646 | atomic_read(&osb->vol_state) == VOLUME_MOUNTED || |
| 1647 | atomic_read(&osb->vol_state) == VOLUME_DISABLED); |
| 1648 | |
| 1649 | /* If there's an error on mount, then we may never get to the |
| 1650 | * MOUNTED flag, but this is set right before |
| 1651 | * dismount_volume() so we can trust it. */ |
| 1652 | if (atomic_read(&osb->vol_state) == VOLUME_DISABLED) { |
| 1653 | mlog(0, "mount error, exiting!\n"); |
| 1654 | return -EBUSY; |
| 1655 | } |
| 1656 | |
| 1657 | return 0; |
| 1658 | } |
| 1659 | |
| 1660 | static int ocfs2_commit_thread(void *arg) |
| 1661 | { |
| 1662 | int status; |
| 1663 | struct ocfs2_super *osb = arg; |
| 1664 | struct ocfs2_journal *journal = osb->journal; |
| 1665 | |
| 1666 | /* we can trust j_num_trans here because _should_stop() is only set in |
| 1667 | * shutdown and nobody other than ourselves should be able to start |
| 1668 | * transactions. committing on shutdown might take a few iterations |
| 1669 | * as final transactions put deleted inodes on the list */ |
| 1670 | while (!(kthread_should_stop() && |
| 1671 | atomic_read(&journal->j_num_trans) == 0)) { |
| 1672 | |
Mark Fasheh | 745ae8ba | 2006-02-09 13:23:39 -0800 | [diff] [blame] | 1673 | wait_event_interruptible(osb->checkpoint_event, |
| 1674 | atomic_read(&journal->j_num_trans) |
| 1675 | || kthread_should_stop()); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1676 | |
| 1677 | status = ocfs2_commit_cache(osb); |
| 1678 | if (status < 0) |
| 1679 | mlog_errno(status); |
| 1680 | |
| 1681 | if (kthread_should_stop() && atomic_read(&journal->j_num_trans)){ |
| 1682 | mlog(ML_KTHREAD, |
| 1683 | "commit_thread: %u transactions pending on " |
| 1684 | "shutdown\n", |
| 1685 | atomic_read(&journal->j_num_trans)); |
| 1686 | } |
| 1687 | } |
| 1688 | |
| 1689 | return 0; |
| 1690 | } |
| 1691 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1692 | /* Reads all the journal inodes without taking any cluster locks. Used |
| 1693 | * for hard readonly access to determine whether any journal requires |
| 1694 | * recovery. Also used to refresh the recovery generation numbers after |
| 1695 | * a journal has been recovered by another node. |
| 1696 | */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1697 | int ocfs2_check_journals_nolocks(struct ocfs2_super *osb) |
| 1698 | { |
| 1699 | int ret = 0; |
| 1700 | unsigned int slot; |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1701 | struct buffer_head *di_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1702 | struct ocfs2_dinode *di; |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1703 | int journal_dirty = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1704 | |
| 1705 | for(slot = 0; slot < osb->max_slots; slot++) { |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1706 | ret = ocfs2_read_journal_inode(osb, slot, &di_bh, NULL); |
| 1707 | if (ret) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1708 | mlog_errno(ret); |
| 1709 | goto out; |
| 1710 | } |
| 1711 | |
| 1712 | di = (struct ocfs2_dinode *) di_bh->b_data; |
| 1713 | |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1714 | osb->slot_recovery_generations[slot] = |
| 1715 | ocfs2_get_recovery_generation(di); |
| 1716 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1717 | if (le32_to_cpu(di->id1.journal1.ij_flags) & |
| 1718 | OCFS2_JOURNAL_DIRTY_FL) |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1719 | journal_dirty = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1720 | |
| 1721 | brelse(di_bh); |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1722 | di_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1723 | } |
| 1724 | |
| 1725 | out: |
Sunil Mushran | 539d826 | 2008-07-14 17:31:10 -0700 | [diff] [blame] | 1726 | if (journal_dirty) |
| 1727 | ret = -EROFS; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1728 | return ret; |
| 1729 | } |