]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/ocfs2/journal.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394...
[net-next-2.6.git] / fs / ocfs2 / journal.c
CommitLineData
ccd979bd
MF
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"
38#include "dlmglue.h"
39#include "extent_map.h"
40#include "heartbeat.h"
41#include "inode.h"
42#include "journal.h"
43#include "localalloc.h"
44#include "namei.h"
45#include "slot_map.h"
46#include "super.h"
47#include "vote.h"
48#include "sysfile.h"
49
50#include "buffer_head_io.h"
51
34af946a 52DEFINE_SPINLOCK(trans_inc_lock);
ccd979bd
MF
53
54static int ocfs2_force_read_journal(struct inode *inode);
55static int ocfs2_recover_node(struct ocfs2_super *osb,
56 int node_num);
57static int __ocfs2_recovery_thread(void *arg);
58static int ocfs2_commit_cache(struct ocfs2_super *osb);
59static int ocfs2_wait_on_mount(struct ocfs2_super *osb);
ccd979bd
MF
60static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb,
61 int dirty);
62static int ocfs2_trylock_journal(struct ocfs2_super *osb,
63 int slot_num);
64static int ocfs2_recover_orphans(struct ocfs2_super *osb,
65 int slot);
66static int ocfs2_commit_thread(void *arg);
67
68static int ocfs2_commit_cache(struct ocfs2_super *osb)
69{
70 int status = 0;
71 unsigned int flushed;
72 unsigned long old_id;
73 struct ocfs2_journal *journal = NULL;
74
75 mlog_entry_void();
76
77 journal = osb->journal;
78
79 /* Flush all pending commits and checkpoint the journal. */
80 down_write(&journal->j_trans_barrier);
81
82 if (atomic_read(&journal->j_num_trans) == 0) {
83 up_write(&journal->j_trans_barrier);
84 mlog(0, "No transactions for me to flush!\n");
85 goto finally;
86 }
87
88 journal_lock_updates(journal->j_journal);
89 status = journal_flush(journal->j_journal);
90 journal_unlock_updates(journal->j_journal);
91 if (status < 0) {
92 up_write(&journal->j_trans_barrier);
93 mlog_errno(status);
94 goto finally;
95 }
96
97 old_id = ocfs2_inc_trans_id(journal);
98
99 flushed = atomic_read(&journal->j_num_trans);
100 atomic_set(&journal->j_num_trans, 0);
101 up_write(&journal->j_trans_barrier);
102
103 mlog(0, "commit_thread: flushed transaction %lu (%u handles)\n",
104 journal->j_trans_id, flushed);
105
106 ocfs2_kick_vote_thread(osb);
107 wake_up(&journal->j_checkpointed);
108finally:
109 mlog_exit(status);
110 return status;
111}
112
ccd979bd
MF
113/* pass it NULL and it will allocate a new handle object for you. If
114 * you pass it a handle however, it may still return error, in which
115 * case it has free'd the passed handle for you. */
1fabe148 116handle_t *ocfs2_start_trans(struct ocfs2_super *osb, int max_buffs)
ccd979bd 117{
ccd979bd 118 journal_t *journal = osb->journal->j_journal;
1fabe148 119 handle_t *handle;
ccd979bd 120
ebdec83b 121 BUG_ON(!osb || !osb->journal->j_journal);
ccd979bd 122
65eff9cc
MF
123 if (ocfs2_is_hard_readonly(osb))
124 return ERR_PTR(-EROFS);
ccd979bd
MF
125
126 BUG_ON(osb->journal->j_state == OCFS2_JOURNAL_FREE);
127 BUG_ON(max_buffs <= 0);
128
129 /* JBD might support this, but our journalling code doesn't yet. */
130 if (journal_current_handle()) {
131 mlog(ML_ERROR, "Recursive transaction attempted!\n");
132 BUG();
133 }
134
ccd979bd
MF
135 down_read(&osb->journal->j_trans_barrier);
136
1fabe148
MF
137 handle = journal_start(journal, max_buffs);
138 if (IS_ERR(handle)) {
ccd979bd
MF
139 up_read(&osb->journal->j_trans_barrier);
140
1fabe148 141 mlog_errno(PTR_ERR(handle));
ccd979bd
MF
142
143 if (is_journal_aborted(journal)) {
144 ocfs2_abort(osb->sb, "Detected aborted journal");
1fabe148 145 handle = ERR_PTR(-EROFS);
ccd979bd 146 }
1fabe148
MF
147 } else
148 atomic_inc(&(osb->journal->j_num_trans));
ccd979bd 149
ccd979bd 150 return handle;
ccd979bd
MF
151}
152
1fabe148
MF
153int ocfs2_commit_trans(struct ocfs2_super *osb,
154 handle_t *handle)
ccd979bd 155{
1fabe148 156 int ret;
02dc1af4 157 struct ocfs2_journal *journal = osb->journal;
ccd979bd
MF
158
159 BUG_ON(!handle);
160
1fabe148
MF
161 ret = journal_stop(handle);
162 if (ret < 0)
163 mlog_errno(ret);
ccd979bd
MF
164
165 up_read(&journal->j_trans_barrier);
166
1fabe148 167 return ret;
ccd979bd
MF
168}
169
170/*
171 * 'nblocks' is what you want to add to the current
172 * transaction. extend_trans will either extend the current handle by
173 * nblocks, or commit it and start a new one with nblocks credits.
174 *
175 * WARNING: This will not release any semaphores or disk locks taken
176 * during the transaction, so make sure they were taken *before*
177 * start_trans or we'll have ordering deadlocks.
178 *
179 * WARNING2: Note that we do *not* drop j_trans_barrier here. This is
180 * good because transaction ids haven't yet been recorded on the
181 * cluster locks associated with this handle.
182 */
1fc58146 183int ocfs2_extend_trans(handle_t *handle, int nblocks)
ccd979bd
MF
184{
185 int status;
186
187 BUG_ON(!handle);
ccd979bd
MF
188 BUG_ON(!nblocks);
189
190 mlog_entry_void();
191
192 mlog(0, "Trying to extend transaction by %d blocks\n", nblocks);
193
1fc58146 194 status = journal_extend(handle, nblocks);
ccd979bd
MF
195 if (status < 0) {
196 mlog_errno(status);
197 goto bail;
198 }
199
200 if (status > 0) {
201 mlog(0, "journal_extend failed, trying journal_restart\n");
1fc58146 202 status = journal_restart(handle, nblocks);
ccd979bd 203 if (status < 0) {
ccd979bd
MF
204 mlog_errno(status);
205 goto bail;
206 }
01ddf1e1 207 }
ccd979bd
MF
208
209 status = 0;
210bail:
211
212 mlog_exit(status);
213 return status;
214}
215
1fabe148 216int ocfs2_journal_access(handle_t *handle,
ccd979bd
MF
217 struct inode *inode,
218 struct buffer_head *bh,
219 int type)
220{
221 int status;
222
223 BUG_ON(!inode);
224 BUG_ON(!handle);
225 BUG_ON(!bh);
ccd979bd 226
205f87f6 227 mlog_entry("bh->b_blocknr=%llu, type=%d (\"%s\"), bh->b_size = %zu\n",
ccd979bd
MF
228 (unsigned long long)bh->b_blocknr, type,
229 (type == OCFS2_JOURNAL_ACCESS_CREATE) ?
230 "OCFS2_JOURNAL_ACCESS_CREATE" :
231 "OCFS2_JOURNAL_ACCESS_WRITE",
232 bh->b_size);
233
234 /* we can safely remove this assertion after testing. */
235 if (!buffer_uptodate(bh)) {
236 mlog(ML_ERROR, "giving me a buffer that's not uptodate!\n");
237 mlog(ML_ERROR, "b_blocknr=%llu\n",
238 (unsigned long long)bh->b_blocknr);
239 BUG();
240 }
241
242 /* Set the current transaction information on the inode so
243 * that the locking code knows whether it can drop it's locks
244 * on this inode or not. We're protected from the commit
245 * thread updating the current transaction id until
246 * ocfs2_commit_trans() because ocfs2_start_trans() took
247 * j_trans_barrier for us. */
248 ocfs2_set_inode_lock_trans(OCFS2_SB(inode->i_sb)->journal, inode);
249
251b6ecc 250 mutex_lock(&OCFS2_I(inode)->ip_io_mutex);
ccd979bd
MF
251 switch (type) {
252 case OCFS2_JOURNAL_ACCESS_CREATE:
253 case OCFS2_JOURNAL_ACCESS_WRITE:
1fabe148 254 status = journal_get_write_access(handle, bh);
ccd979bd
MF
255 break;
256
257 case OCFS2_JOURNAL_ACCESS_UNDO:
1fabe148 258 status = journal_get_undo_access(handle, bh);
ccd979bd
MF
259 break;
260
261 default:
262 status = -EINVAL;
263 mlog(ML_ERROR, "Uknown access type!\n");
264 }
251b6ecc 265 mutex_unlock(&OCFS2_I(inode)->ip_io_mutex);
ccd979bd
MF
266
267 if (status < 0)
268 mlog(ML_ERROR, "Error %d getting %d access to buffer!\n",
269 status, type);
270
271 mlog_exit(status);
272 return status;
273}
274
1fabe148 275int ocfs2_journal_dirty(handle_t *handle,
ccd979bd
MF
276 struct buffer_head *bh)
277{
278 int status;
279
ccd979bd
MF
280 mlog_entry("(bh->b_blocknr=%llu)\n",
281 (unsigned long long)bh->b_blocknr);
282
1fabe148 283 status = journal_dirty_metadata(handle, bh);
ccd979bd
MF
284 if (status < 0)
285 mlog(ML_ERROR, "Could not dirty metadata buffer. "
286 "(bh->b_blocknr=%llu)\n",
287 (unsigned long long)bh->b_blocknr);
288
289 mlog_exit(status);
290 return status;
291}
292
293int ocfs2_journal_dirty_data(handle_t *handle,
294 struct buffer_head *bh)
295{
296 int err = journal_dirty_data(handle, bh);
297 if (err)
298 mlog_errno(err);
299 /* TODO: When we can handle it, abort the handle and go RO on
300 * error here. */
301
302 return err;
303}
304
ccd979bd
MF
305#define OCFS2_DEFAULT_COMMIT_INTERVAL (HZ * 5)
306
307void ocfs2_set_journal_params(struct ocfs2_super *osb)
308{
309 journal_t *journal = osb->journal->j_journal;
310
311 spin_lock(&journal->j_state_lock);
312 journal->j_commit_interval = OCFS2_DEFAULT_COMMIT_INTERVAL;
313 if (osb->s_mount_opt & OCFS2_MOUNT_BARRIER)
314 journal->j_flags |= JFS_BARRIER;
315 else
316 journal->j_flags &= ~JFS_BARRIER;
317 spin_unlock(&journal->j_state_lock);
318}
319
320int ocfs2_journal_init(struct ocfs2_journal *journal, int *dirty)
321{
322 int status = -1;
323 struct inode *inode = NULL; /* the journal inode */
324 journal_t *j_journal = NULL;
325 struct ocfs2_dinode *di = NULL;
326 struct buffer_head *bh = NULL;
327 struct ocfs2_super *osb;
328 int meta_lock = 0;
329
330 mlog_entry_void();
331
332 BUG_ON(!journal);
333
334 osb = journal->j_osb;
335
336 /* already have the inode for our journal */
337 inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE,
338 osb->slot_num);
339 if (inode == NULL) {
340 status = -EACCES;
341 mlog_errno(status);
342 goto done;
343 }
344 if (is_bad_inode(inode)) {
345 mlog(ML_ERROR, "access error (bad inode)\n");
346 iput(inode);
347 inode = NULL;
348 status = -EACCES;
349 goto done;
350 }
351
352 SET_INODE_JOURNAL(inode);
353 OCFS2_I(inode)->ip_open_count++;
354
6eff5790
MF
355 /* Skip recovery waits here - journal inode metadata never
356 * changes in a live cluster so it can be considered an
357 * exception to the rule. */
4bcec184 358 status = ocfs2_meta_lock_full(inode, &bh, 1, OCFS2_META_LOCK_RECOVERY);
ccd979bd
MF
359 if (status < 0) {
360 if (status != -ERESTARTSYS)
361 mlog(ML_ERROR, "Could not get lock on journal!\n");
362 goto done;
363 }
364
365 meta_lock = 1;
366 di = (struct ocfs2_dinode *)bh->b_data;
367
368 if (inode->i_size < OCFS2_MIN_JOURNAL_SIZE) {
369 mlog(ML_ERROR, "Journal file size (%lld) is too small!\n",
370 inode->i_size);
371 status = -EINVAL;
372 goto done;
373 }
374
375 mlog(0, "inode->i_size = %lld\n", inode->i_size);
5515eff8
AM
376 mlog(0, "inode->i_blocks = %llu\n",
377 (unsigned long long)inode->i_blocks);
ccd979bd
MF
378 mlog(0, "inode->ip_clusters = %u\n", OCFS2_I(inode)->ip_clusters);
379
380 /* call the kernels journal init function now */
381 j_journal = journal_init_inode(inode);
382 if (j_journal == NULL) {
383 mlog(ML_ERROR, "Linux journal layer error\n");
384 status = -EINVAL;
385 goto done;
386 }
387
388 mlog(0, "Returned from journal_init_inode\n");
389 mlog(0, "j_journal->j_maxlen = %u\n", j_journal->j_maxlen);
390
391 *dirty = (le32_to_cpu(di->id1.journal1.ij_flags) &
392 OCFS2_JOURNAL_DIRTY_FL);
393
394 journal->j_journal = j_journal;
395 journal->j_inode = inode;
396 journal->j_bh = bh;
397
398 ocfs2_set_journal_params(osb);
399
400 journal->j_state = OCFS2_JOURNAL_LOADED;
401
402 status = 0;
403done:
404 if (status < 0) {
405 if (meta_lock)
406 ocfs2_meta_unlock(inode, 1);
407 if (bh != NULL)
408 brelse(bh);
409 if (inode) {
410 OCFS2_I(inode)->ip_open_count--;
411 iput(inode);
412 }
413 }
414
415 mlog_exit(status);
416 return status;
417}
418
419static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb,
420 int dirty)
421{
422 int status;
423 unsigned int flags;
424 struct ocfs2_journal *journal = osb->journal;
425 struct buffer_head *bh = journal->j_bh;
426 struct ocfs2_dinode *fe;
427
428 mlog_entry_void();
429
430 fe = (struct ocfs2_dinode *)bh->b_data;
431 if (!OCFS2_IS_VALID_DINODE(fe)) {
432 /* This is called from startup/shutdown which will
433 * handle the errors in a specific manner, so no need
434 * to call ocfs2_error() here. */
b0697053
MF
435 mlog(ML_ERROR, "Journal dinode %llu has invalid "
436 "signature: %.*s", (unsigned long long)fe->i_blkno, 7,
437 fe->i_signature);
ccd979bd
MF
438 status = -EIO;
439 goto out;
440 }
441
442 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
443 if (dirty)
444 flags |= OCFS2_JOURNAL_DIRTY_FL;
445 else
446 flags &= ~OCFS2_JOURNAL_DIRTY_FL;
447 fe->id1.journal1.ij_flags = cpu_to_le32(flags);
448
449 status = ocfs2_write_block(osb, bh, journal->j_inode);
450 if (status < 0)
451 mlog_errno(status);
452
453out:
454 mlog_exit(status);
455 return status;
456}
457
458/*
459 * If the journal has been kmalloc'd it needs to be freed after this
460 * call.
461 */
462void ocfs2_journal_shutdown(struct ocfs2_super *osb)
463{
464 struct ocfs2_journal *journal = NULL;
465 int status = 0;
466 struct inode *inode = NULL;
467 int num_running_trans = 0;
468
469 mlog_entry_void();
470
ebdec83b 471 BUG_ON(!osb);
ccd979bd
MF
472
473 journal = osb->journal;
474 if (!journal)
475 goto done;
476
477 inode = journal->j_inode;
478
479 if (journal->j_state != OCFS2_JOURNAL_LOADED)
480 goto done;
481
482 /* need to inc inode use count as journal_destroy will iput. */
483 if (!igrab(inode))
484 BUG();
485
486 num_running_trans = atomic_read(&(osb->journal->j_num_trans));
487 if (num_running_trans > 0)
488 mlog(0, "Shutting down journal: must wait on %d "
489 "running transactions!\n",
490 num_running_trans);
491
492 /* Do a commit_cache here. It will flush our journal, *and*
493 * release any locks that are still held.
494 * set the SHUTDOWN flag and release the trans lock.
495 * the commit thread will take the trans lock for us below. */
496 journal->j_state = OCFS2_JOURNAL_IN_SHUTDOWN;
497
498 /* The OCFS2_JOURNAL_IN_SHUTDOWN will signal to commit_cache to not
499 * drop the trans_lock (which we want to hold until we
500 * completely destroy the journal. */
501 if (osb->commit_task) {
502 /* Wait for the commit thread */
503 mlog(0, "Waiting for ocfs2commit to exit....\n");
504 kthread_stop(osb->commit_task);
505 osb->commit_task = NULL;
506 }
507
508 BUG_ON(atomic_read(&(osb->journal->j_num_trans)) != 0);
509
510 status = ocfs2_journal_toggle_dirty(osb, 0);
511 if (status < 0)
512 mlog_errno(status);
513
514 /* Shutdown the kernel journal system */
515 journal_destroy(journal->j_journal);
516
517 OCFS2_I(inode)->ip_open_count--;
518
519 /* unlock our journal */
520 ocfs2_meta_unlock(inode, 1);
521
522 brelse(journal->j_bh);
523 journal->j_bh = NULL;
524
525 journal->j_state = OCFS2_JOURNAL_FREE;
526
527// up_write(&journal->j_trans_barrier);
528done:
529 if (inode)
530 iput(inode);
531 mlog_exit_void();
532}
533
534static void ocfs2_clear_journal_error(struct super_block *sb,
535 journal_t *journal,
536 int slot)
537{
538 int olderr;
539
540 olderr = journal_errno(journal);
541 if (olderr) {
542 mlog(ML_ERROR, "File system error %d recorded in "
543 "journal %u.\n", olderr, slot);
544 mlog(ML_ERROR, "File system on device %s needs checking.\n",
545 sb->s_id);
546
547 journal_ack_err(journal);
548 journal_clear_err(journal);
549 }
550}
551
552int ocfs2_journal_load(struct ocfs2_journal *journal)
553{
554 int status = 0;
555 struct ocfs2_super *osb;
556
557 mlog_entry_void();
558
559 if (!journal)
560 BUG();
561
562 osb = journal->j_osb;
563
564 status = journal_load(journal->j_journal);
565 if (status < 0) {
566 mlog(ML_ERROR, "Failed to load journal!\n");
567 goto done;
568 }
569
570 ocfs2_clear_journal_error(osb->sb, journal->j_journal, osb->slot_num);
571
572 status = ocfs2_journal_toggle_dirty(osb, 1);
573 if (status < 0) {
574 mlog_errno(status);
575 goto done;
576 }
577
578 /* Launch the commit thread */
78427043 579 osb->commit_task = kthread_run(ocfs2_commit_thread, osb, "ocfs2cmt");
ccd979bd
MF
580 if (IS_ERR(osb->commit_task)) {
581 status = PTR_ERR(osb->commit_task);
582 osb->commit_task = NULL;
583 mlog(ML_ERROR, "unable to launch ocfs2commit thread, error=%d",
584 status);
585 goto done;
586 }
587
588done:
589 mlog_exit(status);
590 return status;
591}
592
593
594/* 'full' flag tells us whether we clear out all blocks or if we just
595 * mark the journal clean */
596int ocfs2_journal_wipe(struct ocfs2_journal *journal, int full)
597{
598 int status;
599
600 mlog_entry_void();
601
ebdec83b 602 BUG_ON(!journal);
ccd979bd
MF
603
604 status = journal_wipe(journal->j_journal, full);
605 if (status < 0) {
606 mlog_errno(status);
607 goto bail;
608 }
609
610 status = ocfs2_journal_toggle_dirty(journal->j_osb, 0);
611 if (status < 0)
612 mlog_errno(status);
613
614bail:
615 mlog_exit(status);
616 return status;
617}
618
619/*
620 * JBD Might read a cached version of another nodes journal file. We
621 * don't want this as this file changes often and we get no
622 * notification on those changes. The only way to be sure that we've
623 * got the most up to date version of those blocks then is to force
624 * read them off disk. Just searching through the buffer cache won't
625 * work as there may be pages backing this file which are still marked
626 * up to date. We know things can't change on this file underneath us
627 * as we have the lock by now :)
628 */
629static int ocfs2_force_read_journal(struct inode *inode)
630{
631 int status = 0;
632 int i, p_blocks;
633 u64 v_blkno, p_blkno;
634#define CONCURRENT_JOURNAL_FILL 32
635 struct buffer_head *bhs[CONCURRENT_JOURNAL_FILL];
636
637 mlog_entry_void();
638
639 BUG_ON(inode->i_blocks !=
640 ocfs2_align_bytes_to_sectors(i_size_read(inode)));
641
642 memset(bhs, 0, sizeof(struct buffer_head *) * CONCURRENT_JOURNAL_FILL);
643
5515eff8
AM
644 mlog(0, "Force reading %llu blocks\n",
645 (unsigned long long)(inode->i_blocks >>
646 (inode->i_sb->s_blocksize_bits - 9)));
ccd979bd
MF
647
648 v_blkno = 0;
649 while (v_blkno <
650 (inode->i_blocks >> (inode->i_sb->s_blocksize_bits - 9))) {
651
652 status = ocfs2_extent_map_get_blocks(inode, v_blkno,
653 1, &p_blkno,
654 &p_blocks);
655 if (status < 0) {
656 mlog_errno(status);
657 goto bail;
658 }
659
660 if (p_blocks > CONCURRENT_JOURNAL_FILL)
661 p_blocks = CONCURRENT_JOURNAL_FILL;
662
dd4a2c2b
MF
663 /* We are reading journal data which should not
664 * be put in the uptodate cache */
ccd979bd
MF
665 status = ocfs2_read_blocks(OCFS2_SB(inode->i_sb),
666 p_blkno, p_blocks, bhs, 0,
dd4a2c2b 667 NULL);
ccd979bd
MF
668 if (status < 0) {
669 mlog_errno(status);
670 goto bail;
671 }
672
673 for(i = 0; i < p_blocks; i++) {
674 brelse(bhs[i]);
675 bhs[i] = NULL;
676 }
677
678 v_blkno += p_blocks;
679 }
680
681bail:
682 for(i = 0; i < CONCURRENT_JOURNAL_FILL; i++)
683 if (bhs[i])
684 brelse(bhs[i]);
685 mlog_exit(status);
686 return status;
687}
688
689struct ocfs2_la_recovery_item {
690 struct list_head lri_list;
691 int lri_slot;
692 struct ocfs2_dinode *lri_la_dinode;
693 struct ocfs2_dinode *lri_tl_dinode;
694};
695
696/* Does the second half of the recovery process. By this point, the
697 * node is marked clean and can actually be considered recovered,
698 * hence it's no longer in the recovery map, but there's still some
699 * cleanup we can do which shouldn't happen within the recovery thread
700 * as locking in that context becomes very difficult if we are to take
701 * recovering nodes into account.
702 *
703 * NOTE: This function can and will sleep on recovery of other nodes
704 * during cluster locking, just like any other ocfs2 process.
705 */
c4028958 706void ocfs2_complete_recovery(struct work_struct *work)
ccd979bd
MF
707{
708 int ret;
c4028958
DH
709 struct ocfs2_journal *journal =
710 container_of(work, struct ocfs2_journal, j_recovery_work);
711 struct ocfs2_super *osb = journal->j_osb;
ccd979bd
MF
712 struct ocfs2_dinode *la_dinode, *tl_dinode;
713 struct ocfs2_la_recovery_item *item;
714 struct list_head *p, *n;
715 LIST_HEAD(tmp_la_list);
716
717 mlog_entry_void();
718
719 mlog(0, "completing recovery from keventd\n");
720
721 spin_lock(&journal->j_lock);
722 list_splice_init(&journal->j_la_cleanups, &tmp_la_list);
723 spin_unlock(&journal->j_lock);
724
725 list_for_each_safe(p, n, &tmp_la_list) {
726 item = list_entry(p, struct ocfs2_la_recovery_item, lri_list);
727 list_del_init(&item->lri_list);
728
729 mlog(0, "Complete recovery for slot %d\n", item->lri_slot);
730
731 la_dinode = item->lri_la_dinode;
732 if (la_dinode) {
b0697053
MF
733 mlog(0, "Clean up local alloc %llu\n",
734 (unsigned long long)la_dinode->i_blkno);
ccd979bd
MF
735
736 ret = ocfs2_complete_local_alloc_recovery(osb,
737 la_dinode);
738 if (ret < 0)
739 mlog_errno(ret);
740
741 kfree(la_dinode);
742 }
743
744 tl_dinode = item->lri_tl_dinode;
745 if (tl_dinode) {
b0697053
MF
746 mlog(0, "Clean up truncate log %llu\n",
747 (unsigned long long)tl_dinode->i_blkno);
ccd979bd
MF
748
749 ret = ocfs2_complete_truncate_log_recovery(osb,
750 tl_dinode);
751 if (ret < 0)
752 mlog_errno(ret);
753
754 kfree(tl_dinode);
755 }
756
757 ret = ocfs2_recover_orphans(osb, item->lri_slot);
758 if (ret < 0)
759 mlog_errno(ret);
760
761 kfree(item);
762 }
763
764 mlog(0, "Recovery completion\n");
765 mlog_exit_void();
766}
767
768/* NOTE: This function always eats your references to la_dinode and
769 * tl_dinode, either manually on error, or by passing them to
770 * ocfs2_complete_recovery */
771static void ocfs2_queue_recovery_completion(struct ocfs2_journal *journal,
772 int slot_num,
773 struct ocfs2_dinode *la_dinode,
774 struct ocfs2_dinode *tl_dinode)
775{
776 struct ocfs2_la_recovery_item *item;
777
afae00ab 778 item = kmalloc(sizeof(struct ocfs2_la_recovery_item), GFP_NOFS);
ccd979bd
MF
779 if (!item) {
780 /* Though we wish to avoid it, we are in fact safe in
781 * skipping local alloc cleanup as fsck.ocfs2 is more
782 * than capable of reclaiming unused space. */
783 if (la_dinode)
784 kfree(la_dinode);
785
786 if (tl_dinode)
787 kfree(tl_dinode);
788
789 mlog_errno(-ENOMEM);
790 return;
791 }
792
793 INIT_LIST_HEAD(&item->lri_list);
794 item->lri_la_dinode = la_dinode;
795 item->lri_slot = slot_num;
796 item->lri_tl_dinode = tl_dinode;
797
798 spin_lock(&journal->j_lock);
799 list_add_tail(&item->lri_list, &journal->j_la_cleanups);
800 queue_work(ocfs2_wq, &journal->j_recovery_work);
801 spin_unlock(&journal->j_lock);
802}
803
804/* Called by the mount code to queue recovery the last part of
805 * recovery for it's own slot. */
806void ocfs2_complete_mount_recovery(struct ocfs2_super *osb)
807{
808 struct ocfs2_journal *journal = osb->journal;
809
810 if (osb->dirty) {
811 /* No need to queue up our truncate_log as regular
812 * cleanup will catch that. */
813 ocfs2_queue_recovery_completion(journal,
814 osb->slot_num,
815 osb->local_alloc_copy,
816 NULL);
817 ocfs2_schedule_truncate_log_flush(osb, 0);
818
819 osb->local_alloc_copy = NULL;
820 osb->dirty = 0;
821 }
822}
823
824static int __ocfs2_recovery_thread(void *arg)
825{
826 int status, node_num;
827 struct ocfs2_super *osb = arg;
828
829 mlog_entry_void();
830
831 status = ocfs2_wait_on_mount(osb);
832 if (status < 0) {
833 goto bail;
834 }
835
836restart:
837 status = ocfs2_super_lock(osb, 1);
838 if (status < 0) {
839 mlog_errno(status);
840 goto bail;
841 }
842
843 while(!ocfs2_node_map_is_empty(osb, &osb->recovery_map)) {
844 node_num = ocfs2_node_map_first_set_bit(osb,
845 &osb->recovery_map);
846 if (node_num == O2NM_INVALID_NODE_NUM) {
847 mlog(0, "Out of nodes to recover.\n");
848 break;
849 }
850
851 status = ocfs2_recover_node(osb, node_num);
852 if (status < 0) {
853 mlog(ML_ERROR,
854 "Error %d recovering node %d on device (%u,%u)!\n",
855 status, node_num,
856 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
857 mlog(ML_ERROR, "Volume requires unmount.\n");
858 continue;
859 }
860
861 ocfs2_recovery_map_clear(osb, node_num);
862 }
863 ocfs2_super_unlock(osb, 1);
864
865 /* We always run recovery on our own orphan dir - the dead
866 * node(s) may have voted "no" on an inode delete earlier. A
867 * revote is therefore required. */
868 ocfs2_queue_recovery_completion(osb->journal, osb->slot_num, NULL,
869 NULL);
870
871bail:
c74ec2f7 872 mutex_lock(&osb->recovery_lock);
ccd979bd
MF
873 if (!status &&
874 !ocfs2_node_map_is_empty(osb, &osb->recovery_map)) {
c74ec2f7 875 mutex_unlock(&osb->recovery_lock);
ccd979bd
MF
876 goto restart;
877 }
878
879 osb->recovery_thread_task = NULL;
880 mb(); /* sync with ocfs2_recovery_thread_running */
881 wake_up(&osb->recovery_event);
882
c74ec2f7 883 mutex_unlock(&osb->recovery_lock);
ccd979bd
MF
884
885 mlog_exit(status);
886 /* no one is callint kthread_stop() for us so the kthread() api
887 * requires that we call do_exit(). And it isn't exported, but
888 * complete_and_exit() seems to be a minimal wrapper around it. */
889 complete_and_exit(NULL, status);
890 return status;
891}
892
893void ocfs2_recovery_thread(struct ocfs2_super *osb, int node_num)
894{
895 mlog_entry("(node_num=%d, osb->node_num = %d)\n",
896 node_num, osb->node_num);
897
c74ec2f7 898 mutex_lock(&osb->recovery_lock);
ccd979bd
MF
899 if (osb->disable_recovery)
900 goto out;
901
902 /* People waiting on recovery will wait on
903 * the recovery map to empty. */
904 if (!ocfs2_recovery_map_set(osb, node_num))
905 mlog(0, "node %d already be in recovery.\n", node_num);
906
907 mlog(0, "starting recovery thread...\n");
908
909 if (osb->recovery_thread_task)
910 goto out;
911
912 osb->recovery_thread_task = kthread_run(__ocfs2_recovery_thread, osb,
78427043 913 "ocfs2rec");
ccd979bd
MF
914 if (IS_ERR(osb->recovery_thread_task)) {
915 mlog_errno((int)PTR_ERR(osb->recovery_thread_task));
916 osb->recovery_thread_task = NULL;
917 }
918
919out:
c74ec2f7 920 mutex_unlock(&osb->recovery_lock);
ccd979bd
MF
921 wake_up(&osb->recovery_event);
922
923 mlog_exit_void();
924}
925
926/* Does the actual journal replay and marks the journal inode as
927 * clean. Will only replay if the journal inode is marked dirty. */
928static int ocfs2_replay_journal(struct ocfs2_super *osb,
929 int node_num,
930 int slot_num)
931{
932 int status;
933 int got_lock = 0;
934 unsigned int flags;
935 struct inode *inode = NULL;
936 struct ocfs2_dinode *fe;
937 journal_t *journal = NULL;
938 struct buffer_head *bh = NULL;
939
940 inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE,
941 slot_num);
942 if (inode == NULL) {
943 status = -EACCES;
944 mlog_errno(status);
945 goto done;
946 }
947 if (is_bad_inode(inode)) {
948 status = -EACCES;
949 iput(inode);
950 inode = NULL;
951 mlog_errno(status);
952 goto done;
953 }
954 SET_INODE_JOURNAL(inode);
955
4bcec184 956 status = ocfs2_meta_lock_full(inode, &bh, 1, OCFS2_META_LOCK_RECOVERY);
ccd979bd
MF
957 if (status < 0) {
958 mlog(0, "status returned from ocfs2_meta_lock=%d\n", status);
959 if (status != -ERESTARTSYS)
960 mlog(ML_ERROR, "Could not lock journal!\n");
961 goto done;
962 }
963 got_lock = 1;
964
965 fe = (struct ocfs2_dinode *) bh->b_data;
966
967 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
968
969 if (!(flags & OCFS2_JOURNAL_DIRTY_FL)) {
970 mlog(0, "No recovery required for node %d\n", node_num);
971 goto done;
972 }
973
974 mlog(ML_NOTICE, "Recovering node %d from slot %d on device (%u,%u)\n",
975 node_num, slot_num,
976 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
977
978 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
979
980 status = ocfs2_force_read_journal(inode);
981 if (status < 0) {
982 mlog_errno(status);
983 goto done;
984 }
985
986 mlog(0, "calling journal_init_inode\n");
987 journal = journal_init_inode(inode);
988 if (journal == NULL) {
989 mlog(ML_ERROR, "Linux journal layer error\n");
990 status = -EIO;
991 goto done;
992 }
993
994 status = journal_load(journal);
995 if (status < 0) {
996 mlog_errno(status);
997 if (!igrab(inode))
998 BUG();
999 journal_destroy(journal);
1000 goto done;
1001 }
1002
1003 ocfs2_clear_journal_error(osb->sb, journal, slot_num);
1004
1005 /* wipe the journal */
1006 mlog(0, "flushing the journal.\n");
1007 journal_lock_updates(journal);
1008 status = journal_flush(journal);
1009 journal_unlock_updates(journal);
1010 if (status < 0)
1011 mlog_errno(status);
1012
1013 /* This will mark the node clean */
1014 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
1015 flags &= ~OCFS2_JOURNAL_DIRTY_FL;
1016 fe->id1.journal1.ij_flags = cpu_to_le32(flags);
1017
1018 status = ocfs2_write_block(osb, bh, inode);
1019 if (status < 0)
1020 mlog_errno(status);
1021
1022 if (!igrab(inode))
1023 BUG();
1024
1025 journal_destroy(journal);
1026
1027done:
1028 /* drop the lock on this nodes journal */
1029 if (got_lock)
1030 ocfs2_meta_unlock(inode, 1);
1031
1032 if (inode)
1033 iput(inode);
1034
1035 if (bh)
1036 brelse(bh);
1037
1038 mlog_exit(status);
1039 return status;
1040}
1041
1042/*
1043 * Do the most important parts of node recovery:
1044 * - Replay it's journal
1045 * - Stamp a clean local allocator file
1046 * - Stamp a clean truncate log
1047 * - Mark the node clean
1048 *
1049 * If this function completes without error, a node in OCFS2 can be
1050 * said to have been safely recovered. As a result, failure during the
1051 * second part of a nodes recovery process (local alloc recovery) is
1052 * far less concerning.
1053 */
1054static int ocfs2_recover_node(struct ocfs2_super *osb,
1055 int node_num)
1056{
1057 int status = 0;
1058 int slot_num;
1059 struct ocfs2_slot_info *si = osb->slot_info;
1060 struct ocfs2_dinode *la_copy = NULL;
1061 struct ocfs2_dinode *tl_copy = NULL;
1062
1063 mlog_entry("(node_num=%d, osb->node_num = %d)\n",
1064 node_num, osb->node_num);
1065
1066 mlog(0, "checking node %d\n", node_num);
1067
1068 /* Should not ever be called to recover ourselves -- in that
1069 * case we should've called ocfs2_journal_load instead. */
ebdec83b 1070 BUG_ON(osb->node_num == node_num);
ccd979bd
MF
1071
1072 slot_num = ocfs2_node_num_to_slot(si, node_num);
1073 if (slot_num == OCFS2_INVALID_SLOT) {
1074 status = 0;
1075 mlog(0, "no slot for this node, so no recovery required.\n");
1076 goto done;
1077 }
1078
1079 mlog(0, "node %d was using slot %d\n", node_num, slot_num);
1080
1081 status = ocfs2_replay_journal(osb, node_num, slot_num);
1082 if (status < 0) {
1083 mlog_errno(status);
1084 goto done;
1085 }
1086
1087 /* Stamp a clean local alloc file AFTER recovering the journal... */
1088 status = ocfs2_begin_local_alloc_recovery(osb, slot_num, &la_copy);
1089 if (status < 0) {
1090 mlog_errno(status);
1091 goto done;
1092 }
1093
1094 /* An error from begin_truncate_log_recovery is not
1095 * serious enough to warrant halting the rest of
1096 * recovery. */
1097 status = ocfs2_begin_truncate_log_recovery(osb, slot_num, &tl_copy);
1098 if (status < 0)
1099 mlog_errno(status);
1100
1101 /* Likewise, this would be a strange but ultimately not so
1102 * harmful place to get an error... */
1103 ocfs2_clear_slot(si, slot_num);
1104 status = ocfs2_update_disk_slots(osb, si);
1105 if (status < 0)
1106 mlog_errno(status);
1107
1108 /* This will kfree the memory pointed to by la_copy and tl_copy */
1109 ocfs2_queue_recovery_completion(osb->journal, slot_num, la_copy,
1110 tl_copy);
1111
1112 status = 0;
1113done:
1114
1115 mlog_exit(status);
1116 return status;
1117}
1118
1119/* Test node liveness by trylocking his journal. If we get the lock,
1120 * we drop it here. Return 0 if we got the lock, -EAGAIN if node is
1121 * still alive (we couldn't get the lock) and < 0 on error. */
1122static int ocfs2_trylock_journal(struct ocfs2_super *osb,
1123 int slot_num)
1124{
1125 int status, flags;
1126 struct inode *inode = NULL;
1127
1128 inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE,
1129 slot_num);
1130 if (inode == NULL) {
1131 mlog(ML_ERROR, "access error\n");
1132 status = -EACCES;
1133 goto bail;
1134 }
1135 if (is_bad_inode(inode)) {
1136 mlog(ML_ERROR, "access error (bad inode)\n");
1137 iput(inode);
1138 inode = NULL;
1139 status = -EACCES;
1140 goto bail;
1141 }
1142 SET_INODE_JOURNAL(inode);
1143
1144 flags = OCFS2_META_LOCK_RECOVERY | OCFS2_META_LOCK_NOQUEUE;
4bcec184 1145 status = ocfs2_meta_lock_full(inode, NULL, 1, flags);
ccd979bd
MF
1146 if (status < 0) {
1147 if (status != -EAGAIN)
1148 mlog_errno(status);
1149 goto bail;
1150 }
1151
1152 ocfs2_meta_unlock(inode, 1);
1153bail:
1154 if (inode)
1155 iput(inode);
1156
1157 return status;
1158}
1159
1160/* Call this underneath ocfs2_super_lock. It also assumes that the
1161 * slot info struct has been updated from disk. */
1162int ocfs2_mark_dead_nodes(struct ocfs2_super *osb)
1163{
1164 int status, i, node_num;
1165 struct ocfs2_slot_info *si = osb->slot_info;
1166
1167 /* This is called with the super block cluster lock, so we
1168 * know that the slot map can't change underneath us. */
1169
1170 spin_lock(&si->si_lock);
1171 for(i = 0; i < si->si_num_slots; i++) {
1172 if (i == osb->slot_num)
1173 continue;
1174 if (ocfs2_is_empty_slot(si, i))
1175 continue;
1176
1177 node_num = si->si_global_node_nums[i];
1178 if (ocfs2_node_map_test_bit(osb, &osb->recovery_map, node_num))
1179 continue;
1180 spin_unlock(&si->si_lock);
1181
1182 /* Ok, we have a slot occupied by another node which
1183 * is not in the recovery map. We trylock his journal
1184 * file here to test if he's alive. */
1185 status = ocfs2_trylock_journal(osb, i);
1186 if (!status) {
1187 /* Since we're called from mount, we know that
1188 * the recovery thread can't race us on
1189 * setting / checking the recovery bits. */
1190 ocfs2_recovery_thread(osb, node_num);
1191 } else if ((status < 0) && (status != -EAGAIN)) {
1192 mlog_errno(status);
1193 goto bail;
1194 }
1195
1196 spin_lock(&si->si_lock);
1197 }
1198 spin_unlock(&si->si_lock);
1199
1200 status = 0;
1201bail:
1202 mlog_exit(status);
1203 return status;
1204}
1205
b4df6ed8
MF
1206static int ocfs2_queue_orphans(struct ocfs2_super *osb,
1207 int slot,
1208 struct inode **head)
ccd979bd 1209{
b4df6ed8 1210 int status;
ccd979bd 1211 struct inode *orphan_dir_inode = NULL;
b4df6ed8 1212 struct inode *iter;
ccd979bd
MF
1213 unsigned long offset, blk, local;
1214 struct buffer_head *bh = NULL;
1215 struct ocfs2_dir_entry *de;
1216 struct super_block *sb = osb->sb;
ccd979bd
MF
1217
1218 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
1219 ORPHAN_DIR_SYSTEM_INODE,
1220 slot);
1221 if (!orphan_dir_inode) {
1222 status = -ENOENT;
1223 mlog_errno(status);
b4df6ed8
MF
1224 return status;
1225 }
ccd979bd 1226
1b1dcc1b 1227 mutex_lock(&orphan_dir_inode->i_mutex);
4bcec184 1228 status = ocfs2_meta_lock(orphan_dir_inode, NULL, 0);
ccd979bd 1229 if (status < 0) {
ccd979bd
MF
1230 mlog_errno(status);
1231 goto out;
1232 }
ccd979bd
MF
1233
1234 offset = 0;
1235 iter = NULL;
1236 while(offset < i_size_read(orphan_dir_inode)) {
1237 blk = offset >> sb->s_blocksize_bits;
1238
1239 bh = ocfs2_bread(orphan_dir_inode, blk, &status, 0);
1240 if (!bh)
1241 status = -EINVAL;
1242 if (status < 0) {
ccd979bd
MF
1243 if (bh)
1244 brelse(bh);
1245 mlog_errno(status);
b4df6ed8 1246 goto out_unlock;
ccd979bd
MF
1247 }
1248
1249 local = 0;
1250 while(offset < i_size_read(orphan_dir_inode)
1251 && local < sb->s_blocksize) {
1252 de = (struct ocfs2_dir_entry *) (bh->b_data + local);
1253
1254 if (!ocfs2_check_dir_entry(orphan_dir_inode,
1255 de, bh, local)) {
ccd979bd
MF
1256 status = -EINVAL;
1257 mlog_errno(status);
1258 brelse(bh);
b4df6ed8 1259 goto out_unlock;
ccd979bd
MF
1260 }
1261
1262 local += le16_to_cpu(de->rec_len);
1263 offset += le16_to_cpu(de->rec_len);
1264
1265 /* I guess we silently fail on no inode? */
1266 if (!le64_to_cpu(de->inode))
1267 continue;
1268 if (de->file_type > OCFS2_FT_MAX) {
1269 mlog(ML_ERROR,
1270 "block %llu contains invalid de: "
b0697053 1271 "inode = %llu, rec_len = %u, "
ccd979bd
MF
1272 "name_len = %u, file_type = %u, "
1273 "name='%.*s'\n",
1274 (unsigned long long)bh->b_blocknr,
b0697053 1275 (unsigned long long)le64_to_cpu(de->inode),
ccd979bd
MF
1276 le16_to_cpu(de->rec_len),
1277 de->name_len,
1278 de->file_type,
1279 de->name_len,
1280 de->name);
1281 continue;
1282 }
1283 if (de->name_len == 1 && !strncmp(".", de->name, 1))
1284 continue;
1285 if (de->name_len == 2 && !strncmp("..", de->name, 2))
1286 continue;
1287
24c19ef4
MF
1288 iter = ocfs2_iget(osb, le64_to_cpu(de->inode),
1289 OCFS2_FI_FLAG_NOLOCK);
ccd979bd
MF
1290 if (IS_ERR(iter))
1291 continue;
1292
b0697053
MF
1293 mlog(0, "queue orphan %llu\n",
1294 (unsigned long long)OCFS2_I(iter)->ip_blkno);
b4df6ed8
MF
1295 /* No locking is required for the next_orphan
1296 * queue as there is only ever a single
1297 * process doing orphan recovery. */
1298 OCFS2_I(iter)->ip_next_orphan = *head;
1299 *head = iter;
ccd979bd
MF
1300 }
1301 brelse(bh);
1302 }
ccd979bd 1303
b4df6ed8 1304out_unlock:
ccd979bd 1305 ocfs2_meta_unlock(orphan_dir_inode, 0);
b4df6ed8
MF
1306out:
1307 mutex_unlock(&orphan_dir_inode->i_mutex);
ccd979bd 1308 iput(orphan_dir_inode);
b4df6ed8
MF
1309 return status;
1310}
1311
1312static int ocfs2_orphan_recovery_can_continue(struct ocfs2_super *osb,
1313 int slot)
1314{
1315 int ret;
1316
1317 spin_lock(&osb->osb_lock);
1318 ret = !osb->osb_orphan_wipes[slot];
1319 spin_unlock(&osb->osb_lock);
1320 return ret;
1321}
1322
1323static void ocfs2_mark_recovering_orphan_dir(struct ocfs2_super *osb,
1324 int slot)
1325{
1326 spin_lock(&osb->osb_lock);
1327 /* Mark ourselves such that new processes in delete_inode()
1328 * know to quit early. */
1329 ocfs2_node_map_set_bit(osb, &osb->osb_recovering_orphan_dirs, slot);
1330 while (osb->osb_orphan_wipes[slot]) {
1331 /* If any processes are already in the middle of an
1332 * orphan wipe on this dir, then we need to wait for
1333 * them. */
1334 spin_unlock(&osb->osb_lock);
1335 wait_event_interruptible(osb->osb_wipe_event,
1336 ocfs2_orphan_recovery_can_continue(osb, slot));
1337 spin_lock(&osb->osb_lock);
1338 }
1339 spin_unlock(&osb->osb_lock);
1340}
1341
1342static void ocfs2_clear_recovering_orphan_dir(struct ocfs2_super *osb,
1343 int slot)
1344{
1345 ocfs2_node_map_clear_bit(osb, &osb->osb_recovering_orphan_dirs, slot);
1346}
1347
1348/*
1349 * Orphan recovery. Each mounted node has it's own orphan dir which we
1350 * must run during recovery. Our strategy here is to build a list of
1351 * the inodes in the orphan dir and iget/iput them. The VFS does
1352 * (most) of the rest of the work.
1353 *
1354 * Orphan recovery can happen at any time, not just mount so we have a
1355 * couple of extra considerations.
1356 *
1357 * - We grab as many inodes as we can under the orphan dir lock -
1358 * doing iget() outside the orphan dir risks getting a reference on
1359 * an invalid inode.
1360 * - We must be sure not to deadlock with other processes on the
1361 * system wanting to run delete_inode(). This can happen when they go
1362 * to lock the orphan dir and the orphan recovery process attempts to
1363 * iget() inside the orphan dir lock. This can be avoided by
1364 * advertising our state to ocfs2_delete_inode().
1365 */
1366static int ocfs2_recover_orphans(struct ocfs2_super *osb,
1367 int slot)
1368{
1369 int ret = 0;
1370 struct inode *inode = NULL;
1371 struct inode *iter;
1372 struct ocfs2_inode_info *oi;
1373
1374 mlog(0, "Recover inodes from orphan dir in slot %d\n", slot);
1375
1376 ocfs2_mark_recovering_orphan_dir(osb, slot);
1377 ret = ocfs2_queue_orphans(osb, slot, &inode);
1378 ocfs2_clear_recovering_orphan_dir(osb, slot);
1379
1380 /* Error here should be noted, but we want to continue with as
1381 * many queued inodes as we've got. */
1382 if (ret)
1383 mlog_errno(ret);
ccd979bd
MF
1384
1385 while (inode) {
1386 oi = OCFS2_I(inode);
b0697053 1387 mlog(0, "iput orphan %llu\n", (unsigned long long)oi->ip_blkno);
ccd979bd
MF
1388
1389 iter = oi->ip_next_orphan;
1390
1391 spin_lock(&oi->ip_lock);
1392 /* Delete voting may have set these on the assumption
1393 * that the other node would wipe them successfully.
1394 * If they are still in the node's orphan dir, we need
1395 * to reset that state. */
1396 oi->ip_flags &= ~(OCFS2_INODE_DELETED|OCFS2_INODE_SKIP_DELETE);
1397
1398 /* Set the proper information to get us going into
1399 * ocfs2_delete_inode. */
1400 oi->ip_flags |= OCFS2_INODE_MAYBE_ORPHANED;
1401 oi->ip_orphaned_slot = slot;
1402 spin_unlock(&oi->ip_lock);
1403
1404 iput(inode);
1405
1406 inode = iter;
1407 }
1408
b4df6ed8 1409 return ret;
ccd979bd
MF
1410}
1411
1412static int ocfs2_wait_on_mount(struct ocfs2_super *osb)
1413{
1414 /* This check is good because ocfs2 will wait on our recovery
1415 * thread before changing it to something other than MOUNTED
1416 * or DISABLED. */
1417 wait_event(osb->osb_mount_event,
1418 atomic_read(&osb->vol_state) == VOLUME_MOUNTED ||
1419 atomic_read(&osb->vol_state) == VOLUME_DISABLED);
1420
1421 /* If there's an error on mount, then we may never get to the
1422 * MOUNTED flag, but this is set right before
1423 * dismount_volume() so we can trust it. */
1424 if (atomic_read(&osb->vol_state) == VOLUME_DISABLED) {
1425 mlog(0, "mount error, exiting!\n");
1426 return -EBUSY;
1427 }
1428
1429 return 0;
1430}
1431
1432static int ocfs2_commit_thread(void *arg)
1433{
1434 int status;
1435 struct ocfs2_super *osb = arg;
1436 struct ocfs2_journal *journal = osb->journal;
1437
1438 /* we can trust j_num_trans here because _should_stop() is only set in
1439 * shutdown and nobody other than ourselves should be able to start
1440 * transactions. committing on shutdown might take a few iterations
1441 * as final transactions put deleted inodes on the list */
1442 while (!(kthread_should_stop() &&
1443 atomic_read(&journal->j_num_trans) == 0)) {
1444
745ae8ba
MF
1445 wait_event_interruptible(osb->checkpoint_event,
1446 atomic_read(&journal->j_num_trans)
1447 || kthread_should_stop());
ccd979bd
MF
1448
1449 status = ocfs2_commit_cache(osb);
1450 if (status < 0)
1451 mlog_errno(status);
1452
1453 if (kthread_should_stop() && atomic_read(&journal->j_num_trans)){
1454 mlog(ML_KTHREAD,
1455 "commit_thread: %u transactions pending on "
1456 "shutdown\n",
1457 atomic_read(&journal->j_num_trans));
1458 }
1459 }
1460
1461 return 0;
1462}
1463
1464/* Look for a dirty journal without taking any cluster locks. Used for
1465 * hard readonly access to determine whether the file system journals
1466 * require recovery. */
1467int ocfs2_check_journals_nolocks(struct ocfs2_super *osb)
1468{
1469 int ret = 0;
1470 unsigned int slot;
1471 struct buffer_head *di_bh;
1472 struct ocfs2_dinode *di;
1473 struct inode *journal = NULL;
1474
1475 for(slot = 0; slot < osb->max_slots; slot++) {
1476 journal = ocfs2_get_system_file_inode(osb,
1477 JOURNAL_SYSTEM_INODE,
1478 slot);
1479 if (!journal || is_bad_inode(journal)) {
1480 ret = -EACCES;
1481 mlog_errno(ret);
1482 goto out;
1483 }
1484
1485 di_bh = NULL;
1486 ret = ocfs2_read_block(osb, OCFS2_I(journal)->ip_blkno, &di_bh,
1487 0, journal);
1488 if (ret < 0) {
1489 mlog_errno(ret);
1490 goto out;
1491 }
1492
1493 di = (struct ocfs2_dinode *) di_bh->b_data;
1494
1495 if (le32_to_cpu(di->id1.journal1.ij_flags) &
1496 OCFS2_JOURNAL_DIRTY_FL)
1497 ret = -EROFS;
1498
1499 brelse(di_bh);
1500 if (ret)
1501 break;
1502 }
1503
1504out:
1505 if (journal)
1506 iput(journal);
1507
1508 return ret;
1509}