1 // SPDX-License-Identifier: GPL-2.0-only
2 /******************************************************************************
3 *******************************************************************************
5 ** Copyright (C) 2005-2011 Red Hat, Inc. All rights reserved.
8 *******************************************************************************
9 ******************************************************************************/
11 #include "dlm_internal.h"
12 #include "lockspace.h"
20 int dlm_slots_version(struct dlm_header
*h
)
22 if ((h
->h_version
& 0x0000FFFF) < DLM_HEADER_SLOTS
)
27 void dlm_slot_save(struct dlm_ls
*ls
, struct dlm_rcom
*rc
,
28 struct dlm_member
*memb
)
30 struct rcom_config
*rf
= (struct rcom_config
*)rc
->rc_buf
;
32 if (!dlm_slots_version(&rc
->rc_header
))
35 memb
->slot
= le16_to_cpu(rf
->rf_our_slot
);
36 memb
->generation
= le32_to_cpu(rf
->rf_generation
);
39 void dlm_slots_copy_out(struct dlm_ls
*ls
, struct dlm_rcom
*rc
)
41 struct dlm_slot
*slot
;
45 ro
= (struct rcom_slot
*)(rc
->rc_buf
+ sizeof(struct rcom_config
));
47 /* ls_slots array is sparse, but not rcom_slots */
49 for (i
= 0; i
< ls
->ls_slots_size
; i
++) {
50 slot
= &ls
->ls_slots
[i
];
53 ro
->ro_nodeid
= cpu_to_le32(slot
->nodeid
);
54 ro
->ro_slot
= cpu_to_le16(slot
->slot
);
59 #define SLOT_DEBUG_LINE 128
61 static void log_slots(struct dlm_ls
*ls
, uint32_t gen
, int num_slots
,
62 struct rcom_slot
*ro0
, struct dlm_slot
*array
,
65 char line
[SLOT_DEBUG_LINE
];
66 int len
= SLOT_DEBUG_LINE
- 1;
70 memset(line
, 0, sizeof(line
));
73 for (i
= 0; i
< array_size
; i
++) {
77 ret
= snprintf(line
+ pos
, len
- pos
, " %d:%d",
78 array
[i
].slot
, array
[i
].nodeid
);
84 for (i
= 0; i
< num_slots
; i
++) {
85 ret
= snprintf(line
+ pos
, len
- pos
, " %d:%d",
86 ro0
[i
].ro_slot
, ro0
[i
].ro_nodeid
);
93 log_rinfo(ls
, "generation %u slots %d%s", gen
, num_slots
, line
);
96 int dlm_slots_copy_in(struct dlm_ls
*ls
)
98 struct dlm_member
*memb
;
99 struct dlm_rcom
*rc
= ls
->ls_recover_buf
;
100 struct rcom_config
*rf
= (struct rcom_config
*)rc
->rc_buf
;
101 struct rcom_slot
*ro0
, *ro
;
102 int our_nodeid
= dlm_our_nodeid();
106 if (!dlm_slots_version(&rc
->rc_header
))
109 gen
= le32_to_cpu(rf
->rf_generation
);
110 if (gen
<= ls
->ls_generation
) {
111 log_error(ls
, "dlm_slots_copy_in gen %u old %u",
112 gen
, ls
->ls_generation
);
114 ls
->ls_generation
= gen
;
116 num_slots
= le16_to_cpu(rf
->rf_num_slots
);
120 ro0
= (struct rcom_slot
*)(rc
->rc_buf
+ sizeof(struct rcom_config
));
122 for (i
= 0, ro
= ro0
; i
< num_slots
; i
++, ro
++) {
123 ro
->ro_nodeid
= le32_to_cpu(ro
->ro_nodeid
);
124 ro
->ro_slot
= le16_to_cpu(ro
->ro_slot
);
127 log_slots(ls
, gen
, num_slots
, ro0
, NULL
, 0);
129 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
130 for (i
= 0, ro
= ro0
; i
< num_slots
; i
++, ro
++) {
131 if (ro
->ro_nodeid
!= memb
->nodeid
)
133 memb
->slot
= ro
->ro_slot
;
134 memb
->slot_prev
= memb
->slot
;
138 if (memb
->nodeid
== our_nodeid
) {
139 if (ls
->ls_slot
&& ls
->ls_slot
!= memb
->slot
) {
140 log_error(ls
, "dlm_slots_copy_in our slot "
141 "changed %d %d", ls
->ls_slot
,
147 ls
->ls_slot
= memb
->slot
;
151 log_error(ls
, "dlm_slots_copy_in nodeid %d no slot",
160 /* for any nodes that do not support slots, we will not have set memb->slot
161 in wait_status_all(), so memb->slot will remain -1, and we will not
162 assign slots or set ls_num_slots here */
164 int dlm_slots_assign(struct dlm_ls
*ls
, int *num_slots
, int *slots_size
,
165 struct dlm_slot
**slots_out
, uint32_t *gen_out
)
167 struct dlm_member
*memb
;
168 struct dlm_slot
*array
;
169 int our_nodeid
= dlm_our_nodeid();
170 int array_size
, max_slots
, i
;
176 /* our own memb struct will have slot -1 gen 0 */
178 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
179 if (memb
->nodeid
== our_nodeid
) {
180 memb
->slot
= ls
->ls_slot
;
181 memb
->generation
= ls
->ls_generation
;
186 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
187 if (memb
->generation
> gen
)
188 gen
= memb
->generation
;
190 /* node doesn't support slots */
192 if (memb
->slot
== -1)
195 /* node needs a slot assigned */
200 /* node has a slot assigned */
204 if (!max
|| max
< memb
->slot
)
207 /* sanity check, once slot is assigned it shouldn't change */
209 if (memb
->slot_prev
&& memb
->slot
&& memb
->slot_prev
!= memb
->slot
) {
210 log_error(ls
, "nodeid %d slot changed %d %d",
211 memb
->nodeid
, memb
->slot_prev
, memb
->slot
);
214 memb
->slot_prev
= memb
->slot
;
217 array_size
= max
+ need
;
218 array
= kcalloc(array_size
, sizeof(*array
), GFP_NOFS
);
224 /* fill in slots (offsets) that are used */
226 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
230 if (memb
->slot
> array_size
) {
231 log_error(ls
, "invalid slot number %d", memb
->slot
);
236 array
[memb
->slot
- 1].nodeid
= memb
->nodeid
;
237 array
[memb
->slot
- 1].slot
= memb
->slot
;
241 /* assign new slots from unused offsets */
243 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
247 for (i
= 0; i
< array_size
; i
++) {
252 memb
->slot_prev
= memb
->slot
;
253 array
[i
].nodeid
= memb
->nodeid
;
254 array
[i
].slot
= memb
->slot
;
257 if (!ls
->ls_slot
&& memb
->nodeid
== our_nodeid
)
258 ls
->ls_slot
= memb
->slot
;
263 log_error(ls
, "no free slot found");
271 log_slots(ls
, gen
, num
, NULL
, array
, array_size
);
273 max_slots
= (dlm_config
.ci_buffer_size
- sizeof(struct dlm_rcom
) -
274 sizeof(struct rcom_config
)) / sizeof(struct rcom_slot
);
276 if (num
> max_slots
) {
277 log_error(ls
, "num_slots %d exceeds max_slots %d",
285 *slots_size
= array_size
;
290 static void add_ordered_member(struct dlm_ls
*ls
, struct dlm_member
*new)
292 struct dlm_member
*memb
= NULL
;
293 struct list_head
*tmp
;
294 struct list_head
*newlist
= &new->list
;
295 struct list_head
*head
= &ls
->ls_nodes
;
297 list_for_each(tmp
, head
) {
298 memb
= list_entry(tmp
, struct dlm_member
, list
);
299 if (new->nodeid
< memb
->nodeid
)
304 list_add_tail(newlist
, head
);
306 /* FIXME: can use list macro here */
307 newlist
->prev
= tmp
->prev
;
309 tmp
->prev
->next
= newlist
;
314 static int dlm_add_member(struct dlm_ls
*ls
, struct dlm_config_node
*node
)
316 struct dlm_member
*memb
;
319 memb
= kzalloc(sizeof(*memb
), GFP_NOFS
);
323 error
= dlm_lowcomms_connect_node(node
->nodeid
);
329 memb
->nodeid
= node
->nodeid
;
330 memb
->weight
= node
->weight
;
331 memb
->comm_seq
= node
->comm_seq
;
332 add_ordered_member(ls
, memb
);
337 static struct dlm_member
*find_memb(struct list_head
*head
, int nodeid
)
339 struct dlm_member
*memb
;
341 list_for_each_entry(memb
, head
, list
) {
342 if (memb
->nodeid
== nodeid
)
348 int dlm_is_member(struct dlm_ls
*ls
, int nodeid
)
350 if (find_memb(&ls
->ls_nodes
, nodeid
))
355 int dlm_is_removed(struct dlm_ls
*ls
, int nodeid
)
357 if (find_memb(&ls
->ls_nodes_gone
, nodeid
))
362 static void clear_memb_list(struct list_head
*head
)
364 struct dlm_member
*memb
;
366 while (!list_empty(head
)) {
367 memb
= list_entry(head
->next
, struct dlm_member
, list
);
368 list_del(&memb
->list
);
373 void dlm_clear_members(struct dlm_ls
*ls
)
375 clear_memb_list(&ls
->ls_nodes
);
376 ls
->ls_num_nodes
= 0;
379 void dlm_clear_members_gone(struct dlm_ls
*ls
)
381 clear_memb_list(&ls
->ls_nodes_gone
);
384 static void make_member_array(struct dlm_ls
*ls
)
386 struct dlm_member
*memb
;
387 int i
, w
, x
= 0, total
= 0, all_zero
= 0, *array
;
389 kfree(ls
->ls_node_array
);
390 ls
->ls_node_array
= NULL
;
392 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
394 total
+= memb
->weight
;
397 /* all nodes revert to weight of 1 if all have weight 0 */
400 total
= ls
->ls_num_nodes
;
404 ls
->ls_total_weight
= total
;
405 array
= kmalloc_array(total
, sizeof(*array
), GFP_NOFS
);
409 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
410 if (!all_zero
&& !memb
->weight
)
418 DLM_ASSERT(x
< total
, printk("total %d x %d\n", total
, x
););
420 for (i
= 0; i
< w
; i
++)
421 array
[x
++] = memb
->nodeid
;
424 ls
->ls_node_array
= array
;
427 /* send a status request to all members just to establish comms connections */
429 static int ping_members(struct dlm_ls
*ls
)
431 struct dlm_member
*memb
;
434 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
435 error
= dlm_recovery_stopped(ls
);
438 error
= dlm_rcom_status(ls
, memb
->nodeid
, 0);
443 log_rinfo(ls
, "ping_members aborted %d last nodeid %d",
444 error
, ls
->ls_recover_nodeid
);
448 static void dlm_lsop_recover_prep(struct dlm_ls
*ls
)
450 if (!ls
->ls_ops
|| !ls
->ls_ops
->recover_prep
)
452 ls
->ls_ops
->recover_prep(ls
->ls_ops_arg
);
455 static void dlm_lsop_recover_slot(struct dlm_ls
*ls
, struct dlm_member
*memb
)
457 struct dlm_slot slot
;
461 if (!ls
->ls_ops
|| !ls
->ls_ops
->recover_slot
)
464 /* if there is no comms connection with this node
465 or the present comms connection is newer
466 than the one when this member was added, then
467 we consider the node to have failed (versus
468 being removed due to dlm_release_lockspace) */
470 error
= dlm_comm_seq(memb
->nodeid
, &seq
);
472 if (!error
&& seq
== memb
->comm_seq
)
475 slot
.nodeid
= memb
->nodeid
;
476 slot
.slot
= memb
->slot
;
478 ls
->ls_ops
->recover_slot(ls
->ls_ops_arg
, &slot
);
481 void dlm_lsop_recover_done(struct dlm_ls
*ls
)
483 struct dlm_member
*memb
;
484 struct dlm_slot
*slots
;
487 if (!ls
->ls_ops
|| !ls
->ls_ops
->recover_done
)
490 num
= ls
->ls_num_nodes
;
491 slots
= kcalloc(num
, sizeof(*slots
), GFP_KERNEL
);
496 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
498 log_error(ls
, "dlm_lsop_recover_done bad num %d", num
);
501 slots
[i
].nodeid
= memb
->nodeid
;
502 slots
[i
].slot
= memb
->slot
;
506 ls
->ls_ops
->recover_done(ls
->ls_ops_arg
, slots
, num
,
507 ls
->ls_slot
, ls
->ls_generation
);
512 static struct dlm_config_node
*find_config_node(struct dlm_recover
*rv
,
517 for (i
= 0; i
< rv
->nodes_count
; i
++) {
518 if (rv
->nodes
[i
].nodeid
== nodeid
)
519 return &rv
->nodes
[i
];
524 int dlm_recover_members(struct dlm_ls
*ls
, struct dlm_recover
*rv
, int *neg_out
)
526 struct dlm_member
*memb
, *safe
;
527 struct dlm_config_node
*node
;
528 int i
, error
, neg
= 0, low
= -1;
530 /* previously removed members that we've not finished removing need to
531 count as a negative change so the "neg" recovery steps will happen */
533 list_for_each_entry(memb
, &ls
->ls_nodes_gone
, list
) {
534 log_rinfo(ls
, "prev removed member %d", memb
->nodeid
);
538 /* move departed members from ls_nodes to ls_nodes_gone */
540 list_for_each_entry_safe(memb
, safe
, &ls
->ls_nodes
, list
) {
541 node
= find_config_node(rv
, memb
->nodeid
);
542 if (node
&& !node
->new)
546 log_rinfo(ls
, "remove member %d", memb
->nodeid
);
548 /* removed and re-added */
549 log_rinfo(ls
, "remove member %d comm_seq %u %u",
550 memb
->nodeid
, memb
->comm_seq
, node
->comm_seq
);
554 list_move(&memb
->list
, &ls
->ls_nodes_gone
);
556 dlm_lsop_recover_slot(ls
, memb
);
559 /* add new members to ls_nodes */
561 for (i
= 0; i
< rv
->nodes_count
; i
++) {
562 node
= &rv
->nodes
[i
];
563 if (dlm_is_member(ls
, node
->nodeid
))
565 dlm_add_member(ls
, node
);
566 log_rinfo(ls
, "add member %d", node
->nodeid
);
569 list_for_each_entry(memb
, &ls
->ls_nodes
, list
) {
570 if (low
== -1 || memb
->nodeid
< low
)
573 ls
->ls_low_nodeid
= low
;
575 make_member_array(ls
);
578 error
= ping_members(ls
);
579 if (!error
|| error
== -EPROTO
) {
580 /* new_lockspace() may be waiting to know if the config
582 ls
->ls_members_result
= error
;
583 complete(&ls
->ls_members_done
);
586 log_rinfo(ls
, "dlm_recover_members %d nodes", ls
->ls_num_nodes
);
590 /* Userspace guarantees that dlm_ls_stop() has completed on all nodes before
591 dlm_ls_start() is called on any of them to start the new recovery. */
593 int dlm_ls_stop(struct dlm_ls
*ls
)
598 * Prevent dlm_recv from being in the middle of something when we do
599 * the stop. This includes ensuring dlm_recv isn't processing a
600 * recovery message (rcom), while dlm_recoverd is aborting and
601 * resetting things from an in-progress recovery. i.e. we want
602 * dlm_recoverd to abort its recovery without worrying about dlm_recv
603 * processing an rcom at the same time. Stopping dlm_recv also makes
604 * it easy for dlm_receive_message() to check locking stopped and add a
605 * message to the requestqueue without races.
608 down_write(&ls
->ls_recv_active
);
611 * Abort any recovery that's in progress (see RECOVER_STOP,
612 * dlm_recovery_stopped()) and tell any other threads running in the
613 * dlm to quit any processing (see RUNNING, dlm_locking_stopped()).
616 spin_lock(&ls
->ls_recover_lock
);
617 set_bit(LSFL_RECOVER_STOP
, &ls
->ls_flags
);
618 new = test_and_clear_bit(LSFL_RUNNING
, &ls
->ls_flags
);
619 ls
->ls_recover_seq
++;
620 spin_unlock(&ls
->ls_recover_lock
);
623 * Let dlm_recv run again, now any normal messages will be saved on the
624 * requestqueue for later.
627 up_write(&ls
->ls_recv_active
);
630 * This in_recovery lock does two things:
631 * 1) Keeps this function from returning until all threads are out
632 * of locking routines and locking is truly stopped.
633 * 2) Keeps any new requests from being processed until it's unlocked
634 * when recovery is complete.
638 set_bit(LSFL_RECOVER_DOWN
, &ls
->ls_flags
);
639 wake_up_process(ls
->ls_recoverd_task
);
640 wait_event(ls
->ls_recover_lock_wait
,
641 test_bit(LSFL_RECOVER_LOCK
, &ls
->ls_flags
));
645 * The recoverd suspend/resume makes sure that dlm_recoverd (if
646 * running) has noticed RECOVER_STOP above and quit processing the
650 dlm_recoverd_suspend(ls
);
652 spin_lock(&ls
->ls_recover_lock
);
655 ls
->ls_num_slots
= 0;
656 ls
->ls_slots_size
= 0;
657 ls
->ls_recover_status
= 0;
658 spin_unlock(&ls
->ls_recover_lock
);
660 dlm_recoverd_resume(ls
);
662 if (!ls
->ls_recover_begin
)
663 ls
->ls_recover_begin
= jiffies
;
665 dlm_lsop_recover_prep(ls
);
669 int dlm_ls_start(struct dlm_ls
*ls
)
671 struct dlm_recover
*rv
, *rv_old
;
672 struct dlm_config_node
*nodes
= NULL
;
675 rv
= kzalloc(sizeof(*rv
), GFP_NOFS
);
679 error
= dlm_config_nodes(ls
->ls_name
, &nodes
, &count
);
683 spin_lock(&ls
->ls_recover_lock
);
685 /* the lockspace needs to be stopped before it can be started */
687 if (!dlm_locking_stopped(ls
)) {
688 spin_unlock(&ls
->ls_recover_lock
);
689 log_error(ls
, "start ignored: lockspace running");
695 rv
->nodes_count
= count
;
696 rv
->seq
= ++ls
->ls_recover_seq
;
697 rv_old
= ls
->ls_recover_args
;
698 ls
->ls_recover_args
= rv
;
699 spin_unlock(&ls
->ls_recover_lock
);
702 log_error(ls
, "unused recovery %llx %d",
703 (unsigned long long)rv_old
->seq
, rv_old
->nodes_count
);
704 kfree(rv_old
->nodes
);
708 set_bit(LSFL_RECOVER_WORK
, &ls
->ls_flags
);
709 wake_up_process(ls
->ls_recoverd_task
);