Go to file
Christine Caulfield 4e683699b9 rust: Update to latest standards
Updating to Rust 2021 is a no-op (but worth doing for future),
I've also taken this opportunity to use the latest bitflags crate.

Signed-off-by: Christine Caulfield <ccaulfie@redhat.com>
Reviewed-by: Jan Friesse <jfriesse@redhat.com>
2024-10-31 11:00:35 +01:00
bindings rust: Update to latest standards 2024-10-31 11:00:35 +01:00
build-aux Rust: Remove obsolete bindgen flag 2023-04-24 09:27:32 +02:00
common_lib common_lib: Remove trailing spaces in cs_strerror 2020-09-24 15:32:14 +02:00
conf Move corosync-notifyd policy file into $(datadir)/dbus-1/system.d 2024-05-28 17:03:09 +02:00
exec totemsrp: Fix orf_token stats 2024-10-31 10:58:02 +01:00
include stats: Store token rx and tx timestamps as 64-bit 2024-10-23 16:02:50 +02:00
init init: Use corosync-cfgtool for shutdown 2021-01-14 16:10:29 +01:00
lib Fix up the library .versions files 2024-01-02 15:32:29 +01:00
man main: support lock pid file arg 2024-08-07 16:36:00 +02:00
pkgconfig pkgconfig: Export corosysconfdir 2022-01-05 14:06:44 +01:00
test build: Add explicit dependency for used libraries 2021-11-10 08:24:20 +01:00
tools Report crypto errors back to cfg reload 2024-02-05 15:20:08 +01:00
vqsim log: Configure knet logging to the same as corosync 2022-03-31 17:29:20 +02:00
.clang-format Add clang-format configuration file 2016-05-03 17:13:54 +02:00
.gitarchivever build: Support for git archive stored tags 2018-09-03 15:50:29 +02:00
.gitattributes build: Support for git archive stored tags 2018-09-03 15:50:29 +02:00
.gitignore bindings: Add Rust bindings 2023-01-26 17:03:36 +01:00
AUTHORS drop evs service 2012-03-12 15:51:50 +01:00
autogen.sh build: use libtool for linking 2012-08-28 15:14:48 +02:00
configure.ac configure: Fix building of rust for release 2023-11-28 16:03:14 +01:00
corosync.spec.in Move corosync-notifyd policy file into $(datadir)/dbus-1/system.d 2024-05-28 17:03:09 +02:00
Doxyfile.in Remove deprecated doxygen flags 2016-12-05 09:50:30 +01:00
INSTALL doc: Update INSTALL file 2019-01-18 15:06:18 +01:00
LICENSE License: Fix year (mainly to fix rust building) 2023-11-20 14:56:58 +01:00
loc Remove services directory from loc command 2012-01-16 09:30:53 -07:00
Makefile.am bindings: Add Rust bindings 2023-01-26 17:03:36 +01:00
README.recovery Fix typos in README.recovery 2017-04-21 17:42:06 +02:00

SYNCHRONIZATION ALGORITHM:
-------------------------
The synchronization algorithm is used for every service in corosync to
synchronize state of the system.

There are 4 events of the synchronization algorithm.  These events are in fact
functions that are registered in the service handler data structure.  They
are called by the synchronization system whenever a network partitions or
merges.

init:
Within the init event a service handler should record temporary state variables
used by the process event.

process:
The process event is responsible for executing synchronization.  This event
will return a state as to whether it has completed or not.  This allows for
synchronization to be interrupted and recontinue when the message queue buffer
is full.  The process event will be called again by the synchronization service
if requested to do so by the return variable returned in process.

abort:
The abort event occurs when during synchronization a processor failure occurs.

activate:
The activate event occurs when process has returned no more processing is
necessary for any node in the cluster and all messages originated by process
have completed.

CHECKPOINT SYNCHRONIZATION ALGORITHM:
------------------------------------
The purpose of the checkpoint synchronization algorithm is to synchronize
checkpoints after a partition or merge of two or more partitions.  The
secondary purpose of the algorithm is to determine the cluster-wide reference
count for every checkpoint.

Every cluster contains a group of checkpoints.  Each checkpoint has a
checkpoint name and checkpoint number.  The number is used to uniquely reference
an unlinked but still open checkpoint in the cluster.

Every checkpoint contains a reference count which is used to determine when
that checkpoint may be released.  The algorithm rebuilds the reference count
information each time a partition or merge occurs.

local variables
my_sync_state may have the values SYNC_CHECKPOINT, SYNC_REFCOUNT
my_current_iteration_state contains any data used to iterate the checkpoints
	and sections.
checkpoint data
	refcount_set contains reference count for every node consisting of
	number of opened connections to checkpoint and node identifier
	refcount contains a summation of every reference count in the refcount_set

pseudocode executed by a processor when the synchronization service calls
the init event
	call process_checkpoints_enter

pseudocode executed by a processor when the synchronization service calls
the process event in the SYNC_CHECKPOINT state
	if lowest processor identifier of old ring in new ring
		transmit checkpoints or sections starting from my_current_iteration_state
	if all checkpoints and sections could be queued
		call sync_refcounts_enter
	else
		record my_current_iteration_state

	require process to continue

pseudocode executed by a processor when the synchronization service calls
the process event in the SYNC_REFCOUNT state
	if lowest processor identifier of old ring in new ring
		transmit checkpoint reference counts
	if all checkpoint reference counts could be queued
		require process to not continue
	else
		record my_current_iteration_state for checkpoint reference counts

sync_checkpoints_enter:
	my_sync_state = SYNC_CHECKPOINT
	my_current_iteration_state set to start of checkpoint list

sync_refcounts_enter:
	my_sync_state = SYNC_REFCOUNT

on event receipt of foreign ring id message
	ignore message

pseudocode executed on event receipt of checkpoint update
	if checkpoint exists in temporary storage
		ignore message
	else
		create checkpoint
		reset checkpoint refcount array

pseudocode executed on event receipt of checkpoint section update
	if checkpoint section exists in temporary storage
		ignore message
	else
		create checkpoint section

pseudocode executed on event receipt of reference count update
	update temporary checkpoint data storage reference count set by adding
	any reference counts in the temporary message set to those from the
	event
	update that checkpoint's reference count
	set the global checkpoint id to the current checkpoint id + 1 if it
	would increase the global checkpoint id

pseudocode called when the synchronization service calls the activate event:
for all checkpoints
	free all previously committed checkpoints and sections
	convert temporary checkpoints and sections to regular sections
copy my_saved_ring_id to my_old_ring_id

pseudocode called when the synchronization service calls the abort event:
	free all temporary checkpoints and temporary sections