1 /******************************************************************************
2 *******************************************************************************
4 ** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
5 ** Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
7 ** This copyrighted material is made available to anyone wishing to use,
8 ** modify, copy, or redistribute it subject to the terms and conditions
9 ** of the GNU General Public License v.2.
11 *******************************************************************************
12 ******************************************************************************/
14 #include "dlm_internal.h"
15 #include "lockspace.h"
22 #include "requestqueue.h"
26 /* If the start for which we're re-enabling locking (seq) has been superseded
27 by a newer stop (ls_recover_seq), we need to leave locking disabled. */
29 static int enable_locking(struct dlm_ls
*ls
, uint64_t seq
)
33 spin_lock(&ls
->ls_recover_lock
);
34 if (ls
->ls_recover_seq
== seq
) {
35 set_bit(LSFL_RUNNING
, &ls
->ls_flags
);
36 up_write(&ls
->ls_in_recovery
);
39 spin_unlock(&ls
->ls_recover_lock
);
43 static int ls_recover(struct dlm_ls
*ls
, struct dlm_recover
*rv
)
48 log_debug(ls
, "recover %llx", (unsigned long long)rv
->seq
);
50 mutex_lock(&ls
->ls_recoverd_active
);
53 * Suspending and resuming dlm_astd ensures that no lkb's from this ls
54 * will be processed by dlm_astd during recovery.
61 * This list of root rsb's will be the basis of most of the recovery
65 dlm_create_root_list(ls
);
68 * Free all the tossed rsb's so we don't have to recover them.
71 dlm_clear_toss_list(ls
);
74 * Add or remove nodes from the lockspace's ls_nodes list.
75 * Also waits for all nodes to complete dlm_recover_members.
78 error
= dlm_recover_members(ls
, rv
, &neg
);
80 log_debug(ls
, "recover_members failed %d", error
);
86 * Rebuild our own share of the directory by collecting from all other
87 * nodes their master rsb names that hash to us.
90 error
= dlm_recover_directory(ls
);
92 log_debug(ls
, "recover_directory failed %d", error
);
97 * Wait for all nodes to complete directory rebuild.
100 error
= dlm_recover_directory_wait(ls
);
102 log_debug(ls
, "recover_directory_wait failed %d", error
);
107 * We may have outstanding operations that are waiting for a reply from
108 * a failed node. Mark these to be resent after recovery. Unlock and
109 * cancel ops can just be completed.
112 dlm_recover_waiters_pre(ls
);
114 error
= dlm_recovery_stopped(ls
);
118 if (neg
|| dlm_no_directory(ls
)) {
120 * Clear lkb's for departed nodes.
126 * Get new master nodeid's for rsb's that were mastered on
130 error
= dlm_recover_masters(ls
);
132 log_debug(ls
, "recover_masters failed %d", error
);
137 * Send our locks on remastered rsb's to the new masters.
140 error
= dlm_recover_locks(ls
);
142 log_debug(ls
, "recover_locks failed %d", error
);
146 error
= dlm_recover_locks_wait(ls
);
148 log_debug(ls
, "recover_locks_wait failed %d", error
);
153 * Finalize state in master rsb's now that all locks can be
154 * checked. This includes conversion resolution and lvb
158 dlm_recover_rsbs(ls
);
161 * Other lockspace members may be going through the "neg" steps
162 * while also adding us to the lockspace, in which case they'll
163 * be doing the recover_locks (RS_LOCKS) barrier.
165 dlm_set_recover_status(ls
, DLM_RS_LOCKS
);
167 error
= dlm_recover_locks_wait(ls
);
169 log_debug(ls
, "recover_locks_wait failed %d", error
);
174 dlm_release_root_list(ls
);
177 * Purge directory-related requests that are saved in requestqueue.
178 * All dir requests from before recovery are invalid now due to the dir
179 * rebuild and will be resent by the requesting nodes.
182 dlm_purge_requestqueue(ls
);
184 dlm_set_recover_status(ls
, DLM_RS_DONE
);
185 error
= dlm_recover_done_wait(ls
);
187 log_debug(ls
, "recover_done_wait failed %d", error
);
191 dlm_clear_members_gone(ls
);
193 dlm_adjust_timeouts(ls
);
195 error
= enable_locking(ls
, rv
->seq
);
197 log_debug(ls
, "enable_locking failed %d", error
);
201 error
= dlm_process_requestqueue(ls
);
203 log_debug(ls
, "process_requestqueue failed %d", error
);
207 error
= dlm_recover_waiters_post(ls
);
209 log_debug(ls
, "recover_waiters_post failed %d", error
);
213 dlm_grant_after_purge(ls
);
217 log_debug(ls
, "recover %llx done: %u ms",
218 (unsigned long long)rv
->seq
,
219 jiffies_to_msecs(jiffies
- start
));
220 mutex_unlock(&ls
->ls_recoverd_active
);
225 dlm_release_root_list(ls
);
226 log_debug(ls
, "recover %llx error %d",
227 (unsigned long long)rv
->seq
, error
);
228 mutex_unlock(&ls
->ls_recoverd_active
);
232 /* The dlm_ls_start() that created the rv we take here may already have been
233 stopped via dlm_ls_stop(); in that case we need to leave the RECOVERY_STOP
236 static void do_ls_recovery(struct dlm_ls
*ls
)
238 struct dlm_recover
*rv
= NULL
;
240 spin_lock(&ls
->ls_recover_lock
);
241 rv
= ls
->ls_recover_args
;
242 ls
->ls_recover_args
= NULL
;
243 if (rv
&& ls
->ls_recover_seq
== rv
->seq
)
244 clear_bit(LSFL_RECOVERY_STOP
, &ls
->ls_flags
);
245 spin_unlock(&ls
->ls_recover_lock
);
254 static int dlm_recoverd(void *arg
)
258 ls
= dlm_find_lockspace_local(arg
);
260 log_print("dlm_recoverd: no lockspace %p", arg
);
264 while (!kthread_should_stop()) {
265 set_current_state(TASK_INTERRUPTIBLE
);
266 if (!test_bit(LSFL_WORK
, &ls
->ls_flags
))
268 set_current_state(TASK_RUNNING
);
270 if (test_and_clear_bit(LSFL_WORK
, &ls
->ls_flags
))
274 dlm_put_lockspace(ls
);
278 void dlm_recoverd_kick(struct dlm_ls
*ls
)
280 set_bit(LSFL_WORK
, &ls
->ls_flags
);
281 wake_up_process(ls
->ls_recoverd_task
);
284 int dlm_recoverd_start(struct dlm_ls
*ls
)
286 struct task_struct
*p
;
289 p
= kthread_run(dlm_recoverd
, ls
, "dlm_recoverd");
293 ls
->ls_recoverd_task
= p
;
297 void dlm_recoverd_stop(struct dlm_ls
*ls
)
299 kthread_stop(ls
->ls_recoverd_task
);
302 void dlm_recoverd_suspend(struct dlm_ls
*ls
)
304 wake_up(&ls
->ls_wait_general
);
305 mutex_lock(&ls
->ls_recoverd_active
);
308 void dlm_recoverd_resume(struct dlm_ls
*ls
)
310 mutex_unlock(&ls
->ls_recoverd_active
);