blob: 1887a270870976cd742e2c44fdfcd5341647b779 [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Masahiro Yamadafa60ce22021-05-06 18:06:44 -07002/*
Mark Fashehccd979b2005-12-15 14:31:24 -08003 * journal.c
4 *
5 * Defines functions of journalling api
6 *
7 * Copyright (C) 2003, 2004 Oracle. All rights reserved.
Mark Fashehccd979b2005-12-15 14:31:24 -08008 */
9
10#include <linux/fs.h>
11#include <linux/types.h>
12#include <linux/slab.h>
13#include <linux/highmem.h>
14#include <linux/kthread.h>
Srinivas Eeda83273932009-06-03 17:02:55 -070015#include <linux/time.h>
16#include <linux/random.h>
Joseph Qi55b465b2014-06-04 16:06:09 -070017#include <linux/delay.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080018
Mark Fashehccd979b2005-12-15 14:31:24 -080019#include <cluster/masklog.h>
20
21#include "ocfs2.h"
22
23#include "alloc.h"
Joel Becker50655ae2008-09-11 15:53:07 -070024#include "blockcheck.h"
Mark Fasheh316f4b92007-09-07 18:21:26 -070025#include "dir.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080026#include "dlmglue.h"
27#include "extent_map.h"
28#include "heartbeat.h"
29#include "inode.h"
30#include "journal.h"
31#include "localalloc.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080032#include "slot_map.h"
33#include "super.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080034#include "sysfile.h"
Joel Becker0cf2f762009-02-12 16:41:25 -080035#include "uptodate.h"
Jan Kara22053632008-10-20 23:50:38 +020036#include "quota.h"
Joseph Qied460cf2015-02-16 15:59:57 -080037#include "file.h"
38#include "namei.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080039
40#include "buffer_head_io.h"
Tao Mab4107952011-02-24 14:15:35 +080041#include "ocfs2_trace.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080042
Ingo Molnar34af9462006-06-27 02:53:55 -070043DEFINE_SPINLOCK(trans_inc_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -080044
Srinivas Eeda83273932009-06-03 17:02:55 -070045#define ORPHAN_SCAN_SCHEDULE_TIMEOUT 300000
46
Mark Fashehccd979b2005-12-15 14:31:24 -080047static int ocfs2_force_read_journal(struct inode *inode);
48static int ocfs2_recover_node(struct ocfs2_super *osb,
Jan Kara22053632008-10-20 23:50:38 +020049 int node_num, int slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -080050static int __ocfs2_recovery_thread(void *arg);
51static int ocfs2_commit_cache(struct ocfs2_super *osb);
Jan Kara19ece542008-08-21 20:13:17 +020052static int __ocfs2_wait_on_mount(struct ocfs2_super *osb, int quota);
Mark Fashehccd979b2005-12-15 14:31:24 -080053static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb,
Sunil Mushran539d8262008-07-14 17:31:10 -070054 int dirty, int replayed);
Mark Fashehccd979b2005-12-15 14:31:24 -080055static int ocfs2_trylock_journal(struct ocfs2_super *osb,
56 int slot_num);
57static int ocfs2_recover_orphans(struct ocfs2_super *osb,
Joseph Qied460cf2015-02-16 15:59:57 -080058 int slot,
59 enum ocfs2_orphan_reco_type orphan_reco_type);
Mark Fashehccd979b2005-12-15 14:31:24 -080060static int ocfs2_commit_thread(void *arg);
Srinivas Eeda9140db02009-03-06 14:21:46 -080061static void ocfs2_queue_recovery_completion(struct ocfs2_journal *journal,
62 int slot_num,
63 struct ocfs2_dinode *la_dinode,
64 struct ocfs2_dinode *tl_dinode,
Joseph Qied460cf2015-02-16 15:59:57 -080065 struct ocfs2_quota_recovery *qrec,
66 enum ocfs2_orphan_reco_type orphan_reco_type);
Mark Fashehccd979b2005-12-15 14:31:24 -080067
Jan Kara19ece542008-08-21 20:13:17 +020068static inline int ocfs2_wait_on_mount(struct ocfs2_super *osb)
69{
70 return __ocfs2_wait_on_mount(osb, 0);
71}
72
73static inline int ocfs2_wait_on_quotas(struct ocfs2_super *osb)
74{
75 return __ocfs2_wait_on_mount(osb, 1);
76}
77
Srinivas Eeda9140db02009-03-06 14:21:46 -080078/*
79 * This replay_map is to track online/offline slots, so we could recover
80 * offline slots during recovery and mount
81 */
82
83enum ocfs2_replay_state {
84 REPLAY_UNNEEDED = 0, /* Replay is not needed, so ignore this map */
85 REPLAY_NEEDED, /* Replay slots marked in rm_replay_slots */
86 REPLAY_DONE /* Replay was already queued */
87};
88
89struct ocfs2_replay_map {
90 unsigned int rm_slots;
91 enum ocfs2_replay_state rm_state;
Gustavo A. R. Silva3c9210d2020-04-01 21:03:48 -070092 unsigned char rm_replay_slots[];
Srinivas Eeda9140db02009-03-06 14:21:46 -080093};
94
Joseph Qib519ea62015-06-24 16:55:34 -070095static void ocfs2_replay_map_set_state(struct ocfs2_super *osb, int state)
Srinivas Eeda9140db02009-03-06 14:21:46 -080096{
97 if (!osb->replay_map)
98 return;
99
100 /* If we've already queued the replay, we don't have any more to do */
101 if (osb->replay_map->rm_state == REPLAY_DONE)
102 return;
103
104 osb->replay_map->rm_state = state;
105}
106
107int ocfs2_compute_replay_slots(struct ocfs2_super *osb)
108{
109 struct ocfs2_replay_map *replay_map;
110 int i, node_num;
111
112 /* If replay map is already set, we don't do it again */
113 if (osb->replay_map)
114 return 0;
115
116 replay_map = kzalloc(sizeof(struct ocfs2_replay_map) +
117 (osb->max_slots * sizeof(char)), GFP_KERNEL);
118
119 if (!replay_map) {
120 mlog_errno(-ENOMEM);
121 return -ENOMEM;
122 }
123
124 spin_lock(&osb->osb_lock);
125
126 replay_map->rm_slots = osb->max_slots;
127 replay_map->rm_state = REPLAY_UNNEEDED;
128
129 /* set rm_replay_slots for offline slot(s) */
130 for (i = 0; i < replay_map->rm_slots; i++) {
131 if (ocfs2_slot_to_node_num_locked(osb, i, &node_num) == -ENOENT)
132 replay_map->rm_replay_slots[i] = 1;
133 }
134
135 osb->replay_map = replay_map;
136 spin_unlock(&osb->osb_lock);
137 return 0;
138}
139
Joseph Qib519ea62015-06-24 16:55:34 -0700140static void ocfs2_queue_replay_slots(struct ocfs2_super *osb,
Joseph Qied460cf2015-02-16 15:59:57 -0800141 enum ocfs2_orphan_reco_type orphan_reco_type)
Srinivas Eeda9140db02009-03-06 14:21:46 -0800142{
143 struct ocfs2_replay_map *replay_map = osb->replay_map;
144 int i;
145
146 if (!replay_map)
147 return;
148
149 if (replay_map->rm_state != REPLAY_NEEDED)
150 return;
151
152 for (i = 0; i < replay_map->rm_slots; i++)
153 if (replay_map->rm_replay_slots[i])
154 ocfs2_queue_recovery_completion(osb->journal, i, NULL,
Joseph Qied460cf2015-02-16 15:59:57 -0800155 NULL, NULL,
156 orphan_reco_type);
Srinivas Eeda9140db02009-03-06 14:21:46 -0800157 replay_map->rm_state = REPLAY_DONE;
158}
159
Joseph Qib519ea62015-06-24 16:55:34 -0700160static void ocfs2_free_replay_slots(struct ocfs2_super *osb)
Srinivas Eeda9140db02009-03-06 14:21:46 -0800161{
162 struct ocfs2_replay_map *replay_map = osb->replay_map;
163
164 if (!osb->replay_map)
165 return;
166
167 kfree(replay_map);
168 osb->replay_map = NULL;
169}
170
Joel Becker553abd02008-02-01 12:03:57 -0800171int ocfs2_recovery_init(struct ocfs2_super *osb)
172{
173 struct ocfs2_recovery_map *rm;
174
175 mutex_init(&osb->recovery_lock);
176 osb->disable_recovery = 0;
177 osb->recovery_thread_task = NULL;
178 init_waitqueue_head(&osb->recovery_event);
179
180 rm = kzalloc(sizeof(struct ocfs2_recovery_map) +
181 osb->max_slots * sizeof(unsigned int),
182 GFP_KERNEL);
183 if (!rm) {
184 mlog_errno(-ENOMEM);
185 return -ENOMEM;
186 }
187
188 rm->rm_entries = (unsigned int *)((char *)rm +
189 sizeof(struct ocfs2_recovery_map));
190 osb->recovery_map = rm;
191
192 return 0;
193}
194
195/* we can't grab the goofy sem lock from inside wait_event, so we use
196 * memory barriers to make sure that we'll see the null task before
197 * being woken up */
198static int ocfs2_recovery_thread_running(struct ocfs2_super *osb)
199{
200 mb();
201 return osb->recovery_thread_task != NULL;
202}
203
204void ocfs2_recovery_exit(struct ocfs2_super *osb)
205{
206 struct ocfs2_recovery_map *rm;
207
208 /* disable any new recovery threads and wait for any currently
209 * running ones to exit. Do this before setting the vol_state. */
210 mutex_lock(&osb->recovery_lock);
211 osb->disable_recovery = 1;
212 mutex_unlock(&osb->recovery_lock);
213 wait_event(osb->recovery_event, !ocfs2_recovery_thread_running(osb));
214
215 /* At this point, we know that no more recovery threads can be
216 * launched, so wait for any recovery completion work to
217 * complete. */
Yi Lib918c432019-10-18 20:20:08 -0700218 if (osb->ocfs2_wq)
219 flush_workqueue(osb->ocfs2_wq);
Joel Becker553abd02008-02-01 12:03:57 -0800220
221 /*
222 * Now that recovery is shut down, and the osb is about to be
223 * freed, the osb_lock is not taken here.
224 */
225 rm = osb->recovery_map;
226 /* XXX: Should we bug if there are dirty entries? */
227
228 kfree(rm);
229}
230
231static int __ocfs2_recovery_map_test(struct ocfs2_super *osb,
232 unsigned int node_num)
233{
234 int i;
235 struct ocfs2_recovery_map *rm = osb->recovery_map;
236
237 assert_spin_locked(&osb->osb_lock);
238
239 for (i = 0; i < rm->rm_used; i++) {
240 if (rm->rm_entries[i] == node_num)
241 return 1;
242 }
243
244 return 0;
245}
246
247/* Behaves like test-and-set. Returns the previous value */
248static int ocfs2_recovery_map_set(struct ocfs2_super *osb,
249 unsigned int node_num)
250{
251 struct ocfs2_recovery_map *rm = osb->recovery_map;
252
253 spin_lock(&osb->osb_lock);
254 if (__ocfs2_recovery_map_test(osb, node_num)) {
255 spin_unlock(&osb->osb_lock);
256 return 1;
257 }
258
259 /* XXX: Can this be exploited? Not from o2dlm... */
260 BUG_ON(rm->rm_used >= osb->max_slots);
261
262 rm->rm_entries[rm->rm_used] = node_num;
263 rm->rm_used++;
264 spin_unlock(&osb->osb_lock);
265
266 return 0;
267}
268
269static void ocfs2_recovery_map_clear(struct ocfs2_super *osb,
270 unsigned int node_num)
271{
272 int i;
273 struct ocfs2_recovery_map *rm = osb->recovery_map;
274
275 spin_lock(&osb->osb_lock);
276
277 for (i = 0; i < rm->rm_used; i++) {
278 if (rm->rm_entries[i] == node_num)
279 break;
280 }
281
282 if (i < rm->rm_used) {
283 /* XXX: be careful with the pointer math */
284 memmove(&(rm->rm_entries[i]), &(rm->rm_entries[i + 1]),
285 (rm->rm_used - i - 1) * sizeof(unsigned int));
286 rm->rm_used--;
287 }
288
289 spin_unlock(&osb->osb_lock);
290}
291
Mark Fashehccd979b2005-12-15 14:31:24 -0800292static int ocfs2_commit_cache(struct ocfs2_super *osb)
293{
294 int status = 0;
295 unsigned int flushed;
Mark Fashehccd979b2005-12-15 14:31:24 -0800296 struct ocfs2_journal *journal = NULL;
297
Mark Fashehccd979b2005-12-15 14:31:24 -0800298 journal = osb->journal;
299
300 /* Flush all pending commits and checkpoint the journal. */
301 down_write(&journal->j_trans_barrier);
302
Tao Mab4107952011-02-24 14:15:35 +0800303 flushed = atomic_read(&journal->j_num_trans);
304 trace_ocfs2_commit_cache_begin(flushed);
305 if (flushed == 0) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800306 up_write(&journal->j_trans_barrier);
Mark Fashehccd979b2005-12-15 14:31:24 -0800307 goto finally;
308 }
309
Joel Becker2b4e30f2008-09-03 20:03:41 -0700310 jbd2_journal_lock_updates(journal->j_journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +0000311 status = jbd2_journal_flush(journal->j_journal, 0);
Joel Becker2b4e30f2008-09-03 20:03:41 -0700312 jbd2_journal_unlock_updates(journal->j_journal);
Mark Fashehccd979b2005-12-15 14:31:24 -0800313 if (status < 0) {
314 up_write(&journal->j_trans_barrier);
315 mlog_errno(status);
316 goto finally;
317 }
318
Tao Maf9c57ad2010-08-02 11:02:13 +0800319 ocfs2_inc_trans_id(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -0800320
321 flushed = atomic_read(&journal->j_num_trans);
322 atomic_set(&journal->j_num_trans, 0);
323 up_write(&journal->j_trans_barrier);
324
Tao Mab4107952011-02-24 14:15:35 +0800325 trace_ocfs2_commit_cache_end(journal->j_trans_id, flushed);
Mark Fashehccd979b2005-12-15 14:31:24 -0800326
Mark Fasheh34d024f2007-09-24 15:56:19 -0700327 ocfs2_wake_downconvert_thread(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800328 wake_up(&journal->j_checkpointed);
329finally:
Mark Fashehccd979b2005-12-15 14:31:24 -0800330 return status;
331}
332
Mark Fasheh1fabe142006-10-09 18:11:45 -0700333handle_t *ocfs2_start_trans(struct ocfs2_super *osb, int max_buffs)
Mark Fashehccd979b2005-12-15 14:31:24 -0800334{
Mark Fashehccd979b2005-12-15 14:31:24 -0800335 journal_t *journal = osb->journal->j_journal;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700336 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800337
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +0100338 BUG_ON(!osb || !osb->journal->j_journal);
Mark Fashehccd979b2005-12-15 14:31:24 -0800339
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700340 if (ocfs2_is_hard_readonly(osb))
341 return ERR_PTR(-EROFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800342
343 BUG_ON(osb->journal->j_state == OCFS2_JOURNAL_FREE);
344 BUG_ON(max_buffs <= 0);
345
Jan Kara90e86a62008-08-27 22:30:28 +0200346 /* Nested transaction? Just return the handle... */
347 if (journal_current_handle())
348 return jbd2_journal_start(journal, max_buffs);
Mark Fashehccd979b2005-12-15 14:31:24 -0800349
Jan Karafef69252012-06-12 16:20:40 +0200350 sb_start_intwrite(osb->sb);
351
Mark Fashehccd979b2005-12-15 14:31:24 -0800352 down_read(&osb->journal->j_trans_barrier);
353
Joel Becker2b4e30f2008-09-03 20:03:41 -0700354 handle = jbd2_journal_start(journal, max_buffs);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700355 if (IS_ERR(handle)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800356 up_read(&osb->journal->j_trans_barrier);
Jan Karafef69252012-06-12 16:20:40 +0200357 sb_end_intwrite(osb->sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800358
Mark Fasheh1fabe142006-10-09 18:11:45 -0700359 mlog_errno(PTR_ERR(handle));
Mark Fashehccd979b2005-12-15 14:31:24 -0800360
361 if (is_journal_aborted(journal)) {
Joe Perches7ecef142015-09-04 15:44:51 -0700362 ocfs2_abort(osb->sb, "Detected aborted journal\n");
Mark Fasheh1fabe142006-10-09 18:11:45 -0700363 handle = ERR_PTR(-EROFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800364 }
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800365 } else {
366 if (!ocfs2_mount_local(osb))
367 atomic_inc(&(osb->journal->j_num_trans));
368 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800369
Mark Fashehccd979b2005-12-15 14:31:24 -0800370 return handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800371}
372
Mark Fasheh1fabe142006-10-09 18:11:45 -0700373int ocfs2_commit_trans(struct ocfs2_super *osb,
374 handle_t *handle)
Mark Fashehccd979b2005-12-15 14:31:24 -0800375{
Jan Kara90e86a62008-08-27 22:30:28 +0200376 int ret, nested;
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700377 struct ocfs2_journal *journal = osb->journal;
Mark Fashehccd979b2005-12-15 14:31:24 -0800378
379 BUG_ON(!handle);
380
Jan Kara90e86a62008-08-27 22:30:28 +0200381 nested = handle->h_ref > 1;
Joel Becker2b4e30f2008-09-03 20:03:41 -0700382 ret = jbd2_journal_stop(handle);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700383 if (ret < 0)
384 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -0800385
Jan Karafef69252012-06-12 16:20:40 +0200386 if (!nested) {
Jan Kara90e86a62008-08-27 22:30:28 +0200387 up_read(&journal->j_trans_barrier);
Jan Karafef69252012-06-12 16:20:40 +0200388 sb_end_intwrite(osb->sb);
389 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800390
Mark Fasheh1fabe142006-10-09 18:11:45 -0700391 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -0800392}
393
394/*
Tao Mac901fb02010-04-26 14:34:57 +0800395 * 'nblocks' is what you want to add to the current transaction.
Mark Fashehccd979b2005-12-15 14:31:24 -0800396 *
Joel Becker2b4e30f2008-09-03 20:03:41 -0700397 * This might call jbd2_journal_restart() which will commit dirty buffers
Mark Fashehe8aed342007-12-03 16:43:01 -0800398 * and then restart the transaction. Before calling
399 * ocfs2_extend_trans(), any changed blocks should have been
400 * dirtied. After calling it, all blocks which need to be changed must
401 * go through another set of journal_access/journal_dirty calls.
402 *
Mark Fashehccd979b2005-12-15 14:31:24 -0800403 * WARNING: This will not release any semaphores or disk locks taken
404 * during the transaction, so make sure they were taken *before*
405 * start_trans or we'll have ordering deadlocks.
406 *
407 * WARNING2: Note that we do *not* drop j_trans_barrier here. This is
408 * good because transaction ids haven't yet been recorded on the
409 * cluster locks associated with this handle.
410 */
Mark Fasheh1fc58142006-10-05 14:15:36 -0700411int ocfs2_extend_trans(handle_t *handle, int nblocks)
Mark Fashehccd979b2005-12-15 14:31:24 -0800412{
Tao Mac901fb02010-04-26 14:34:57 +0800413 int status, old_nblocks;
Mark Fashehccd979b2005-12-15 14:31:24 -0800414
415 BUG_ON(!handle);
Tao Mac901fb02010-04-26 14:34:57 +0800416 BUG_ON(nblocks < 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800417
Tao Mac901fb02010-04-26 14:34:57 +0800418 if (!nblocks)
419 return 0;
420
Jan Kara9797a902019-11-05 17:44:18 +0100421 old_nblocks = jbd2_handle_buffer_credits(handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800422
Tao Mab4107952011-02-24 14:15:35 +0800423 trace_ocfs2_extend_trans(old_nblocks, nblocks);
Mark Fashehccd979b2005-12-15 14:31:24 -0800424
Joel Beckere407e392008-06-12 22:35:39 -0700425#ifdef CONFIG_OCFS2_DEBUG_FS
Mark Fasheh0879c582007-12-03 16:42:19 -0800426 status = 1;
427#else
Jan Karafdc3ef82019-11-05 17:44:26 +0100428 status = jbd2_journal_extend(handle, nblocks, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800429 if (status < 0) {
430 mlog_errno(status);
431 goto bail;
432 }
Mark Fasheh0879c582007-12-03 16:42:19 -0800433#endif
Mark Fashehccd979b2005-12-15 14:31:24 -0800434
435 if (status > 0) {
Tao Mab4107952011-02-24 14:15:35 +0800436 trace_ocfs2_extend_trans_restart(old_nblocks + nblocks);
Tao Mac901fb02010-04-26 14:34:57 +0800437 status = jbd2_journal_restart(handle,
438 old_nblocks + nblocks);
Mark Fashehccd979b2005-12-15 14:31:24 -0800439 if (status < 0) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800440 mlog_errno(status);
441 goto bail;
442 }
Mark Fasheh01ddf1e2006-10-05 13:54:39 -0700443 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800444
445 status = 0;
446bail:
Mark Fashehccd979b2005-12-15 14:31:24 -0800447 return status;
448}
449
Younger Liu2b1e55c2013-09-11 14:19:44 -0700450/*
451 * If we have fewer than thresh credits, extend by OCFS2_MAX_TRANS_DATA.
452 * If that fails, restart the transaction & regain write access for the
453 * buffer head which is used for metadata modifications.
454 * Taken from Ext4: extend_or_restart_transaction()
455 */
456int ocfs2_allocate_extend_trans(handle_t *handle, int thresh)
457{
458 int status, old_nblks;
459
460 BUG_ON(!handle);
461
Jan Kara9797a902019-11-05 17:44:18 +0100462 old_nblks = jbd2_handle_buffer_credits(handle);
Younger Liu2b1e55c2013-09-11 14:19:44 -0700463 trace_ocfs2_allocate_extend_trans(old_nblks, thresh);
464
465 if (old_nblks < thresh)
466 return 0;
467
Jan Karafdc3ef82019-11-05 17:44:26 +0100468 status = jbd2_journal_extend(handle, OCFS2_MAX_TRANS_DATA, 0);
Younger Liu2b1e55c2013-09-11 14:19:44 -0700469 if (status < 0) {
470 mlog_errno(status);
471 goto bail;
472 }
473
474 if (status > 0) {
475 status = jbd2_journal_restart(handle, OCFS2_MAX_TRANS_DATA);
476 if (status < 0)
477 mlog_errno(status);
478 }
479
480bail:
481 return status;
482}
483
484
Joel Becker50655ae2008-09-11 15:53:07 -0700485struct ocfs2_triggers {
486 struct jbd2_buffer_trigger_type ot_triggers;
487 int ot_offset;
488};
489
490static inline struct ocfs2_triggers *to_ocfs2_trigger(struct jbd2_buffer_trigger_type *triggers)
491{
492 return container_of(triggers, struct ocfs2_triggers, ot_triggers);
493}
494
Jan Kara13ceef02010-07-14 07:56:33 +0200495static void ocfs2_frozen_trigger(struct jbd2_buffer_trigger_type *triggers,
Joel Becker50655ae2008-09-11 15:53:07 -0700496 struct buffer_head *bh,
497 void *data, size_t size)
498{
499 struct ocfs2_triggers *ot = to_ocfs2_trigger(triggers);
500
501 /*
502 * We aren't guaranteed to have the superblock here, so we
503 * must unconditionally compute the ecc data.
504 * __ocfs2_journal_access() will only set the triggers if
505 * metaecc is enabled.
506 */
507 ocfs2_block_check_compute(data, size, data + ot->ot_offset);
508}
509
510/*
511 * Quota blocks have their own trigger because the struct ocfs2_block_check
512 * offset depends on the blocksize.
513 */
Jan Kara13ceef02010-07-14 07:56:33 +0200514static void ocfs2_dq_frozen_trigger(struct jbd2_buffer_trigger_type *triggers,
Joel Becker50655ae2008-09-11 15:53:07 -0700515 struct buffer_head *bh,
516 void *data, size_t size)
517{
518 struct ocfs2_disk_dqtrailer *dqt =
519 ocfs2_block_dqtrailer(size, data);
520
521 /*
522 * We aren't guaranteed to have the superblock here, so we
523 * must unconditionally compute the ecc data.
524 * __ocfs2_journal_access() will only set the triggers if
525 * metaecc is enabled.
526 */
527 ocfs2_block_check_compute(data, size, &dqt->dq_check);
528}
529
Joel Beckerc175a512008-12-10 17:58:22 -0800530/*
531 * Directory blocks also have their own trigger because the
532 * struct ocfs2_block_check offset depends on the blocksize.
533 */
Jan Kara13ceef02010-07-14 07:56:33 +0200534static void ocfs2_db_frozen_trigger(struct jbd2_buffer_trigger_type *triggers,
Joel Beckerc175a512008-12-10 17:58:22 -0800535 struct buffer_head *bh,
536 void *data, size_t size)
537{
538 struct ocfs2_dir_block_trailer *trailer =
539 ocfs2_dir_trailer_from_size(size, data);
540
541 /*
542 * We aren't guaranteed to have the superblock here, so we
543 * must unconditionally compute the ecc data.
544 * __ocfs2_journal_access() will only set the triggers if
545 * metaecc is enabled.
546 */
547 ocfs2_block_check_compute(data, size, &trailer->db_check);
548}
549
Joel Becker50655ae2008-09-11 15:53:07 -0700550static void ocfs2_abort_trigger(struct jbd2_buffer_trigger_type *triggers,
551 struct buffer_head *bh)
552{
553 mlog(ML_ERROR,
554 "ocfs2_abort_trigger called by JBD2. bh = 0x%lx, "
555 "bh->b_blocknr = %llu\n",
556 (unsigned long)bh,
557 (unsigned long long)bh->b_blocknr);
558
Xue jiufei74e364a2015-06-24 16:55:20 -0700559 ocfs2_error(bh->b_bdev->bd_super,
Joel Becker50655ae2008-09-11 15:53:07 -0700560 "JBD2 has aborted our journal, ocfs2 cannot continue\n");
561}
562
563static struct ocfs2_triggers di_triggers = {
564 .ot_triggers = {
Jan Kara13ceef02010-07-14 07:56:33 +0200565 .t_frozen = ocfs2_frozen_trigger,
Joel Becker50655ae2008-09-11 15:53:07 -0700566 .t_abort = ocfs2_abort_trigger,
567 },
568 .ot_offset = offsetof(struct ocfs2_dinode, i_check),
569};
570
571static struct ocfs2_triggers eb_triggers = {
572 .ot_triggers = {
Jan Kara13ceef02010-07-14 07:56:33 +0200573 .t_frozen = ocfs2_frozen_trigger,
Joel Becker50655ae2008-09-11 15:53:07 -0700574 .t_abort = ocfs2_abort_trigger,
575 },
576 .ot_offset = offsetof(struct ocfs2_extent_block, h_check),
577};
578
Tao Ma93c97082009-08-18 11:19:20 +0800579static struct ocfs2_triggers rb_triggers = {
580 .ot_triggers = {
Jan Kara13ceef02010-07-14 07:56:33 +0200581 .t_frozen = ocfs2_frozen_trigger,
Tao Ma93c97082009-08-18 11:19:20 +0800582 .t_abort = ocfs2_abort_trigger,
583 },
584 .ot_offset = offsetof(struct ocfs2_refcount_block, rf_check),
585};
586
Joel Becker50655ae2008-09-11 15:53:07 -0700587static struct ocfs2_triggers gd_triggers = {
588 .ot_triggers = {
Jan Kara13ceef02010-07-14 07:56:33 +0200589 .t_frozen = ocfs2_frozen_trigger,
Joel Becker50655ae2008-09-11 15:53:07 -0700590 .t_abort = ocfs2_abort_trigger,
591 },
592 .ot_offset = offsetof(struct ocfs2_group_desc, bg_check),
593};
594
Joel Beckerc175a512008-12-10 17:58:22 -0800595static struct ocfs2_triggers db_triggers = {
596 .ot_triggers = {
Jan Kara13ceef02010-07-14 07:56:33 +0200597 .t_frozen = ocfs2_db_frozen_trigger,
Joel Beckerc175a512008-12-10 17:58:22 -0800598 .t_abort = ocfs2_abort_trigger,
599 },
600};
601
Joel Becker50655ae2008-09-11 15:53:07 -0700602static struct ocfs2_triggers xb_triggers = {
603 .ot_triggers = {
Jan Kara13ceef02010-07-14 07:56:33 +0200604 .t_frozen = ocfs2_frozen_trigger,
Joel Becker50655ae2008-09-11 15:53:07 -0700605 .t_abort = ocfs2_abort_trigger,
606 },
607 .ot_offset = offsetof(struct ocfs2_xattr_block, xb_check),
608};
609
610static struct ocfs2_triggers dq_triggers = {
611 .ot_triggers = {
Jan Kara13ceef02010-07-14 07:56:33 +0200612 .t_frozen = ocfs2_dq_frozen_trigger,
Joel Becker50655ae2008-09-11 15:53:07 -0700613 .t_abort = ocfs2_abort_trigger,
614 },
615};
616
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800617static struct ocfs2_triggers dr_triggers = {
618 .ot_triggers = {
Jan Kara13ceef02010-07-14 07:56:33 +0200619 .t_frozen = ocfs2_frozen_trigger,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800620 .t_abort = ocfs2_abort_trigger,
621 },
622 .ot_offset = offsetof(struct ocfs2_dx_root_block, dr_check),
623};
624
625static struct ocfs2_triggers dl_triggers = {
626 .ot_triggers = {
Jan Kara13ceef02010-07-14 07:56:33 +0200627 .t_frozen = ocfs2_frozen_trigger,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800628 .t_abort = ocfs2_abort_trigger,
629 },
630 .ot_offset = offsetof(struct ocfs2_dx_leaf, dl_check),
631};
632
Joel Becker50655ae2008-09-11 15:53:07 -0700633static int __ocfs2_journal_access(handle_t *handle,
Joel Becker0cf2f762009-02-12 16:41:25 -0800634 struct ocfs2_caching_info *ci,
Joel Becker50655ae2008-09-11 15:53:07 -0700635 struct buffer_head *bh,
636 struct ocfs2_triggers *triggers,
637 int type)
Mark Fashehccd979b2005-12-15 14:31:24 -0800638{
639 int status;
Joel Becker0cf2f762009-02-12 16:41:25 -0800640 struct ocfs2_super *osb =
641 OCFS2_SB(ocfs2_metadata_cache_get_super(ci));
Mark Fashehccd979b2005-12-15 14:31:24 -0800642
Joel Becker0cf2f762009-02-12 16:41:25 -0800643 BUG_ON(!ci || !ci->ci_ops);
Mark Fashehccd979b2005-12-15 14:31:24 -0800644 BUG_ON(!handle);
645 BUG_ON(!bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800646
Tao Mab4107952011-02-24 14:15:35 +0800647 trace_ocfs2_journal_access(
648 (unsigned long long)ocfs2_metadata_cache_owner(ci),
649 (unsigned long long)bh->b_blocknr, type, bh->b_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800650
651 /* we can safely remove this assertion after testing. */
652 if (!buffer_uptodate(bh)) {
653 mlog(ML_ERROR, "giving me a buffer that's not uptodate!\n");
piaojund9841872018-01-31 16:15:32 -0800654 mlog(ML_ERROR, "b_blocknr=%llu, b_state=0x%lx\n",
655 (unsigned long long)bh->b_blocknr, bh->b_state);
Joseph Qiacf8fdb2015-09-04 15:43:43 -0700656
657 lock_buffer(bh);
658 /*
piaojund9841872018-01-31 16:15:32 -0800659 * A previous transaction with a couple of buffer heads fail
660 * to checkpoint, so all the bhs are marked as BH_Write_EIO.
661 * For current transaction, the bh is just among those error
662 * bhs which previous transaction handle. We can't just clear
663 * its BH_Write_EIO and reuse directly, since other bhs are
664 * not written to disk yet and that will cause metadata
665 * inconsistency. So we should set fs read-only to avoid
666 * further damage.
Joseph Qiacf8fdb2015-09-04 15:43:43 -0700667 */
668 if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) {
Joseph Qiacf8fdb2015-09-04 15:43:43 -0700669 unlock_buffer(bh);
piaojund9841872018-01-31 16:15:32 -0800670 return ocfs2_error(osb->sb, "A previous attempt to "
671 "write this buffer head failed\n");
Joseph Qiacf8fdb2015-09-04 15:43:43 -0700672 }
673 unlock_buffer(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800674 }
675
Joel Becker0cf2f762009-02-12 16:41:25 -0800676 /* Set the current transaction information on the ci so
Mark Fashehccd979b2005-12-15 14:31:24 -0800677 * that the locking code knows whether it can drop it's locks
Joel Becker0cf2f762009-02-12 16:41:25 -0800678 * on this ci or not. We're protected from the commit
Mark Fashehccd979b2005-12-15 14:31:24 -0800679 * thread updating the current transaction id until
680 * ocfs2_commit_trans() because ocfs2_start_trans() took
681 * j_trans_barrier for us. */
Joel Becker0cf2f762009-02-12 16:41:25 -0800682 ocfs2_set_ci_lock_trans(osb->journal, ci);
Mark Fashehccd979b2005-12-15 14:31:24 -0800683
Joel Becker0cf2f762009-02-12 16:41:25 -0800684 ocfs2_metadata_cache_io_lock(ci);
Mark Fashehccd979b2005-12-15 14:31:24 -0800685 switch (type) {
686 case OCFS2_JOURNAL_ACCESS_CREATE:
687 case OCFS2_JOURNAL_ACCESS_WRITE:
Joel Becker2b4e30f2008-09-03 20:03:41 -0700688 status = jbd2_journal_get_write_access(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800689 break;
690
691 case OCFS2_JOURNAL_ACCESS_UNDO:
Joel Becker2b4e30f2008-09-03 20:03:41 -0700692 status = jbd2_journal_get_undo_access(handle, bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800693 break;
694
695 default:
696 status = -EINVAL;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200697 mlog(ML_ERROR, "Unknown access type!\n");
Mark Fashehccd979b2005-12-15 14:31:24 -0800698 }
Joel Becker0cf2f762009-02-12 16:41:25 -0800699 if (!status && ocfs2_meta_ecc(osb) && triggers)
Joel Becker50655ae2008-09-11 15:53:07 -0700700 jbd2_journal_set_triggers(bh, &triggers->ot_triggers);
Joel Becker0cf2f762009-02-12 16:41:25 -0800701 ocfs2_metadata_cache_io_unlock(ci);
Mark Fashehccd979b2005-12-15 14:31:24 -0800702
703 if (status < 0)
704 mlog(ML_ERROR, "Error %d getting %d access to buffer!\n",
705 status, type);
706
Mark Fashehccd979b2005-12-15 14:31:24 -0800707 return status;
708}
709
Joel Becker0cf2f762009-02-12 16:41:25 -0800710int ocfs2_journal_access_di(handle_t *handle, struct ocfs2_caching_info *ci,
Joel Becker50655ae2008-09-11 15:53:07 -0700711 struct buffer_head *bh, int type)
712{
Joel Becker0cf2f762009-02-12 16:41:25 -0800713 return __ocfs2_journal_access(handle, ci, bh, &di_triggers, type);
Joel Becker50655ae2008-09-11 15:53:07 -0700714}
715
Joel Becker0cf2f762009-02-12 16:41:25 -0800716int ocfs2_journal_access_eb(handle_t *handle, struct ocfs2_caching_info *ci,
Joel Becker50655ae2008-09-11 15:53:07 -0700717 struct buffer_head *bh, int type)
718{
Joel Becker0cf2f762009-02-12 16:41:25 -0800719 return __ocfs2_journal_access(handle, ci, bh, &eb_triggers, type);
Joel Becker50655ae2008-09-11 15:53:07 -0700720}
721
Tao Ma93c97082009-08-18 11:19:20 +0800722int ocfs2_journal_access_rb(handle_t *handle, struct ocfs2_caching_info *ci,
723 struct buffer_head *bh, int type)
724{
725 return __ocfs2_journal_access(handle, ci, bh, &rb_triggers,
726 type);
727}
728
Joel Becker0cf2f762009-02-12 16:41:25 -0800729int ocfs2_journal_access_gd(handle_t *handle, struct ocfs2_caching_info *ci,
Joel Becker50655ae2008-09-11 15:53:07 -0700730 struct buffer_head *bh, int type)
731{
Joel Becker0cf2f762009-02-12 16:41:25 -0800732 return __ocfs2_journal_access(handle, ci, bh, &gd_triggers, type);
Joel Becker50655ae2008-09-11 15:53:07 -0700733}
734
Joel Becker0cf2f762009-02-12 16:41:25 -0800735int ocfs2_journal_access_db(handle_t *handle, struct ocfs2_caching_info *ci,
Joel Becker50655ae2008-09-11 15:53:07 -0700736 struct buffer_head *bh, int type)
737{
Joel Becker0cf2f762009-02-12 16:41:25 -0800738 return __ocfs2_journal_access(handle, ci, bh, &db_triggers, type);
Joel Becker50655ae2008-09-11 15:53:07 -0700739}
740
Joel Becker0cf2f762009-02-12 16:41:25 -0800741int ocfs2_journal_access_xb(handle_t *handle, struct ocfs2_caching_info *ci,
Joel Becker50655ae2008-09-11 15:53:07 -0700742 struct buffer_head *bh, int type)
743{
Joel Becker0cf2f762009-02-12 16:41:25 -0800744 return __ocfs2_journal_access(handle, ci, bh, &xb_triggers, type);
Joel Becker50655ae2008-09-11 15:53:07 -0700745}
746
Joel Becker0cf2f762009-02-12 16:41:25 -0800747int ocfs2_journal_access_dq(handle_t *handle, struct ocfs2_caching_info *ci,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800748 struct buffer_head *bh, int type)
749{
Joel Becker0cf2f762009-02-12 16:41:25 -0800750 return __ocfs2_journal_access(handle, ci, bh, &dq_triggers, type);
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800751}
752
Joel Becker0cf2f762009-02-12 16:41:25 -0800753int ocfs2_journal_access_dr(handle_t *handle, struct ocfs2_caching_info *ci,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800754 struct buffer_head *bh, int type)
755{
Joel Becker0cf2f762009-02-12 16:41:25 -0800756 return __ocfs2_journal_access(handle, ci, bh, &dr_triggers, type);
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800757}
758
Joel Becker0cf2f762009-02-12 16:41:25 -0800759int ocfs2_journal_access_dl(handle_t *handle, struct ocfs2_caching_info *ci,
760 struct buffer_head *bh, int type)
761{
762 return __ocfs2_journal_access(handle, ci, bh, &dl_triggers, type);
763}
764
765int ocfs2_journal_access(handle_t *handle, struct ocfs2_caching_info *ci,
Joel Becker50655ae2008-09-11 15:53:07 -0700766 struct buffer_head *bh, int type)
767{
Joel Becker0cf2f762009-02-12 16:41:25 -0800768 return __ocfs2_journal_access(handle, ci, bh, NULL, type);
Joel Becker50655ae2008-09-11 15:53:07 -0700769}
770
Joel Beckerec20cec2010-03-19 14:13:52 -0700771void ocfs2_journal_dirty(handle_t *handle, struct buffer_head *bh)
Mark Fashehccd979b2005-12-15 14:31:24 -0800772{
773 int status;
774
Tao Mab4107952011-02-24 14:15:35 +0800775 trace_ocfs2_journal_dirty((unsigned long long)bh->b_blocknr);
Mark Fashehccd979b2005-12-15 14:31:24 -0800776
Joel Becker2b4e30f2008-09-03 20:03:41 -0700777 status = jbd2_journal_dirty_metadata(handle, bh);
Joseph Qie272e7f2015-06-24 16:55:12 -0700778 if (status) {
779 mlog_errno(status);
780 if (!is_handle_aborted(handle)) {
781 journal_t *journal = handle->h_transaction->t_journal;
782 struct super_block *sb = bh->b_bdev->bd_super;
783
784 mlog(ML_ERROR, "jbd2_journal_dirty_metadata failed. "
785 "Aborting transaction and journal.\n");
786 handle->h_err = status;
787 jbd2_journal_abort_handle(handle);
788 jbd2_journal_abort(journal, status);
789 ocfs2_abort(sb, "Journal already aborted.\n");
790 }
791 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800792}
793
Joel Becker2b4e30f2008-09-03 20:03:41 -0700794#define OCFS2_DEFAULT_COMMIT_INTERVAL (HZ * JBD2_DEFAULT_MAX_COMMIT_AGE)
Mark Fashehccd979b2005-12-15 14:31:24 -0800795
796void ocfs2_set_journal_params(struct ocfs2_super *osb)
797{
798 journal_t *journal = osb->journal->j_journal;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800799 unsigned long commit_interval = OCFS2_DEFAULT_COMMIT_INTERVAL;
800
801 if (osb->osb_commit_interval)
802 commit_interval = osb->osb_commit_interval;
Mark Fashehccd979b2005-12-15 14:31:24 -0800803
Theodore Ts'oa931da62010-08-03 21:35:12 -0400804 write_lock(&journal->j_state_lock);
Mark Fashehd147b3d2007-11-07 14:40:36 -0800805 journal->j_commit_interval = commit_interval;
Mark Fashehccd979b2005-12-15 14:31:24 -0800806 if (osb->s_mount_opt & OCFS2_MOUNT_BARRIER)
Joel Becker2b4e30f2008-09-03 20:03:41 -0700807 journal->j_flags |= JBD2_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -0800808 else
Joel Becker2b4e30f2008-09-03 20:03:41 -0700809 journal->j_flags &= ~JBD2_BARRIER;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400810 write_unlock(&journal->j_state_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -0800811}
812
Valentin Vidicda5e7c82021-11-05 13:34:49 -0700813int ocfs2_journal_init(struct ocfs2_super *osb, int *dirty)
Mark Fashehccd979b2005-12-15 14:31:24 -0800814{
815 int status = -1;
816 struct inode *inode = NULL; /* the journal inode */
817 journal_t *j_journal = NULL;
Valentin Vidicda5e7c82021-11-05 13:34:49 -0700818 struct ocfs2_journal *journal = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800819 struct ocfs2_dinode *di = NULL;
820 struct buffer_head *bh = NULL;
Mark Fashehe63aecb62007-10-18 15:30:42 -0700821 int inode_lock = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800822
Valentin Vidicda5e7c82021-11-05 13:34:49 -0700823 /* initialize our journal structure */
824 journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL);
825 if (!journal) {
826 mlog(ML_ERROR, "unable to alloc journal\n");
827 status = -ENOMEM;
828 goto done;
829 }
830 osb->journal = journal;
831 journal->j_osb = osb;
Mark Fashehccd979b2005-12-15 14:31:24 -0800832
Valentin Vidicda5e7c82021-11-05 13:34:49 -0700833 atomic_set(&journal->j_num_trans, 0);
834 init_rwsem(&journal->j_trans_barrier);
835 init_waitqueue_head(&journal->j_checkpointed);
836 spin_lock_init(&journal->j_lock);
837 journal->j_trans_id = 1UL;
838 INIT_LIST_HEAD(&journal->j_la_cleanups);
839 INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery);
840 journal->j_state = OCFS2_JOURNAL_FREE;
Mark Fashehccd979b2005-12-15 14:31:24 -0800841
842 /* already have the inode for our journal */
843 inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE,
844 osb->slot_num);
845 if (inode == NULL) {
846 status = -EACCES;
847 mlog_errno(status);
848 goto done;
849 }
850 if (is_bad_inode(inode)) {
851 mlog(ML_ERROR, "access error (bad inode)\n");
852 iput(inode);
853 inode = NULL;
854 status = -EACCES;
855 goto done;
856 }
857
858 SET_INODE_JOURNAL(inode);
859 OCFS2_I(inode)->ip_open_count++;
860
Mark Fasheh6eff5792006-01-18 10:31:47 -0800861 /* Skip recovery waits here - journal inode metadata never
862 * changes in a live cluster so it can be considered an
863 * exception to the rule. */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700864 status = ocfs2_inode_lock_full(inode, &bh, 1, OCFS2_META_LOCK_RECOVERY);
Mark Fashehccd979b2005-12-15 14:31:24 -0800865 if (status < 0) {
866 if (status != -ERESTARTSYS)
867 mlog(ML_ERROR, "Could not get lock on journal!\n");
868 goto done;
869 }
870
Mark Fashehe63aecb62007-10-18 15:30:42 -0700871 inode_lock = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -0800872 di = (struct ocfs2_dinode *)bh->b_data;
873
Junxiao Bif17c20d2013-09-11 14:19:45 -0700874 if (i_size_read(inode) < OCFS2_MIN_JOURNAL_SIZE) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800875 mlog(ML_ERROR, "Journal file size (%lld) is too small!\n",
Junxiao Bif17c20d2013-09-11 14:19:45 -0700876 i_size_read(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800877 status = -EINVAL;
878 goto done;
879 }
880
Junxiao Bif17c20d2013-09-11 14:19:45 -0700881 trace_ocfs2_journal_init(i_size_read(inode),
Tao Mab4107952011-02-24 14:15:35 +0800882 (unsigned long long)inode->i_blocks,
883 OCFS2_I(inode)->ip_clusters);
Mark Fashehccd979b2005-12-15 14:31:24 -0800884
885 /* call the kernels journal init function now */
Joel Becker2b4e30f2008-09-03 20:03:41 -0700886 j_journal = jbd2_journal_init_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800887 if (j_journal == NULL) {
888 mlog(ML_ERROR, "Linux journal layer error\n");
889 status = -EINVAL;
890 goto done;
891 }
892
Harshad Shirwadkarede7dc72020-11-05 19:58:54 -0800893 trace_ocfs2_journal_init_maxlen(j_journal->j_total_len);
Mark Fashehccd979b2005-12-15 14:31:24 -0800894
895 *dirty = (le32_to_cpu(di->id1.journal1.ij_flags) &
896 OCFS2_JOURNAL_DIRTY_FL);
897
898 journal->j_journal = j_journal;
Mauricio Faria de Oliveira342af942020-10-05 21:48:39 -0300899 journal->j_journal->j_submit_inode_data_buffers =
900 jbd2_journal_submit_inode_data_buffers;
901 journal->j_journal->j_finish_inode_data_buffers =
902 jbd2_journal_finish_inode_data_buffers;
Mark Fashehccd979b2005-12-15 14:31:24 -0800903 journal->j_inode = inode;
904 journal->j_bh = bh;
905
906 ocfs2_set_journal_params(osb);
907
908 journal->j_state = OCFS2_JOURNAL_LOADED;
909
910 status = 0;
911done:
912 if (status < 0) {
Mark Fashehe63aecb62007-10-18 15:30:42 -0700913 if (inode_lock)
914 ocfs2_inode_unlock(inode, 1);
Mark Fasheha81cb882008-10-07 14:25:16 -0700915 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800916 if (inode) {
917 OCFS2_I(inode)->ip_open_count--;
918 iput(inode);
919 }
920 }
921
Mark Fashehccd979b2005-12-15 14:31:24 -0800922 return status;
923}
924
Sunil Mushran539d8262008-07-14 17:31:10 -0700925static void ocfs2_bump_recovery_generation(struct ocfs2_dinode *di)
926{
927 le32_add_cpu(&(di->id1.journal1.ij_recovery_generation), 1);
928}
929
930static u32 ocfs2_get_recovery_generation(struct ocfs2_dinode *di)
931{
932 return le32_to_cpu(di->id1.journal1.ij_recovery_generation);
933}
934
Mark Fashehccd979b2005-12-15 14:31:24 -0800935static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb,
Sunil Mushran539d8262008-07-14 17:31:10 -0700936 int dirty, int replayed)
Mark Fashehccd979b2005-12-15 14:31:24 -0800937{
938 int status;
939 unsigned int flags;
940 struct ocfs2_journal *journal = osb->journal;
941 struct buffer_head *bh = journal->j_bh;
942 struct ocfs2_dinode *fe;
943
Mark Fashehccd979b2005-12-15 14:31:24 -0800944 fe = (struct ocfs2_dinode *)bh->b_data;
Joel Becker10995aa2008-11-13 14:49:12 -0800945
946 /* The journal bh on the osb always comes from ocfs2_journal_init()
947 * and was validated there inside ocfs2_inode_lock_full(). It's a
948 * code bug if we mess it up. */
949 BUG_ON(!OCFS2_IS_VALID_DINODE(fe));
Mark Fashehccd979b2005-12-15 14:31:24 -0800950
951 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
952 if (dirty)
953 flags |= OCFS2_JOURNAL_DIRTY_FL;
954 else
955 flags &= ~OCFS2_JOURNAL_DIRTY_FL;
956 fe->id1.journal1.ij_flags = cpu_to_le32(flags);
957
Sunil Mushran539d8262008-07-14 17:31:10 -0700958 if (replayed)
959 ocfs2_bump_recovery_generation(fe);
960
Joel Becker13723d02008-10-17 19:25:01 -0700961 ocfs2_compute_meta_ecc(osb->sb, bh->b_data, &fe->i_check);
Joel Becker8cb471e2009-02-10 20:00:41 -0800962 status = ocfs2_write_block(osb, bh, INODE_CACHE(journal->j_inode));
Mark Fashehccd979b2005-12-15 14:31:24 -0800963 if (status < 0)
964 mlog_errno(status);
965
Mark Fashehccd979b2005-12-15 14:31:24 -0800966 return status;
967}
968
969/*
970 * If the journal has been kmalloc'd it needs to be freed after this
971 * call.
972 */
973void ocfs2_journal_shutdown(struct ocfs2_super *osb)
974{
975 struct ocfs2_journal *journal = NULL;
976 int status = 0;
977 struct inode *inode = NULL;
978 int num_running_trans = 0;
979
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +0100980 BUG_ON(!osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800981
982 journal = osb->journal;
983 if (!journal)
984 goto done;
985
986 inode = journal->j_inode;
987
988 if (journal->j_state != OCFS2_JOURNAL_LOADED)
989 goto done;
990
Joel Becker2b4e30f2008-09-03 20:03:41 -0700991 /* need to inc inode use count - jbd2_journal_destroy will iput. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800992 if (!igrab(inode))
993 BUG();
994
995 num_running_trans = atomic_read(&(osb->journal->j_num_trans));
Tao Mab4107952011-02-24 14:15:35 +0800996 trace_ocfs2_journal_shutdown(num_running_trans);
Mark Fashehccd979b2005-12-15 14:31:24 -0800997
998 /* Do a commit_cache here. It will flush our journal, *and*
999 * release any locks that are still held.
1000 * set the SHUTDOWN flag and release the trans lock.
1001 * the commit thread will take the trans lock for us below. */
1002 journal->j_state = OCFS2_JOURNAL_IN_SHUTDOWN;
1003
1004 /* The OCFS2_JOURNAL_IN_SHUTDOWN will signal to commit_cache to not
1005 * drop the trans_lock (which we want to hold until we
1006 * completely destroy the journal. */
1007 if (osb->commit_task) {
1008 /* Wait for the commit thread */
Tao Mab4107952011-02-24 14:15:35 +08001009 trace_ocfs2_journal_shutdown_wait(osb->commit_task);
Mark Fashehccd979b2005-12-15 14:31:24 -08001010 kthread_stop(osb->commit_task);
1011 osb->commit_task = NULL;
1012 }
1013
1014 BUG_ON(atomic_read(&(osb->journal->j_num_trans)) != 0);
1015
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001016 if (ocfs2_mount_local(osb)) {
Joel Becker2b4e30f2008-09-03 20:03:41 -07001017 jbd2_journal_lock_updates(journal->j_journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +00001018 status = jbd2_journal_flush(journal->j_journal, 0);
Joel Becker2b4e30f2008-09-03 20:03:41 -07001019 jbd2_journal_unlock_updates(journal->j_journal);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001020 if (status < 0)
1021 mlog_errno(status);
1022 }
1023
Junxiao Bid85400a2018-12-28 00:32:53 -08001024 /* Shutdown the kernel journal system */
1025 if (!jbd2_journal_destroy(journal->j_journal) && !status) {
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001026 /*
1027 * Do not toggle if flush was unsuccessful otherwise
1028 * will leave dirty metadata in a "clean" journal
1029 */
Sunil Mushran539d8262008-07-14 17:31:10 -07001030 status = ocfs2_journal_toggle_dirty(osb, 0, 0);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001031 if (status < 0)
1032 mlog_errno(status);
1033 }
Sunil Mushranae0dff62008-10-22 13:24:29 -07001034 journal->j_journal = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001035
1036 OCFS2_I(inode)->ip_open_count--;
1037
1038 /* unlock our journal */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001039 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001040
1041 brelse(journal->j_bh);
1042 journal->j_bh = NULL;
1043
1044 journal->j_state = OCFS2_JOURNAL_FREE;
1045
Mark Fashehccd979b2005-12-15 14:31:24 -08001046done:
Joseph Qi72865d92016-01-14 15:17:27 -08001047 iput(inode);
Valentin Vidicda5e7c82021-11-05 13:34:49 -07001048 kfree(journal);
1049 osb->journal = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001050}
1051
1052static void ocfs2_clear_journal_error(struct super_block *sb,
1053 journal_t *journal,
1054 int slot)
1055{
1056 int olderr;
1057
Joel Becker2b4e30f2008-09-03 20:03:41 -07001058 olderr = jbd2_journal_errno(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -08001059 if (olderr) {
1060 mlog(ML_ERROR, "File system error %d recorded in "
1061 "journal %u.\n", olderr, slot);
1062 mlog(ML_ERROR, "File system on device %s needs checking.\n",
1063 sb->s_id);
1064
Joel Becker2b4e30f2008-09-03 20:03:41 -07001065 jbd2_journal_ack_err(journal);
1066 jbd2_journal_clear_err(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -08001067 }
1068}
1069
Sunil Mushran539d8262008-07-14 17:31:10 -07001070int ocfs2_journal_load(struct ocfs2_journal *journal, int local, int replayed)
Mark Fashehccd979b2005-12-15 14:31:24 -08001071{
1072 int status = 0;
1073 struct ocfs2_super *osb;
1074
Julia Lawallb1f35502008-03-04 15:21:05 -08001075 BUG_ON(!journal);
Mark Fashehccd979b2005-12-15 14:31:24 -08001076
1077 osb = journal->j_osb;
1078
Joel Becker2b4e30f2008-09-03 20:03:41 -07001079 status = jbd2_journal_load(journal->j_journal);
Mark Fashehccd979b2005-12-15 14:31:24 -08001080 if (status < 0) {
1081 mlog(ML_ERROR, "Failed to load journal!\n");
1082 goto done;
1083 }
1084
1085 ocfs2_clear_journal_error(osb->sb, journal->j_journal, osb->slot_num);
1086
Kai Li397eac12020-01-04 13:00:18 -08001087 if (replayed) {
1088 jbd2_journal_lock_updates(journal->j_journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +00001089 status = jbd2_journal_flush(journal->j_journal, 0);
Kai Li397eac12020-01-04 13:00:18 -08001090 jbd2_journal_unlock_updates(journal->j_journal);
1091 if (status < 0)
1092 mlog_errno(status);
1093 }
1094
Sunil Mushran539d8262008-07-14 17:31:10 -07001095 status = ocfs2_journal_toggle_dirty(osb, 1, replayed);
Mark Fashehccd979b2005-12-15 14:31:24 -08001096 if (status < 0) {
1097 mlog_errno(status);
1098 goto done;
1099 }
1100
1101 /* Launch the commit thread */
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001102 if (!local) {
1103 osb->commit_task = kthread_run(ocfs2_commit_thread, osb,
Joseph Qi5afc44e2015-11-05 18:44:13 -08001104 "ocfs2cmt-%s", osb->uuid_str);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001105 if (IS_ERR(osb->commit_task)) {
1106 status = PTR_ERR(osb->commit_task);
1107 osb->commit_task = NULL;
1108 mlog(ML_ERROR, "unable to launch ocfs2commit thread, "
1109 "error=%d", status);
1110 goto done;
1111 }
1112 } else
Mark Fashehccd979b2005-12-15 14:31:24 -08001113 osb->commit_task = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001114
1115done:
Mark Fashehccd979b2005-12-15 14:31:24 -08001116 return status;
1117}
1118
1119
1120/* 'full' flag tells us whether we clear out all blocks or if we just
1121 * mark the journal clean */
1122int ocfs2_journal_wipe(struct ocfs2_journal *journal, int full)
1123{
1124 int status;
1125
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +01001126 BUG_ON(!journal);
Mark Fashehccd979b2005-12-15 14:31:24 -08001127
Joel Becker2b4e30f2008-09-03 20:03:41 -07001128 status = jbd2_journal_wipe(journal->j_journal, full);
Mark Fashehccd979b2005-12-15 14:31:24 -08001129 if (status < 0) {
1130 mlog_errno(status);
1131 goto bail;
1132 }
1133
Sunil Mushran539d8262008-07-14 17:31:10 -07001134 status = ocfs2_journal_toggle_dirty(journal->j_osb, 0, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001135 if (status < 0)
1136 mlog_errno(status);
1137
1138bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08001139 return status;
1140}
1141
Joel Becker553abd02008-02-01 12:03:57 -08001142static int ocfs2_recovery_completed(struct ocfs2_super *osb)
1143{
1144 int empty;
1145 struct ocfs2_recovery_map *rm = osb->recovery_map;
1146
1147 spin_lock(&osb->osb_lock);
1148 empty = (rm->rm_used == 0);
1149 spin_unlock(&osb->osb_lock);
1150
1151 return empty;
1152}
1153
1154void ocfs2_wait_for_recovery(struct ocfs2_super *osb)
1155{
1156 wait_event(osb->recovery_event, ocfs2_recovery_completed(osb));
1157}
1158
Mark Fashehccd979b2005-12-15 14:31:24 -08001159/*
1160 * JBD Might read a cached version of another nodes journal file. We
1161 * don't want this as this file changes often and we get no
1162 * notification on those changes. The only way to be sure that we've
1163 * got the most up to date version of those blocks then is to force
1164 * read them off disk. Just searching through the buffer cache won't
1165 * work as there may be pages backing this file which are still marked
1166 * up to date. We know things can't change on this file underneath us
1167 * as we have the lock by now :)
1168 */
1169static int ocfs2_force_read_journal(struct inode *inode)
1170{
1171 int status = 0;
Mark Fasheh4f902c32007-03-09 16:26:50 -08001172 int i;
Mark Fasheh8110b072007-03-22 16:53:23 -07001173 u64 v_blkno, p_blkno, p_blocks, num_blocks;
Junxiao Bi0b492f62016-07-26 15:21:32 -07001174 struct buffer_head *bh = NULL;
1175 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001176
Junxiao Bif17c20d2013-09-11 14:19:45 -07001177 num_blocks = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -08001178 v_blkno = 0;
Mark Fasheh8110b072007-03-22 16:53:23 -07001179 while (v_blkno < num_blocks) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001180 status = ocfs2_extent_map_get_blocks(inode, v_blkno,
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001181 &p_blkno, &p_blocks, NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001182 if (status < 0) {
1183 mlog_errno(status);
1184 goto bail;
1185 }
1186
Junxiao Bi0b492f62016-07-26 15:21:32 -07001187 for (i = 0; i < p_blocks; i++, p_blkno++) {
1188 bh = __find_get_block(osb->sb->s_bdev, p_blkno,
1189 osb->sb->s_blocksize);
1190 /* block not cached. */
1191 if (!bh)
1192 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -08001193
Junxiao Bi0b492f62016-07-26 15:21:32 -07001194 brelse(bh);
1195 bh = NULL;
1196 /* We are reading journal data which should not
1197 * be put in the uptodate cache.
1198 */
1199 status = ocfs2_read_blocks_sync(osb, p_blkno, 1, &bh);
1200 if (status < 0) {
1201 mlog_errno(status);
1202 goto bail;
1203 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001204
Junxiao Bi0b492f62016-07-26 15:21:32 -07001205 brelse(bh);
1206 bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001207 }
1208
1209 v_blkno += p_blocks;
1210 }
1211
1212bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08001213 return status;
1214}
1215
1216struct ocfs2_la_recovery_item {
1217 struct list_head lri_list;
1218 int lri_slot;
1219 struct ocfs2_dinode *lri_la_dinode;
1220 struct ocfs2_dinode *lri_tl_dinode;
Jan Kara22053632008-10-20 23:50:38 +02001221 struct ocfs2_quota_recovery *lri_qrec;
Joseph Qied460cf2015-02-16 15:59:57 -08001222 enum ocfs2_orphan_reco_type lri_orphan_reco_type;
Mark Fashehccd979b2005-12-15 14:31:24 -08001223};
1224
1225/* Does the second half of the recovery process. By this point, the
1226 * node is marked clean and can actually be considered recovered,
1227 * hence it's no longer in the recovery map, but there's still some
1228 * cleanup we can do which shouldn't happen within the recovery thread
1229 * as locking in that context becomes very difficult if we are to take
1230 * recovering nodes into account.
1231 *
1232 * NOTE: This function can and will sleep on recovery of other nodes
1233 * during cluster locking, just like any other ocfs2 process.
1234 */
David Howellsc4028952006-11-22 14:57:56 +00001235void ocfs2_complete_recovery(struct work_struct *work)
Mark Fashehccd979b2005-12-15 14:31:24 -08001236{
Tao Mab4107952011-02-24 14:15:35 +08001237 int ret = 0;
David Howellsc4028952006-11-22 14:57:56 +00001238 struct ocfs2_journal *journal =
1239 container_of(work, struct ocfs2_journal, j_recovery_work);
1240 struct ocfs2_super *osb = journal->j_osb;
Mark Fashehccd979b2005-12-15 14:31:24 -08001241 struct ocfs2_dinode *la_dinode, *tl_dinode;
Christoph Hellwig800deef2007-05-17 16:03:13 +02001242 struct ocfs2_la_recovery_item *item, *n;
Jan Kara22053632008-10-20 23:50:38 +02001243 struct ocfs2_quota_recovery *qrec;
Joseph Qied460cf2015-02-16 15:59:57 -08001244 enum ocfs2_orphan_reco_type orphan_reco_type;
Mark Fashehccd979b2005-12-15 14:31:24 -08001245 LIST_HEAD(tmp_la_list);
1246
Tao Mab4107952011-02-24 14:15:35 +08001247 trace_ocfs2_complete_recovery(
1248 (unsigned long long)OCFS2_I(journal->j_inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001249
1250 spin_lock(&journal->j_lock);
1251 list_splice_init(&journal->j_la_cleanups, &tmp_la_list);
1252 spin_unlock(&journal->j_lock);
1253
Christoph Hellwig800deef2007-05-17 16:03:13 +02001254 list_for_each_entry_safe(item, n, &tmp_la_list, lri_list) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001255 list_del_init(&item->lri_list);
1256
Jan Kara19ece542008-08-21 20:13:17 +02001257 ocfs2_wait_on_quotas(osb);
1258
Mark Fashehccd979b2005-12-15 14:31:24 -08001259 la_dinode = item->lri_la_dinode;
Tao Mab4107952011-02-24 14:15:35 +08001260 tl_dinode = item->lri_tl_dinode;
1261 qrec = item->lri_qrec;
Joseph Qied460cf2015-02-16 15:59:57 -08001262 orphan_reco_type = item->lri_orphan_reco_type;
Mark Fashehccd979b2005-12-15 14:31:24 -08001263
Tao Mab4107952011-02-24 14:15:35 +08001264 trace_ocfs2_complete_recovery_slot(item->lri_slot,
1265 la_dinode ? le64_to_cpu(la_dinode->i_blkno) : 0,
1266 tl_dinode ? le64_to_cpu(tl_dinode->i_blkno) : 0,
1267 qrec);
1268
1269 if (la_dinode) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001270 ret = ocfs2_complete_local_alloc_recovery(osb,
1271 la_dinode);
1272 if (ret < 0)
1273 mlog_errno(ret);
1274
1275 kfree(la_dinode);
1276 }
1277
Mark Fashehccd979b2005-12-15 14:31:24 -08001278 if (tl_dinode) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001279 ret = ocfs2_complete_truncate_log_recovery(osb,
1280 tl_dinode);
1281 if (ret < 0)
1282 mlog_errno(ret);
1283
1284 kfree(tl_dinode);
1285 }
1286
Joseph Qied460cf2015-02-16 15:59:57 -08001287 ret = ocfs2_recover_orphans(osb, item->lri_slot,
1288 orphan_reco_type);
Mark Fashehccd979b2005-12-15 14:31:24 -08001289 if (ret < 0)
1290 mlog_errno(ret);
1291
Jan Kara22053632008-10-20 23:50:38 +02001292 if (qrec) {
Jan Kara22053632008-10-20 23:50:38 +02001293 ret = ocfs2_finish_quota_recovery(osb, qrec,
1294 item->lri_slot);
1295 if (ret < 0)
1296 mlog_errno(ret);
1297 /* Recovery info is already freed now */
1298 }
1299
Mark Fashehccd979b2005-12-15 14:31:24 -08001300 kfree(item);
1301 }
1302
Tao Mab4107952011-02-24 14:15:35 +08001303 trace_ocfs2_complete_recovery_end(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -08001304}
1305
1306/* NOTE: This function always eats your references to la_dinode and
1307 * tl_dinode, either manually on error, or by passing them to
1308 * ocfs2_complete_recovery */
1309static void ocfs2_queue_recovery_completion(struct ocfs2_journal *journal,
1310 int slot_num,
1311 struct ocfs2_dinode *la_dinode,
Jan Kara22053632008-10-20 23:50:38 +02001312 struct ocfs2_dinode *tl_dinode,
Joseph Qied460cf2015-02-16 15:59:57 -08001313 struct ocfs2_quota_recovery *qrec,
1314 enum ocfs2_orphan_reco_type orphan_reco_type)
Mark Fashehccd979b2005-12-15 14:31:24 -08001315{
1316 struct ocfs2_la_recovery_item *item;
1317
Sunil Mushranafae00ab2006-04-12 14:37:00 -07001318 item = kmalloc(sizeof(struct ocfs2_la_recovery_item), GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -08001319 if (!item) {
1320 /* Though we wish to avoid it, we are in fact safe in
1321 * skipping local alloc cleanup as fsck.ocfs2 is more
1322 * than capable of reclaiming unused space. */
Tim Gardnerd787ab02013-02-21 16:42:44 -08001323 kfree(la_dinode);
1324 kfree(tl_dinode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001325
Jan Kara22053632008-10-20 23:50:38 +02001326 if (qrec)
1327 ocfs2_free_quota_recovery(qrec);
1328
Mark Fashehccd979b2005-12-15 14:31:24 -08001329 mlog_errno(-ENOMEM);
1330 return;
1331 }
1332
1333 INIT_LIST_HEAD(&item->lri_list);
1334 item->lri_la_dinode = la_dinode;
1335 item->lri_slot = slot_num;
1336 item->lri_tl_dinode = tl_dinode;
Jan Kara22053632008-10-20 23:50:38 +02001337 item->lri_qrec = qrec;
Joseph Qied460cf2015-02-16 15:59:57 -08001338 item->lri_orphan_reco_type = orphan_reco_type;
Mark Fashehccd979b2005-12-15 14:31:24 -08001339
1340 spin_lock(&journal->j_lock);
1341 list_add_tail(&item->lri_list, &journal->j_la_cleanups);
jiangyiwen35ddf782016-03-25 14:21:32 -07001342 queue_work(journal->j_osb->ocfs2_wq, &journal->j_recovery_work);
Mark Fashehccd979b2005-12-15 14:31:24 -08001343 spin_unlock(&journal->j_lock);
1344}
1345
1346/* Called by the mount code to queue recovery the last part of
Srinivas Eeda9140db02009-03-06 14:21:46 -08001347 * recovery for it's own and offline slot(s). */
Mark Fashehccd979b2005-12-15 14:31:24 -08001348void ocfs2_complete_mount_recovery(struct ocfs2_super *osb)
1349{
1350 struct ocfs2_journal *journal = osb->journal;
1351
Sunil Mushran10b3dd72011-05-04 10:28:02 -07001352 if (ocfs2_is_hard_readonly(osb))
1353 return;
1354
Srinivas Eeda9140db02009-03-06 14:21:46 -08001355 /* No need to queue up our truncate_log as regular cleanup will catch
1356 * that */
1357 ocfs2_queue_recovery_completion(journal, osb->slot_num,
Joseph Qied460cf2015-02-16 15:59:57 -08001358 osb->local_alloc_copy, NULL, NULL,
1359 ORPHAN_NEED_TRUNCATE);
Srinivas Eeda9140db02009-03-06 14:21:46 -08001360 ocfs2_schedule_truncate_log_flush(osb, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001361
Srinivas Eeda9140db02009-03-06 14:21:46 -08001362 osb->local_alloc_copy = NULL;
Srinivas Eeda9140db02009-03-06 14:21:46 -08001363
1364 /* queue to recover orphan slots for all offline slots */
1365 ocfs2_replay_map_set_state(osb, REPLAY_NEEDED);
Joseph Qied460cf2015-02-16 15:59:57 -08001366 ocfs2_queue_replay_slots(osb, ORPHAN_NEED_TRUNCATE);
Srinivas Eeda9140db02009-03-06 14:21:46 -08001367 ocfs2_free_replay_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001368}
1369
Jan Kara22053632008-10-20 23:50:38 +02001370void ocfs2_complete_quota_recovery(struct ocfs2_super *osb)
1371{
1372 if (osb->quota_rec) {
1373 ocfs2_queue_recovery_completion(osb->journal,
1374 osb->slot_num,
1375 NULL,
1376 NULL,
Joseph Qied460cf2015-02-16 15:59:57 -08001377 osb->quota_rec,
1378 ORPHAN_NEED_TRUNCATE);
Jan Kara22053632008-10-20 23:50:38 +02001379 osb->quota_rec = NULL;
1380 }
1381}
1382
Mark Fashehccd979b2005-12-15 14:31:24 -08001383static int __ocfs2_recovery_thread(void *arg)
1384{
Jan Kara22053632008-10-20 23:50:38 +02001385 int status, node_num, slot_num;
Mark Fashehccd979b2005-12-15 14:31:24 -08001386 struct ocfs2_super *osb = arg;
Joel Becker553abd02008-02-01 12:03:57 -08001387 struct ocfs2_recovery_map *rm = osb->recovery_map;
Jan Kara22053632008-10-20 23:50:38 +02001388 int *rm_quota = NULL;
1389 int rm_quota_used = 0, i;
1390 struct ocfs2_quota_recovery *qrec;
Mark Fashehccd979b2005-12-15 14:31:24 -08001391
Guozhonghua21158ca2018-11-02 15:48:07 -07001392 /* Whether the quota supported. */
1393 int quota_enabled = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb,
1394 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)
1395 || OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb,
1396 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA);
1397
Mark Fashehccd979b2005-12-15 14:31:24 -08001398 status = ocfs2_wait_on_mount(osb);
1399 if (status < 0) {
1400 goto bail;
1401 }
1402
Guozhonghua21158ca2018-11-02 15:48:07 -07001403 if (quota_enabled) {
1404 rm_quota = kcalloc(osb->max_slots, sizeof(int), GFP_NOFS);
1405 if (!rm_quota) {
1406 status = -ENOMEM;
1407 goto bail;
1408 }
Jan Kara22053632008-10-20 23:50:38 +02001409 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001410restart:
1411 status = ocfs2_super_lock(osb, 1);
1412 if (status < 0) {
1413 mlog_errno(status);
1414 goto bail;
1415 }
1416
Srinivas Eeda9140db02009-03-06 14:21:46 -08001417 status = ocfs2_compute_replay_slots(osb);
1418 if (status < 0)
1419 mlog_errno(status);
1420
1421 /* queue recovery for our own slot */
1422 ocfs2_queue_recovery_completion(osb->journal, osb->slot_num, NULL,
Joseph Qied460cf2015-02-16 15:59:57 -08001423 NULL, NULL, ORPHAN_NO_NEED_TRUNCATE);
Srinivas Eeda9140db02009-03-06 14:21:46 -08001424
Joel Becker553abd02008-02-01 12:03:57 -08001425 spin_lock(&osb->osb_lock);
1426 while (rm->rm_used) {
1427 /* It's always safe to remove entry zero, as we won't
1428 * clear it until ocfs2_recover_node() has succeeded. */
1429 node_num = rm->rm_entries[0];
1430 spin_unlock(&osb->osb_lock);
Jan Kara22053632008-10-20 23:50:38 +02001431 slot_num = ocfs2_node_num_to_slot(osb, node_num);
Tao Mab4107952011-02-24 14:15:35 +08001432 trace_ocfs2_recovery_thread_node(node_num, slot_num);
Jan Kara22053632008-10-20 23:50:38 +02001433 if (slot_num == -ENOENT) {
1434 status = 0;
Jan Kara22053632008-10-20 23:50:38 +02001435 goto skip_recovery;
1436 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001437
Jan Kara22053632008-10-20 23:50:38 +02001438 /* It is a bit subtle with quota recovery. We cannot do it
1439 * immediately because we have to obtain cluster locks from
1440 * quota files and we also don't want to just skip it because
1441 * then quota usage would be out of sync until some node takes
1442 * the slot. So we remember which nodes need quota recovery
1443 * and when everything else is done, we recover quotas. */
Guozhonghua21158ca2018-11-02 15:48:07 -07001444 if (quota_enabled) {
1445 for (i = 0; i < rm_quota_used
1446 && rm_quota[i] != slot_num; i++)
1447 ;
1448
1449 if (i == rm_quota_used)
1450 rm_quota[rm_quota_used++] = slot_num;
1451 }
Jan Kara22053632008-10-20 23:50:38 +02001452
1453 status = ocfs2_recover_node(osb, node_num, slot_num);
1454skip_recovery:
Joel Becker553abd02008-02-01 12:03:57 -08001455 if (!status) {
1456 ocfs2_recovery_map_clear(osb, node_num);
1457 } else {
Mark Fashehccd979b2005-12-15 14:31:24 -08001458 mlog(ML_ERROR,
1459 "Error %d recovering node %d on device (%u,%u)!\n",
1460 status, node_num,
1461 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
1462 mlog(ML_ERROR, "Volume requires unmount.\n");
Mark Fashehccd979b2005-12-15 14:31:24 -08001463 }
1464
Joel Becker553abd02008-02-01 12:03:57 -08001465 spin_lock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001466 }
Joel Becker553abd02008-02-01 12:03:57 -08001467 spin_unlock(&osb->osb_lock);
Tao Mab4107952011-02-24 14:15:35 +08001468 trace_ocfs2_recovery_thread_end(status);
Joel Becker553abd02008-02-01 12:03:57 -08001469
Sunil Mushran539d8262008-07-14 17:31:10 -07001470 /* Refresh all journal recovery generations from disk */
1471 status = ocfs2_check_journals_nolocks(osb);
1472 status = (status == -EROFS) ? 0 : status;
1473 if (status < 0)
1474 mlog_errno(status);
1475
Jan Kara22053632008-10-20 23:50:38 +02001476 /* Now it is right time to recover quotas... We have to do this under
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001477 * superblock lock so that no one can start using the slot (and crash)
Jan Kara22053632008-10-20 23:50:38 +02001478 * before we recover it */
Guozhonghua21158ca2018-11-02 15:48:07 -07001479 if (quota_enabled) {
1480 for (i = 0; i < rm_quota_used; i++) {
1481 qrec = ocfs2_begin_quota_recovery(osb, rm_quota[i]);
1482 if (IS_ERR(qrec)) {
1483 status = PTR_ERR(qrec);
1484 mlog_errno(status);
1485 continue;
1486 }
1487 ocfs2_queue_recovery_completion(osb->journal,
1488 rm_quota[i],
1489 NULL, NULL, qrec,
1490 ORPHAN_NEED_TRUNCATE);
Jan Kara22053632008-10-20 23:50:38 +02001491 }
Jan Kara22053632008-10-20 23:50:38 +02001492 }
1493
Mark Fashehccd979b2005-12-15 14:31:24 -08001494 ocfs2_super_unlock(osb, 1);
1495
Srinivas Eeda9140db02009-03-06 14:21:46 -08001496 /* queue recovery for offline slots */
Joseph Qied460cf2015-02-16 15:59:57 -08001497 ocfs2_queue_replay_slots(osb, ORPHAN_NEED_TRUNCATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001498
1499bail:
Arjan van de Venc74ec2f2006-01-13 21:54:23 -08001500 mutex_lock(&osb->recovery_lock);
Joel Becker553abd02008-02-01 12:03:57 -08001501 if (!status && !ocfs2_recovery_completed(osb)) {
Arjan van de Venc74ec2f2006-01-13 21:54:23 -08001502 mutex_unlock(&osb->recovery_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001503 goto restart;
1504 }
1505
Srinivas Eeda9140db02009-03-06 14:21:46 -08001506 ocfs2_free_replay_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001507 osb->recovery_thread_task = NULL;
1508 mb(); /* sync with ocfs2_recovery_thread_running */
1509 wake_up(&osb->recovery_event);
1510
Arjan van de Venc74ec2f2006-01-13 21:54:23 -08001511 mutex_unlock(&osb->recovery_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001512
Guozhonghua21158ca2018-11-02 15:48:07 -07001513 if (quota_enabled)
1514 kfree(rm_quota);
Jan Kara22053632008-10-20 23:50:38 +02001515
Eric W. Biederman111e7042021-10-20 12:43:58 -05001516 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001517}
1518
1519void ocfs2_recovery_thread(struct ocfs2_super *osb, int node_num)
1520{
Arjan van de Venc74ec2f2006-01-13 21:54:23 -08001521 mutex_lock(&osb->recovery_lock);
Tao Mab4107952011-02-24 14:15:35 +08001522
1523 trace_ocfs2_recovery_thread(node_num, osb->node_num,
1524 osb->disable_recovery, osb->recovery_thread_task,
1525 osb->disable_recovery ?
1526 -1 : ocfs2_recovery_map_set(osb, node_num));
1527
Mark Fashehccd979b2005-12-15 14:31:24 -08001528 if (osb->disable_recovery)
1529 goto out;
1530
Mark Fashehccd979b2005-12-15 14:31:24 -08001531 if (osb->recovery_thread_task)
1532 goto out;
1533
1534 osb->recovery_thread_task = kthread_run(__ocfs2_recovery_thread, osb,
Joseph Qi5afc44e2015-11-05 18:44:13 -08001535 "ocfs2rec-%s", osb->uuid_str);
Mark Fashehccd979b2005-12-15 14:31:24 -08001536 if (IS_ERR(osb->recovery_thread_task)) {
1537 mlog_errno((int)PTR_ERR(osb->recovery_thread_task));
1538 osb->recovery_thread_task = NULL;
1539 }
1540
1541out:
Arjan van de Venc74ec2f2006-01-13 21:54:23 -08001542 mutex_unlock(&osb->recovery_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001543 wake_up(&osb->recovery_event);
Mark Fashehccd979b2005-12-15 14:31:24 -08001544}
1545
Sunil Mushran539d8262008-07-14 17:31:10 -07001546static int ocfs2_read_journal_inode(struct ocfs2_super *osb,
1547 int slot_num,
1548 struct buffer_head **bh,
1549 struct inode **ret_inode)
1550{
1551 int status = -EACCES;
1552 struct inode *inode = NULL;
1553
1554 BUG_ON(slot_num >= osb->max_slots);
1555
1556 inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE,
1557 slot_num);
1558 if (!inode || is_bad_inode(inode)) {
1559 mlog_errno(status);
1560 goto bail;
1561 }
1562 SET_INODE_JOURNAL(inode);
1563
Joel Beckerb657c952008-11-13 14:49:11 -08001564 status = ocfs2_read_inode_block_full(inode, bh, OCFS2_BH_IGNORE_CACHE);
Sunil Mushran539d8262008-07-14 17:31:10 -07001565 if (status < 0) {
1566 mlog_errno(status);
1567 goto bail;
1568 }
1569
1570 status = 0;
1571
1572bail:
1573 if (inode) {
1574 if (status || !ret_inode)
1575 iput(inode);
1576 else
1577 *ret_inode = inode;
1578 }
1579 return status;
1580}
1581
Mark Fashehccd979b2005-12-15 14:31:24 -08001582/* Does the actual journal replay and marks the journal inode as
1583 * clean. Will only replay if the journal inode is marked dirty. */
1584static int ocfs2_replay_journal(struct ocfs2_super *osb,
1585 int node_num,
1586 int slot_num)
1587{
1588 int status;
1589 int got_lock = 0;
1590 unsigned int flags;
1591 struct inode *inode = NULL;
1592 struct ocfs2_dinode *fe;
1593 journal_t *journal = NULL;
1594 struct buffer_head *bh = NULL;
Sunil Mushran539d8262008-07-14 17:31:10 -07001595 u32 slot_reco_gen;
Mark Fashehccd979b2005-12-15 14:31:24 -08001596
Sunil Mushran539d8262008-07-14 17:31:10 -07001597 status = ocfs2_read_journal_inode(osb, slot_num, &bh, &inode);
1598 if (status) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001599 mlog_errno(status);
1600 goto done;
1601 }
Sunil Mushran539d8262008-07-14 17:31:10 -07001602
1603 fe = (struct ocfs2_dinode *)bh->b_data;
1604 slot_reco_gen = ocfs2_get_recovery_generation(fe);
1605 brelse(bh);
1606 bh = NULL;
1607
1608 /*
1609 * As the fs recovery is asynchronous, there is a small chance that
1610 * another node mounted (and recovered) the slot before the recovery
1611 * thread could get the lock. To handle that, we dirty read the journal
1612 * inode for that slot to get the recovery generation. If it is
1613 * different than what we expected, the slot has been recovered.
1614 * If not, it needs recovery.
1615 */
1616 if (osb->slot_recovery_generations[slot_num] != slot_reco_gen) {
Tao Mab4107952011-02-24 14:15:35 +08001617 trace_ocfs2_replay_journal_recovered(slot_num,
Sunil Mushran539d8262008-07-14 17:31:10 -07001618 osb->slot_recovery_generations[slot_num], slot_reco_gen);
1619 osb->slot_recovery_generations[slot_num] = slot_reco_gen;
1620 status = -EBUSY;
Mark Fashehccd979b2005-12-15 14:31:24 -08001621 goto done;
1622 }
Sunil Mushran539d8262008-07-14 17:31:10 -07001623
1624 /* Continue with recovery as the journal has not yet been recovered */
Mark Fashehccd979b2005-12-15 14:31:24 -08001625
Mark Fashehe63aecb62007-10-18 15:30:42 -07001626 status = ocfs2_inode_lock_full(inode, &bh, 1, OCFS2_META_LOCK_RECOVERY);
Mark Fashehccd979b2005-12-15 14:31:24 -08001627 if (status < 0) {
Tao Mab4107952011-02-24 14:15:35 +08001628 trace_ocfs2_replay_journal_lock_err(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001629 if (status != -ERESTARTSYS)
1630 mlog(ML_ERROR, "Could not lock journal!\n");
1631 goto done;
1632 }
1633 got_lock = 1;
1634
1635 fe = (struct ocfs2_dinode *) bh->b_data;
1636
1637 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
Sunil Mushran539d8262008-07-14 17:31:10 -07001638 slot_reco_gen = ocfs2_get_recovery_generation(fe);
Mark Fashehccd979b2005-12-15 14:31:24 -08001639
1640 if (!(flags & OCFS2_JOURNAL_DIRTY_FL)) {
Tao Mab4107952011-02-24 14:15:35 +08001641 trace_ocfs2_replay_journal_skip(node_num);
Sunil Mushran539d8262008-07-14 17:31:10 -07001642 /* Refresh recovery generation for the slot */
1643 osb->slot_recovery_generations[slot_num] = slot_reco_gen;
Mark Fashehccd979b2005-12-15 14:31:24 -08001644 goto done;
1645 }
1646
Srinivas Eeda9140db02009-03-06 14:21:46 -08001647 /* we need to run complete recovery for offline orphan slots */
1648 ocfs2_replay_map_set_state(osb, REPLAY_NEEDED);
1649
Sunil Mushran619c2002011-07-24 10:34:54 -07001650 printk(KERN_NOTICE "ocfs2: Begin replay journal (node %d, slot %d) on "\
1651 "device (%u,%u)\n", node_num, slot_num, MAJOR(osb->sb->s_dev),
1652 MINOR(osb->sb->s_dev));
Mark Fashehccd979b2005-12-15 14:31:24 -08001653
1654 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
1655
1656 status = ocfs2_force_read_journal(inode);
1657 if (status < 0) {
1658 mlog_errno(status);
1659 goto done;
1660 }
1661
Joel Becker2b4e30f2008-09-03 20:03:41 -07001662 journal = jbd2_journal_init_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001663 if (journal == NULL) {
1664 mlog(ML_ERROR, "Linux journal layer error\n");
1665 status = -EIO;
1666 goto done;
1667 }
1668
Joel Becker2b4e30f2008-09-03 20:03:41 -07001669 status = jbd2_journal_load(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -08001670 if (status < 0) {
1671 mlog_errno(status);
Zhang Mingyu783cc682022-01-14 14:03:35 -08001672 BUG_ON(!igrab(inode));
Joel Becker2b4e30f2008-09-03 20:03:41 -07001673 jbd2_journal_destroy(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -08001674 goto done;
1675 }
1676
1677 ocfs2_clear_journal_error(osb->sb, journal, slot_num);
1678
1679 /* wipe the journal */
Joel Becker2b4e30f2008-09-03 20:03:41 -07001680 jbd2_journal_lock_updates(journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +00001681 status = jbd2_journal_flush(journal, 0);
Joel Becker2b4e30f2008-09-03 20:03:41 -07001682 jbd2_journal_unlock_updates(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -08001683 if (status < 0)
1684 mlog_errno(status);
1685
1686 /* This will mark the node clean */
1687 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
1688 flags &= ~OCFS2_JOURNAL_DIRTY_FL;
1689 fe->id1.journal1.ij_flags = cpu_to_le32(flags);
1690
Sunil Mushran539d8262008-07-14 17:31:10 -07001691 /* Increment recovery generation to indicate successful recovery */
1692 ocfs2_bump_recovery_generation(fe);
1693 osb->slot_recovery_generations[slot_num] =
1694 ocfs2_get_recovery_generation(fe);
1695
Joel Becker13723d02008-10-17 19:25:01 -07001696 ocfs2_compute_meta_ecc(osb->sb, bh->b_data, &fe->i_check);
Joel Becker8cb471e2009-02-10 20:00:41 -08001697 status = ocfs2_write_block(osb, bh, INODE_CACHE(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -08001698 if (status < 0)
1699 mlog_errno(status);
1700
Zhang Mingyu783cc682022-01-14 14:03:35 -08001701 BUG_ON(!igrab(inode));
Mark Fashehccd979b2005-12-15 14:31:24 -08001702
Joel Becker2b4e30f2008-09-03 20:03:41 -07001703 jbd2_journal_destroy(journal);
Mark Fashehccd979b2005-12-15 14:31:24 -08001704
Sunil Mushran619c2002011-07-24 10:34:54 -07001705 printk(KERN_NOTICE "ocfs2: End replay journal (node %d, slot %d) on "\
1706 "device (%u,%u)\n", node_num, slot_num, MAJOR(osb->sb->s_dev),
1707 MINOR(osb->sb->s_dev));
Mark Fashehccd979b2005-12-15 14:31:24 -08001708done:
1709 /* drop the lock on this nodes journal */
1710 if (got_lock)
Mark Fashehe63aecb62007-10-18 15:30:42 -07001711 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001712
Joseph Qi72865d92016-01-14 15:17:27 -08001713 iput(inode);
Mark Fasheha81cb882008-10-07 14:25:16 -07001714 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001715
Mark Fashehccd979b2005-12-15 14:31:24 -08001716 return status;
1717}
1718
1719/*
1720 * Do the most important parts of node recovery:
1721 * - Replay it's journal
1722 * - Stamp a clean local allocator file
1723 * - Stamp a clean truncate log
1724 * - Mark the node clean
1725 *
1726 * If this function completes without error, a node in OCFS2 can be
1727 * said to have been safely recovered. As a result, failure during the
1728 * second part of a nodes recovery process (local alloc recovery) is
1729 * far less concerning.
1730 */
1731static int ocfs2_recover_node(struct ocfs2_super *osb,
Jan Kara22053632008-10-20 23:50:38 +02001732 int node_num, int slot_num)
Mark Fashehccd979b2005-12-15 14:31:24 -08001733{
1734 int status = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001735 struct ocfs2_dinode *la_copy = NULL;
1736 struct ocfs2_dinode *tl_copy = NULL;
1737
Tao Mab4107952011-02-24 14:15:35 +08001738 trace_ocfs2_recover_node(node_num, slot_num, osb->node_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001739
1740 /* Should not ever be called to recover ourselves -- in that
1741 * case we should've called ocfs2_journal_load instead. */
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +01001742 BUG_ON(osb->node_num == node_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001743
Mark Fashehccd979b2005-12-15 14:31:24 -08001744 status = ocfs2_replay_journal(osb, node_num, slot_num);
1745 if (status < 0) {
Sunil Mushran539d8262008-07-14 17:31:10 -07001746 if (status == -EBUSY) {
Tao Mab4107952011-02-24 14:15:35 +08001747 trace_ocfs2_recover_node_skip(slot_num, node_num);
Sunil Mushran539d8262008-07-14 17:31:10 -07001748 status = 0;
1749 goto done;
1750 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001751 mlog_errno(status);
1752 goto done;
1753 }
1754
1755 /* Stamp a clean local alloc file AFTER recovering the journal... */
1756 status = ocfs2_begin_local_alloc_recovery(osb, slot_num, &la_copy);
1757 if (status < 0) {
1758 mlog_errno(status);
1759 goto done;
1760 }
1761
1762 /* An error from begin_truncate_log_recovery is not
1763 * serious enough to warrant halting the rest of
1764 * recovery. */
1765 status = ocfs2_begin_truncate_log_recovery(osb, slot_num, &tl_copy);
1766 if (status < 0)
1767 mlog_errno(status);
1768
1769 /* Likewise, this would be a strange but ultimately not so
1770 * harmful place to get an error... */
Mark Fasheh8e8a4602008-02-01 11:59:09 -08001771 status = ocfs2_clear_slot(osb, slot_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001772 if (status < 0)
1773 mlog_errno(status);
1774
1775 /* This will kfree the memory pointed to by la_copy and tl_copy */
1776 ocfs2_queue_recovery_completion(osb->journal, slot_num, la_copy,
Joseph Qied460cf2015-02-16 15:59:57 -08001777 tl_copy, NULL, ORPHAN_NEED_TRUNCATE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001778
1779 status = 0;
1780done:
1781
Mark Fashehccd979b2005-12-15 14:31:24 -08001782 return status;
1783}
1784
1785/* Test node liveness by trylocking his journal. If we get the lock,
1786 * we drop it here. Return 0 if we got the lock, -EAGAIN if node is
1787 * still alive (we couldn't get the lock) and < 0 on error. */
1788static int ocfs2_trylock_journal(struct ocfs2_super *osb,
1789 int slot_num)
1790{
1791 int status, flags;
1792 struct inode *inode = NULL;
1793
1794 inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE,
1795 slot_num);
1796 if (inode == NULL) {
1797 mlog(ML_ERROR, "access error\n");
1798 status = -EACCES;
1799 goto bail;
1800 }
1801 if (is_bad_inode(inode)) {
1802 mlog(ML_ERROR, "access error (bad inode)\n");
1803 iput(inode);
1804 inode = NULL;
1805 status = -EACCES;
1806 goto bail;
1807 }
1808 SET_INODE_JOURNAL(inode);
1809
1810 flags = OCFS2_META_LOCK_RECOVERY | OCFS2_META_LOCK_NOQUEUE;
Mark Fashehe63aecb62007-10-18 15:30:42 -07001811 status = ocfs2_inode_lock_full(inode, NULL, 1, flags);
Mark Fashehccd979b2005-12-15 14:31:24 -08001812 if (status < 0) {
1813 if (status != -EAGAIN)
1814 mlog_errno(status);
1815 goto bail;
1816 }
1817
Mark Fashehe63aecb62007-10-18 15:30:42 -07001818 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001819bail:
Joseph Qi72865d92016-01-14 15:17:27 -08001820 iput(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001821
1822 return status;
1823}
1824
1825/* Call this underneath ocfs2_super_lock. It also assumes that the
1826 * slot info struct has been updated from disk. */
1827int ocfs2_mark_dead_nodes(struct ocfs2_super *osb)
1828{
Joel Beckerd85b20e2008-02-01 12:01:05 -08001829 unsigned int node_num;
1830 int status, i;
Mark Fasheha1af7d12008-08-19 17:20:28 -07001831 u32 gen;
Sunil Mushran539d8262008-07-14 17:31:10 -07001832 struct buffer_head *bh = NULL;
1833 struct ocfs2_dinode *di;
Mark Fashehccd979b2005-12-15 14:31:24 -08001834
1835 /* This is called with the super block cluster lock, so we
1836 * know that the slot map can't change underneath us. */
1837
Joel Beckerd85b20e2008-02-01 12:01:05 -08001838 for (i = 0; i < osb->max_slots; i++) {
Sunil Mushran539d8262008-07-14 17:31:10 -07001839 /* Read journal inode to get the recovery generation */
1840 status = ocfs2_read_journal_inode(osb, i, &bh, NULL);
1841 if (status) {
1842 mlog_errno(status);
1843 goto bail;
1844 }
1845 di = (struct ocfs2_dinode *)bh->b_data;
Mark Fasheha1af7d12008-08-19 17:20:28 -07001846 gen = ocfs2_get_recovery_generation(di);
Sunil Mushran539d8262008-07-14 17:31:10 -07001847 brelse(bh);
1848 bh = NULL;
1849
Mark Fasheha1af7d12008-08-19 17:20:28 -07001850 spin_lock(&osb->osb_lock);
1851 osb->slot_recovery_generations[i] = gen;
1852
Tao Mab4107952011-02-24 14:15:35 +08001853 trace_ocfs2_mark_dead_nodes(i,
1854 osb->slot_recovery_generations[i]);
Sunil Mushran539d8262008-07-14 17:31:10 -07001855
Mark Fasheha1af7d12008-08-19 17:20:28 -07001856 if (i == osb->slot_num) {
1857 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001858 continue;
Mark Fasheha1af7d12008-08-19 17:20:28 -07001859 }
Joel Beckerd85b20e2008-02-01 12:01:05 -08001860
1861 status = ocfs2_slot_to_node_num_locked(osb, i, &node_num);
Mark Fasheha1af7d12008-08-19 17:20:28 -07001862 if (status == -ENOENT) {
1863 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001864 continue;
Mark Fasheha1af7d12008-08-19 17:20:28 -07001865 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001866
Mark Fasheha1af7d12008-08-19 17:20:28 -07001867 if (__ocfs2_recovery_map_test(osb, node_num)) {
1868 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001869 continue;
Mark Fasheha1af7d12008-08-19 17:20:28 -07001870 }
Joel Beckerd85b20e2008-02-01 12:01:05 -08001871 spin_unlock(&osb->osb_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001872
1873 /* Ok, we have a slot occupied by another node which
1874 * is not in the recovery map. We trylock his journal
1875 * file here to test if he's alive. */
1876 status = ocfs2_trylock_journal(osb, i);
1877 if (!status) {
1878 /* Since we're called from mount, we know that
1879 * the recovery thread can't race us on
1880 * setting / checking the recovery bits. */
1881 ocfs2_recovery_thread(osb, node_num);
1882 } else if ((status < 0) && (status != -EAGAIN)) {
1883 mlog_errno(status);
1884 goto bail;
1885 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001886 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001887
1888 status = 0;
1889bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08001890 return status;
1891}
1892
Srinivas Eeda83273932009-06-03 17:02:55 -07001893/*
1894 * Scan timer should get fired every ORPHAN_SCAN_SCHEDULE_TIMEOUT. Add some
1895 * randomness to the timeout to minimize multple nodes firing the timer at the
1896 * same time.
1897 */
1898static inline unsigned long ocfs2_orphan_scan_timeout(void)
1899{
1900 unsigned long time;
1901
1902 get_random_bytes(&time, sizeof(time));
1903 time = ORPHAN_SCAN_SCHEDULE_TIMEOUT + (time % 5000);
1904 return msecs_to_jiffies(time);
1905}
1906
1907/*
1908 * ocfs2_queue_orphan_scan calls ocfs2_queue_recovery_completion for
1909 * every slot, queuing a recovery of the slot on the ocfs2_wq thread. This
1910 * is done to catch any orphans that are left over in orphan directories.
1911 *
Sunil Mushrana035bff2011-07-24 10:35:54 -07001912 * It scans all slots, even ones that are in use. It does so to handle the
1913 * case described below:
1914 *
1915 * Node 1 has an inode it was using. The dentry went away due to memory
1916 * pressure. Node 1 closes the inode, but it's on the free list. The node
1917 * has the open lock.
1918 * Node 2 unlinks the inode. It grabs the dentry lock to notify others,
1919 * but node 1 has no dentry and doesn't get the message. It trylocks the
1920 * open lock, sees that another node has a PR, and does nothing.
1921 * Later node 2 runs its orphan dir. It igets the inode, trylocks the
1922 * open lock, sees the PR still, and does nothing.
1923 * Basically, we have to trigger an orphan iput on node 1. The only way
1924 * for this to happen is if node 1 runs node 2's orphan dir.
1925 *
Srinivas Eeda83273932009-06-03 17:02:55 -07001926 * ocfs2_queue_orphan_scan gets called every ORPHAN_SCAN_SCHEDULE_TIMEOUT
1927 * seconds. It gets an EX lock on os_lockres and checks sequence number
1928 * stored in LVB. If the sequence number has changed, it means some other
1929 * node has done the scan. This node skips the scan and tracks the
1930 * sequence number. If the sequence number didn't change, it means a scan
1931 * hasn't happened. The node queues a scan and increments the
1932 * sequence number in the LVB.
1933 */
Joseph Qib519ea62015-06-24 16:55:34 -07001934static void ocfs2_queue_orphan_scan(struct ocfs2_super *osb)
Srinivas Eeda83273932009-06-03 17:02:55 -07001935{
1936 struct ocfs2_orphan_scan *os;
1937 int status, i;
1938 u32 seqno = 0;
1939
1940 os = &osb->osb_orphan_scan;
1941
Sunil Mushran692684e2009-06-19 16:53:17 -07001942 if (atomic_read(&os->os_state) == ORPHAN_SCAN_INACTIVE)
1943 goto out;
1944
Tao Mab4107952011-02-24 14:15:35 +08001945 trace_ocfs2_queue_orphan_scan_begin(os->os_count, os->os_seqno,
1946 atomic_read(&os->os_state));
1947
Sunil Mushrandf152c22009-06-22 11:40:07 -07001948 status = ocfs2_orphan_scan_lock(osb, &seqno);
Srinivas Eeda83273932009-06-03 17:02:55 -07001949 if (status < 0) {
1950 if (status != -EAGAIN)
1951 mlog_errno(status);
1952 goto out;
1953 }
1954
Sunil Mushran692684e2009-06-19 16:53:17 -07001955 /* Do no queue the tasks if the volume is being umounted */
1956 if (atomic_read(&os->os_state) == ORPHAN_SCAN_INACTIVE)
1957 goto unlock;
1958
Srinivas Eeda83273932009-06-03 17:02:55 -07001959 if (os->os_seqno != seqno) {
1960 os->os_seqno = seqno;
1961 goto unlock;
1962 }
1963
1964 for (i = 0; i < osb->max_slots; i++)
1965 ocfs2_queue_recovery_completion(osb->journal, i, NULL, NULL,
Joseph Qied460cf2015-02-16 15:59:57 -08001966 NULL, ORPHAN_NO_NEED_TRUNCATE);
Srinivas Eeda83273932009-06-03 17:02:55 -07001967 /*
1968 * We queued a recovery on orphan slots, increment the sequence
1969 * number and update LVB so other node will skip the scan for a while
1970 */
1971 seqno++;
Srinivas Eeda15633a22009-06-03 17:02:56 -07001972 os->os_count++;
Deepa Dinamani395627b2016-12-12 16:41:23 -08001973 os->os_scantime = ktime_get_seconds();
Srinivas Eeda83273932009-06-03 17:02:55 -07001974unlock:
Sunil Mushrandf152c22009-06-22 11:40:07 -07001975 ocfs2_orphan_scan_unlock(osb, seqno);
Srinivas Eeda83273932009-06-03 17:02:55 -07001976out:
Tao Mab4107952011-02-24 14:15:35 +08001977 trace_ocfs2_queue_orphan_scan_end(os->os_count, os->os_seqno,
1978 atomic_read(&os->os_state));
Srinivas Eeda83273932009-06-03 17:02:55 -07001979 return;
1980}
1981
1982/* Worker task that gets fired every ORPHAN_SCAN_SCHEDULE_TIMEOUT millsec */
Joseph Qib519ea62015-06-24 16:55:34 -07001983static void ocfs2_orphan_scan_work(struct work_struct *work)
Srinivas Eeda83273932009-06-03 17:02:55 -07001984{
1985 struct ocfs2_orphan_scan *os;
1986 struct ocfs2_super *osb;
1987
1988 os = container_of(work, struct ocfs2_orphan_scan,
1989 os_orphan_scan_work.work);
1990 osb = os->os_osb;
1991
1992 mutex_lock(&os->os_lock);
1993 ocfs2_queue_orphan_scan(osb);
Sunil Mushran692684e2009-06-19 16:53:17 -07001994 if (atomic_read(&os->os_state) == ORPHAN_SCAN_ACTIVE)
jiangyiwen35ddf782016-03-25 14:21:32 -07001995 queue_delayed_work(osb->ocfs2_wq, &os->os_orphan_scan_work,
Sunil Mushran692684e2009-06-19 16:53:17 -07001996 ocfs2_orphan_scan_timeout());
Srinivas Eeda83273932009-06-03 17:02:55 -07001997 mutex_unlock(&os->os_lock);
1998}
1999
2000void ocfs2_orphan_scan_stop(struct ocfs2_super *osb)
2001{
2002 struct ocfs2_orphan_scan *os;
2003
2004 os = &osb->osb_orphan_scan;
Sunil Mushrandf152c22009-06-22 11:40:07 -07002005 if (atomic_read(&os->os_state) == ORPHAN_SCAN_ACTIVE) {
2006 atomic_set(&os->os_state, ORPHAN_SCAN_INACTIVE);
2007 mutex_lock(&os->os_lock);
2008 cancel_delayed_work(&os->os_orphan_scan_work);
2009 mutex_unlock(&os->os_lock);
2010 }
Srinivas Eeda83273932009-06-03 17:02:55 -07002011}
2012
Sunil Mushrandf152c22009-06-22 11:40:07 -07002013void ocfs2_orphan_scan_init(struct ocfs2_super *osb)
Srinivas Eeda83273932009-06-03 17:02:55 -07002014{
2015 struct ocfs2_orphan_scan *os;
2016
2017 os = &osb->osb_orphan_scan;
2018 os->os_osb = osb;
Srinivas Eeda15633a22009-06-03 17:02:56 -07002019 os->os_count = 0;
Sunil Mushran32119492009-06-19 16:53:18 -07002020 os->os_seqno = 0;
Srinivas Eeda83273932009-06-03 17:02:55 -07002021 mutex_init(&os->os_lock);
Sunil Mushrandf152c22009-06-22 11:40:07 -07002022 INIT_DELAYED_WORK(&os->os_orphan_scan_work, ocfs2_orphan_scan_work);
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04002023}
Srinivas Eeda83273932009-06-03 17:02:55 -07002024
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04002025void ocfs2_orphan_scan_start(struct ocfs2_super *osb)
2026{
2027 struct ocfs2_orphan_scan *os;
2028
2029 os = &osb->osb_orphan_scan;
Deepa Dinamani395627b2016-12-12 16:41:23 -08002030 os->os_scantime = ktime_get_seconds();
Sunil Mushrandf152c22009-06-22 11:40:07 -07002031 if (ocfs2_is_hard_readonly(osb) || ocfs2_mount_local(osb))
2032 atomic_set(&os->os_state, ORPHAN_SCAN_INACTIVE);
2033 else {
2034 atomic_set(&os->os_state, ORPHAN_SCAN_ACTIVE);
jiangyiwen35ddf782016-03-25 14:21:32 -07002035 queue_delayed_work(osb->ocfs2_wq, &os->os_orphan_scan_work,
Tao Ma40f165f2010-05-28 14:22:59 +08002036 ocfs2_orphan_scan_timeout());
Sunil Mushrandf152c22009-06-22 11:40:07 -07002037 }
Srinivas Eeda83273932009-06-03 17:02:55 -07002038}
2039
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002040struct ocfs2_orphan_filldir_priv {
Al Viro3704412b2013-05-22 21:06:00 -04002041 struct dir_context ctx;
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002042 struct inode *head;
2043 struct ocfs2_super *osb;
Joseph Qi30edc432015-11-05 18:44:01 -08002044 enum ocfs2_orphan_reco_type orphan_reco_type;
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002045};
2046
Miklos Szerediac7576f2014-10-30 17:37:34 +01002047static int ocfs2_orphan_filldir(struct dir_context *ctx, const char *name,
2048 int name_len, loff_t pos, u64 ino,
2049 unsigned type)
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002050{
Miklos Szerediac7576f2014-10-30 17:37:34 +01002051 struct ocfs2_orphan_filldir_priv *p =
2052 container_of(ctx, struct ocfs2_orphan_filldir_priv, ctx);
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002053 struct inode *iter;
2054
2055 if (name_len == 1 && !strncmp(".", name, 1))
2056 return 0;
2057 if (name_len == 2 && !strncmp("..", name, 2))
2058 return 0;
2059
Joseph Qi30edc432015-11-05 18:44:01 -08002060 /* do not include dio entry in case of orphan scan */
2061 if ((p->orphan_reco_type == ORPHAN_NO_NEED_TRUNCATE) &&
2062 (!strncmp(name, OCFS2_DIO_ORPHAN_PREFIX,
2063 OCFS2_DIO_ORPHAN_PREFIX_LEN)))
2064 return 0;
2065
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002066 /* Skip bad inodes so that recovery can continue */
2067 iter = ocfs2_iget(p->osb, ino,
Jan Kara5fa06132008-01-11 00:11:45 +01002068 OCFS2_FI_FLAG_ORPHAN_RECOVERY, 0);
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002069 if (IS_ERR(iter))
2070 return 0;
2071
Joseph Qi93d911f2015-11-05 18:44:04 -08002072 if (!strncmp(name, OCFS2_DIO_ORPHAN_PREFIX,
2073 OCFS2_DIO_ORPHAN_PREFIX_LEN))
2074 OCFS2_I(iter)->ip_flags |= OCFS2_INODE_DIO_ORPHAN_ENTRY;
2075
Joseph Qied460cf2015-02-16 15:59:57 -08002076 /* Skip inodes which are already added to recover list, since dio may
2077 * happen concurrently with unlink/rename */
2078 if (OCFS2_I(iter)->ip_next_orphan) {
2079 iput(iter);
2080 return 0;
2081 }
2082
Tao Mab4107952011-02-24 14:15:35 +08002083 trace_ocfs2_orphan_filldir((unsigned long long)OCFS2_I(iter)->ip_blkno);
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002084 /* No locking is required for the next_orphan queue as there
2085 * is only ever a single process doing orphan recovery. */
2086 OCFS2_I(iter)->ip_next_orphan = p->head;
2087 p->head = iter;
2088
2089 return 0;
2090}
2091
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002092static int ocfs2_queue_orphans(struct ocfs2_super *osb,
2093 int slot,
Joseph Qi30edc432015-11-05 18:44:01 -08002094 struct inode **head,
2095 enum ocfs2_orphan_reco_type orphan_reco_type)
Mark Fashehccd979b2005-12-15 14:31:24 -08002096{
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002097 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08002098 struct inode *orphan_dir_inode = NULL;
Al Viro3704412b2013-05-22 21:06:00 -04002099 struct ocfs2_orphan_filldir_priv priv = {
2100 .ctx.actor = ocfs2_orphan_filldir,
2101 .osb = osb,
Joseph Qi30edc432015-11-05 18:44:01 -08002102 .head = *head,
2103 .orphan_reco_type = orphan_reco_type
Al Viro3704412b2013-05-22 21:06:00 -04002104 };
Mark Fashehccd979b2005-12-15 14:31:24 -08002105
2106 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
2107 ORPHAN_DIR_SYSTEM_INODE,
2108 slot);
2109 if (!orphan_dir_inode) {
2110 status = -ENOENT;
2111 mlog_errno(status);
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002112 return status;
Sunil Mushran2bd63212010-01-25 16:57:38 -08002113 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002114
Al Viro59551022016-01-22 15:40:57 -05002115 inode_lock(orphan_dir_inode);
Mark Fashehe63aecb62007-10-18 15:30:42 -07002116 status = ocfs2_inode_lock(orphan_dir_inode, NULL, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08002117 if (status < 0) {
Mark Fashehccd979b2005-12-15 14:31:24 -08002118 mlog_errno(status);
2119 goto out;
2120 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002121
Al Viro3704412b2013-05-22 21:06:00 -04002122 status = ocfs2_dir_foreach(orphan_dir_inode, &priv.ctx);
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002123 if (status) {
2124 mlog_errno(status);
Mark Fasheha86370f2007-12-03 14:06:23 -08002125 goto out_cluster;
Mark Fashehccd979b2005-12-15 14:31:24 -08002126 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002127
Mark Fasheh5eae5b92007-09-10 17:50:51 -07002128 *head = priv.head;
2129
Mark Fasheha86370f2007-12-03 14:06:23 -08002130out_cluster:
Mark Fashehe63aecb62007-10-18 15:30:42 -07002131 ocfs2_inode_unlock(orphan_dir_inode, 0);
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002132out:
Al Viro59551022016-01-22 15:40:57 -05002133 inode_unlock(orphan_dir_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002134 iput(orphan_dir_inode);
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002135 return status;
2136}
2137
2138static int ocfs2_orphan_recovery_can_continue(struct ocfs2_super *osb,
2139 int slot)
2140{
2141 int ret;
2142
2143 spin_lock(&osb->osb_lock);
2144 ret = !osb->osb_orphan_wipes[slot];
2145 spin_unlock(&osb->osb_lock);
2146 return ret;
2147}
2148
2149static void ocfs2_mark_recovering_orphan_dir(struct ocfs2_super *osb,
2150 int slot)
2151{
2152 spin_lock(&osb->osb_lock);
2153 /* Mark ourselves such that new processes in delete_inode()
2154 * know to quit early. */
2155 ocfs2_node_map_set_bit(osb, &osb->osb_recovering_orphan_dirs, slot);
2156 while (osb->osb_orphan_wipes[slot]) {
2157 /* If any processes are already in the middle of an
2158 * orphan wipe on this dir, then we need to wait for
2159 * them. */
2160 spin_unlock(&osb->osb_lock);
2161 wait_event_interruptible(osb->osb_wipe_event,
2162 ocfs2_orphan_recovery_can_continue(osb, slot));
2163 spin_lock(&osb->osb_lock);
2164 }
2165 spin_unlock(&osb->osb_lock);
2166}
2167
2168static void ocfs2_clear_recovering_orphan_dir(struct ocfs2_super *osb,
2169 int slot)
2170{
2171 ocfs2_node_map_clear_bit(osb, &osb->osb_recovering_orphan_dirs, slot);
2172}
2173
2174/*
2175 * Orphan recovery. Each mounted node has it's own orphan dir which we
2176 * must run during recovery. Our strategy here is to build a list of
2177 * the inodes in the orphan dir and iget/iput them. The VFS does
2178 * (most) of the rest of the work.
2179 *
2180 * Orphan recovery can happen at any time, not just mount so we have a
2181 * couple of extra considerations.
2182 *
2183 * - We grab as many inodes as we can under the orphan dir lock -
2184 * doing iget() outside the orphan dir risks getting a reference on
2185 * an invalid inode.
2186 * - We must be sure not to deadlock with other processes on the
2187 * system wanting to run delete_inode(). This can happen when they go
2188 * to lock the orphan dir and the orphan recovery process attempts to
2189 * iget() inside the orphan dir lock. This can be avoided by
2190 * advertising our state to ocfs2_delete_inode().
2191 */
2192static int ocfs2_recover_orphans(struct ocfs2_super *osb,
Joseph Qied460cf2015-02-16 15:59:57 -08002193 int slot,
2194 enum ocfs2_orphan_reco_type orphan_reco_type)
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002195{
2196 int ret = 0;
2197 struct inode *inode = NULL;
2198 struct inode *iter;
2199 struct ocfs2_inode_info *oi;
Joseph Qicf1776a2015-06-24 16:54:59 -07002200 struct buffer_head *di_bh = NULL;
2201 struct ocfs2_dinode *di = NULL;
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002202
Tao Mab4107952011-02-24 14:15:35 +08002203 trace_ocfs2_recover_orphans(slot);
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002204
2205 ocfs2_mark_recovering_orphan_dir(osb, slot);
Joseph Qi30edc432015-11-05 18:44:01 -08002206 ret = ocfs2_queue_orphans(osb, slot, &inode, orphan_reco_type);
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002207 ocfs2_clear_recovering_orphan_dir(osb, slot);
2208
2209 /* Error here should be noted, but we want to continue with as
2210 * many queued inodes as we've got. */
2211 if (ret)
2212 mlog_errno(ret);
Mark Fashehccd979b2005-12-15 14:31:24 -08002213
2214 while (inode) {
2215 oi = OCFS2_I(inode);
Tao Mab4107952011-02-24 14:15:35 +08002216 trace_ocfs2_recover_orphans_iput(
2217 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08002218
2219 iter = oi->ip_next_orphan;
Joseph Qied460cf2015-02-16 15:59:57 -08002220 oi->ip_next_orphan = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08002221
Joseph Qi93d911f2015-11-05 18:44:04 -08002222 if (oi->ip_flags & OCFS2_INODE_DIO_ORPHAN_ENTRY) {
Al Viro59551022016-01-22 15:40:57 -05002223 inode_lock(inode);
Joseph Qi93d911f2015-11-05 18:44:04 -08002224 ret = ocfs2_rw_lock(inode, 1);
2225 if (ret < 0) {
2226 mlog_errno(ret);
2227 goto unlock_mutex;
2228 }
2229 /*
2230 * We need to take and drop the inode lock to
2231 * force read inode from disk.
2232 */
2233 ret = ocfs2_inode_lock(inode, &di_bh, 1);
2234 if (ret) {
2235 mlog_errno(ret);
2236 goto unlock_rw;
2237 }
Joseph Qicf1776a2015-06-24 16:54:59 -07002238
Joseph Qi93d911f2015-11-05 18:44:04 -08002239 di = (struct ocfs2_dinode *)di_bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08002240
Joseph Qi93d911f2015-11-05 18:44:04 -08002241 if (di->i_flags & cpu_to_le32(OCFS2_DIO_ORPHANED_FL)) {
2242 ret = ocfs2_truncate_file(inode, di_bh,
2243 i_size_read(inode));
2244 if (ret < 0) {
2245 if (ret != -ENOSPC)
2246 mlog_errno(ret);
2247 goto unlock_inode;
2248 }
2249
2250 ret = ocfs2_del_inode_from_orphan(osb, inode,
2251 di_bh, 0, 0);
2252 if (ret)
2253 mlog_errno(ret);
2254 }
2255unlock_inode:
2256 ocfs2_inode_unlock(inode, 1);
2257 brelse(di_bh);
2258 di_bh = NULL;
2259unlock_rw:
2260 ocfs2_rw_unlock(inode, 1);
2261unlock_mutex:
Al Viro59551022016-01-22 15:40:57 -05002262 inode_unlock(inode);
Joseph Qi93d911f2015-11-05 18:44:04 -08002263
2264 /* clear dio flag in ocfs2_inode_info */
2265 oi->ip_flags &= ~OCFS2_INODE_DIO_ORPHAN_ENTRY;
2266 } else {
Joseph Qied460cf2015-02-16 15:59:57 -08002267 spin_lock(&oi->ip_lock);
2268 /* Set the proper information to get us going into
2269 * ocfs2_delete_inode. */
2270 oi->ip_flags |= OCFS2_INODE_MAYBE_ORPHANED;
2271 spin_unlock(&oi->ip_lock);
Joseph Qiad694822015-09-04 15:44:40 -07002272 }
2273
Mark Fashehccd979b2005-12-15 14:31:24 -08002274 iput(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002275 inode = iter;
2276 }
2277
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002278 return ret;
Mark Fashehccd979b2005-12-15 14:31:24 -08002279}
2280
Jan Kara19ece542008-08-21 20:13:17 +02002281static int __ocfs2_wait_on_mount(struct ocfs2_super *osb, int quota)
Mark Fashehccd979b2005-12-15 14:31:24 -08002282{
2283 /* This check is good because ocfs2 will wait on our recovery
2284 * thread before changing it to something other than MOUNTED
2285 * or DISABLED. */
2286 wait_event(osb->osb_mount_event,
Jan Kara19ece542008-08-21 20:13:17 +02002287 (!quota && atomic_read(&osb->vol_state) == VOLUME_MOUNTED) ||
2288 atomic_read(&osb->vol_state) == VOLUME_MOUNTED_QUOTAS ||
Mark Fashehccd979b2005-12-15 14:31:24 -08002289 atomic_read(&osb->vol_state) == VOLUME_DISABLED);
2290
2291 /* If there's an error on mount, then we may never get to the
2292 * MOUNTED flag, but this is set right before
2293 * dismount_volume() so we can trust it. */
2294 if (atomic_read(&osb->vol_state) == VOLUME_DISABLED) {
Tao Mab4107952011-02-24 14:15:35 +08002295 trace_ocfs2_wait_on_mount(VOLUME_DISABLED);
Mark Fashehccd979b2005-12-15 14:31:24 -08002296 mlog(0, "mount error, exiting!\n");
2297 return -EBUSY;
2298 }
2299
2300 return 0;
2301}
2302
2303static int ocfs2_commit_thread(void *arg)
2304{
2305 int status;
2306 struct ocfs2_super *osb = arg;
2307 struct ocfs2_journal *journal = osb->journal;
2308
2309 /* we can trust j_num_trans here because _should_stop() is only set in
2310 * shutdown and nobody other than ourselves should be able to start
2311 * transactions. committing on shutdown might take a few iterations
2312 * as final transactions put deleted inodes on the list */
2313 while (!(kthread_should_stop() &&
2314 atomic_read(&journal->j_num_trans) == 0)) {
2315
Mark Fasheh745ae8ba2006-02-09 13:23:39 -08002316 wait_event_interruptible(osb->checkpoint_event,
2317 atomic_read(&journal->j_num_trans)
2318 || kthread_should_stop());
Mark Fashehccd979b2005-12-15 14:31:24 -08002319
2320 status = ocfs2_commit_cache(osb);
Joseph Qi55b465b2014-06-04 16:06:09 -07002321 if (status < 0) {
2322 static unsigned long abort_warn_time;
2323
2324 /* Warn about this once per minute */
2325 if (printk_timed_ratelimit(&abort_warn_time, 60*HZ))
2326 mlog(ML_ERROR, "status = %d, journal is "
2327 "already aborted.\n", status);
2328 /*
2329 * After ocfs2_commit_cache() fails, j_num_trans has a
2330 * non-zero value. Sleep here to avoid a busy-wait
2331 * loop.
2332 */
2333 msleep_interruptible(1000);
2334 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002335
2336 if (kthread_should_stop() && atomic_read(&journal->j_num_trans)){
2337 mlog(ML_KTHREAD,
2338 "commit_thread: %u transactions pending on "
2339 "shutdown\n",
2340 atomic_read(&journal->j_num_trans));
2341 }
2342 }
2343
2344 return 0;
2345}
2346
Sunil Mushran539d8262008-07-14 17:31:10 -07002347/* Reads all the journal inodes without taking any cluster locks. Used
2348 * for hard readonly access to determine whether any journal requires
2349 * recovery. Also used to refresh the recovery generation numbers after
2350 * a journal has been recovered by another node.
2351 */
Mark Fashehccd979b2005-12-15 14:31:24 -08002352int ocfs2_check_journals_nolocks(struct ocfs2_super *osb)
2353{
2354 int ret = 0;
2355 unsigned int slot;
Sunil Mushran539d8262008-07-14 17:31:10 -07002356 struct buffer_head *di_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08002357 struct ocfs2_dinode *di;
Sunil Mushran539d8262008-07-14 17:31:10 -07002358 int journal_dirty = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002359
2360 for(slot = 0; slot < osb->max_slots; slot++) {
Sunil Mushran539d8262008-07-14 17:31:10 -07002361 ret = ocfs2_read_journal_inode(osb, slot, &di_bh, NULL);
2362 if (ret) {
Mark Fashehccd979b2005-12-15 14:31:24 -08002363 mlog_errno(ret);
2364 goto out;
2365 }
2366
2367 di = (struct ocfs2_dinode *) di_bh->b_data;
2368
Sunil Mushran539d8262008-07-14 17:31:10 -07002369 osb->slot_recovery_generations[slot] =
2370 ocfs2_get_recovery_generation(di);
2371
Mark Fashehccd979b2005-12-15 14:31:24 -08002372 if (le32_to_cpu(di->id1.journal1.ij_flags) &
2373 OCFS2_JOURNAL_DIRTY_FL)
Sunil Mushran539d8262008-07-14 17:31:10 -07002374 journal_dirty = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08002375
2376 brelse(di_bh);
Sunil Mushran539d8262008-07-14 17:31:10 -07002377 di_bh = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08002378 }
2379
2380out:
Sunil Mushran539d8262008-07-14 17:31:10 -07002381 if (journal_dirty)
2382 ret = -EROFS;
Mark Fashehccd979b2005-12-15 14:31:24 -08002383 return ret;
2384}