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 We suspend dlm_recv threads here to avoid the race where dlm_recv a) sees
30 locking stopped and b) adds a message to the requestqueue, but dlm_recoverd
31 enables locking and clears the requestqueue between a and b. */
33 static int enable_locking(struct dlm_ls
*ls
, uint64_t seq
)
37 down_write(&ls
->ls_recv_active
);
39 spin_lock(&ls
->ls_recover_lock
);
40 if (ls
->ls_recover_seq
== seq
) {
41 set_bit(LSFL_RUNNING
, &ls
->ls_flags
);
42 /* unblocks processes waiting to enter the dlm */
43 up_write(&ls
->ls_in_recovery
);
46 spin_unlock(&ls
->ls_recover_lock
);
48 up_write(&ls
->ls_recv_active
);
52 static int ls_recover(struct dlm_ls
*ls
, struct dlm_recover
*rv
)
57 log_debug(ls
, "recover %llx", (unsigned long long)rv
->seq
);
59 mutex_lock(&ls
->ls_recoverd_active
);
62 * Suspending and resuming dlm_astd ensures that no lkb's from this ls
63 * will be processed by dlm_astd during recovery.
70 * This list of root rsb's will be the basis of most of the recovery
74 dlm_create_root_list(ls
);
77 * Free all the tossed rsb's so we don't have to recover them.
80 dlm_clear_toss_list(ls
);
83 * Add or remove nodes from the lockspace's ls_nodes list.
84 * Also waits for all nodes to complete dlm_recover_members.
87 error
= dlm_recover_members(ls
, rv
, &neg
);
89 log_debug(ls
, "recover_members failed %d", error
);
95 * Rebuild our own share of the directory by collecting from all other
96 * nodes their master rsb names that hash to us.
99 error
= dlm_recover_directory(ls
);
101 log_debug(ls
, "recover_directory failed %d", error
);
106 * Wait for all nodes to complete directory rebuild.
109 error
= dlm_recover_directory_wait(ls
);
111 log_debug(ls
, "recover_directory_wait failed %d", error
);
116 * We may have outstanding operations that are waiting for a reply from
117 * a failed node. Mark these to be resent after recovery. Unlock and
118 * cancel ops can just be completed.
121 dlm_recover_waiters_pre(ls
);
123 error
= dlm_recovery_stopped(ls
);
127 if (neg
|| dlm_no_directory(ls
)) {
129 * Clear lkb's for departed nodes.
135 * Get new master nodeid's for rsb's that were mastered on
139 error
= dlm_recover_masters(ls
);
141 log_debug(ls
, "recover_masters failed %d", error
);
146 * Send our locks on remastered rsb's to the new masters.
149 error
= dlm_recover_locks(ls
);
151 log_debug(ls
, "recover_locks failed %d", error
);
155 error
= dlm_recover_locks_wait(ls
);
157 log_debug(ls
, "recover_locks_wait failed %d", error
);
162 * Finalize state in master rsb's now that all locks can be
163 * checked. This includes conversion resolution and lvb
167 dlm_recover_rsbs(ls
);
170 * Other lockspace members may be going through the "neg" steps
171 * while also adding us to the lockspace, in which case they'll
172 * be doing the recover_locks (RS_LOCKS) barrier.
174 dlm_set_recover_status(ls
, DLM_RS_LOCKS
);
176 error
= dlm_recover_locks_wait(ls
);
178 log_debug(ls
, "recover_locks_wait failed %d", error
);
183 dlm_release_root_list(ls
);
186 * Purge directory-related requests that are saved in requestqueue.
187 * All dir requests from before recovery are invalid now due to the dir
188 * rebuild and will be resent by the requesting nodes.
191 dlm_purge_requestqueue(ls
);
193 dlm_set_recover_status(ls
, DLM_RS_DONE
);
194 error
= dlm_recover_done_wait(ls
);
196 log_debug(ls
, "recover_done_wait failed %d", error
);
200 dlm_clear_members_gone(ls
);
202 dlm_adjust_timeouts(ls
);
204 error
= enable_locking(ls
, rv
->seq
);
206 log_debug(ls
, "enable_locking failed %d", error
);
210 error
= dlm_process_requestqueue(ls
);
212 log_debug(ls
, "process_requestqueue failed %d", error
);
216 error
= dlm_recover_waiters_post(ls
);
218 log_debug(ls
, "recover_waiters_post failed %d", error
);
222 dlm_grant_after_purge(ls
);
226 log_debug(ls
, "recover %llx done: %u ms",
227 (unsigned long long)rv
->seq
,
228 jiffies_to_msecs(jiffies
- start
));
229 mutex_unlock(&ls
->ls_recoverd_active
);
234 dlm_release_root_list(ls
);
235 log_debug(ls
, "recover %llx error %d",
236 (unsigned long long)rv
->seq
, error
);
237 mutex_unlock(&ls
->ls_recoverd_active
);
241 /* The dlm_ls_start() that created the rv we take here may already have been
242 stopped via dlm_ls_stop(); in that case we need to leave the RECOVERY_STOP
245 static void do_ls_recovery(struct dlm_ls
*ls
)
247 struct dlm_recover
*rv
= NULL
;
249 spin_lock(&ls
->ls_recover_lock
);
250 rv
= ls
->ls_recover_args
;
251 ls
->ls_recover_args
= NULL
;
252 if (rv
&& ls
->ls_recover_seq
== rv
->seq
)
253 clear_bit(LSFL_RECOVERY_STOP
, &ls
->ls_flags
);
254 spin_unlock(&ls
->ls_recover_lock
);
263 static int dlm_recoverd(void *arg
)
267 ls
= dlm_find_lockspace_local(arg
);
269 log_print("dlm_recoverd: no lockspace %p", arg
);
273 while (!kthread_should_stop()) {
274 set_current_state(TASK_INTERRUPTIBLE
);
275 if (!test_bit(LSFL_WORK
, &ls
->ls_flags
))
277 set_current_state(TASK_RUNNING
);
279 if (test_and_clear_bit(LSFL_WORK
, &ls
->ls_flags
))
283 dlm_put_lockspace(ls
);
287 void dlm_recoverd_kick(struct dlm_ls
*ls
)
289 set_bit(LSFL_WORK
, &ls
->ls_flags
);
290 wake_up_process(ls
->ls_recoverd_task
);
293 int dlm_recoverd_start(struct dlm_ls
*ls
)
295 struct task_struct
*p
;
298 p
= kthread_run(dlm_recoverd
, ls
, "dlm_recoverd");
302 ls
->ls_recoverd_task
= p
;
306 void dlm_recoverd_stop(struct dlm_ls
*ls
)
308 kthread_stop(ls
->ls_recoverd_task
);
311 void dlm_recoverd_suspend(struct dlm_ls
*ls
)
313 wake_up(&ls
->ls_wait_general
);
314 mutex_lock(&ls
->ls_recoverd_active
);
317 void dlm_recoverd_resume(struct dlm_ls
*ls
)
319 mutex_unlock(&ls
->ls_recoverd_active
);