| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440 |
- /*
- * Copyright (c) 2006-2019 Red Hat, Inc.
- *
- * All rights reserved.
- *
- * Author: Christine Caulfield (ccaulfi@redhat.com)
- * Author: Jan Friesse (jfriesse@redhat.com)
- *
- * This software licensed under BSD license, the text of which follows:
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * - Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * - Neither the name of the MontaVista Software, Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
- #ifndef COROSYNC_CPG_H_DEFINED
- #define COROSYNC_CPG_H_DEFINED
- #include <netinet/in.h>
- #include <sys/socket.h>
- #include <corosync/corotypes.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * @addtogroup cpg_corosync
- *
- * @{
- */
- /**
- * @brief cpg_handle_t
- */
- typedef uint64_t cpg_handle_t;
- /**
- * @brief cpg_iteration_handle_t
- */
- typedef uint64_t cpg_iteration_handle_t;
- /**
- * @brief The cpg_guarantee_t enum
- */
- typedef enum {
- CPG_TYPE_UNORDERED, /**< not implemented */
- CPG_TYPE_FIFO, /**< same as agreed */
- CPG_TYPE_AGREED,
- CPG_TYPE_SAFE /**< not implemented */
- } cpg_guarantee_t;
- /**
- * @brief The cpg_flow_control_state_t enum
- */
- typedef enum {
- CPG_FLOW_CONTROL_DISABLED, /**< flow control is disabled - new messages may be sent */
- CPG_FLOW_CONTROL_ENABLED /**< flow control is enabled - new messages should not be sent */
- } cpg_flow_control_state_t;
- /**
- * @brief The cpg_reason_t enum
- */
- typedef enum {
- CPG_REASON_UNDEFINED = 0,
- CPG_REASON_JOIN = 1,
- CPG_REASON_LEAVE = 2,
- CPG_REASON_NODEDOWN = 3,
- CPG_REASON_NODEUP = 4,
- CPG_REASON_PROCDOWN = 5
- } cpg_reason_t;
- /**
- * @brief The cpg_iteration_type_t enum
- */
- typedef enum {
- CPG_ITERATION_NAME_ONLY = 1,
- CPG_ITERATION_ONE_GROUP = 2,
- CPG_ITERATION_ALL = 3,
- } cpg_iteration_type_t;
- /**
- * @brief The cpg_model_t enum
- */
- typedef enum {
- CPG_MODEL_V1 = 1,
- } cpg_model_t;
- /**
- * @brief The cpg_address struct
- */
- struct cpg_address {
- uint32_t nodeid;
- uint32_t pid;
- uint32_t reason;
- };
- #define CPG_MAX_NAME_LENGTH 128
- /**
- * @brief The cpg_name struct
- */
- struct cpg_name {
- uint32_t length;
- char value[CPG_MAX_NAME_LENGTH];
- };
- #define CPG_MEMBERS_MAX 128
- /**
- * @brief The cpg_iteration_description_t struct
- */
- struct cpg_iteration_description_t {
- struct cpg_name group;
- uint32_t nodeid;
- uint32_t pid;
- };
- /**
- * @brief The cpg_ring_id struct
- */
- struct cpg_ring_id {
- uint32_t nodeid;
- uint64_t seq;
- };
- /**
- * @brief The cpg_deliver_fn_t callback
- */
- typedef void (*cpg_deliver_fn_t) (
- cpg_handle_t handle,
- const struct cpg_name *group_name,
- uint32_t nodeid,
- uint32_t pid,
- /**
- * Unlike many "msg" pointers, this one is deliberately *not*
- * declared const in order to permit in-place endian conversion.
- */
- void *msg,
- size_t msg_len);
- /**
- * @brief The cpg_confchg_fn_t callback
- */
- typedef void (*cpg_confchg_fn_t) (
- cpg_handle_t handle,
- const struct cpg_name *group_name,
- const struct cpg_address *member_list, size_t member_list_entries,
- const struct cpg_address *left_list, size_t left_list_entries,
- const struct cpg_address *joined_list, size_t joined_list_entries);
- /**
- * @brief The cpg_totem_confchg_fn_t callback
- */
- typedef void (*cpg_totem_confchg_fn_t) (
- cpg_handle_t handle,
- struct cpg_ring_id ring_id,
- uint32_t member_list_entries,
- const uint32_t *member_list);
- /**
- * @brief The cpg_callbacks_t struct
- */
- typedef struct {
- cpg_deliver_fn_t cpg_deliver_fn;
- cpg_confchg_fn_t cpg_confchg_fn;
- } cpg_callbacks_t;
- /**
- * @brief The cpg_model_data_t struct
- */
- typedef struct {
- cpg_model_t model;
- } cpg_model_data_t;
- #define CPG_MODEL_V1_DELIVER_INITIAL_TOTEM_CONF 0x01
- /**
- * @brief The cpg_model_v1_data_t struct
- */
- typedef struct {
- cpg_model_t model;
- cpg_deliver_fn_t cpg_deliver_fn;
- cpg_confchg_fn_t cpg_confchg_fn;
- cpg_totem_confchg_fn_t cpg_totem_confchg_fn;
- unsigned int flags;
- } cpg_model_v1_data_t;
- /** @} */
- /**
- * @brief Create a new cpg connection
- * @param handle
- * @param callbacks
- * @return
- */
- cs_error_t cpg_initialize (
- cpg_handle_t *handle,
- cpg_callbacks_t *callbacks);
- /**
- * @brief Create a new cpg connection, initialize with model
- * @param handle
- * @param model
- * @param model_data
- * @param context
- * @return
- */
- cs_error_t cpg_model_initialize (
- cpg_handle_t *handle,
- cpg_model_t model,
- cpg_model_data_t *model_data,
- void *context);
- /**
- * @brief Close the cpg handle
- * @param handle
- * @return
- */
- cs_error_t cpg_finalize (
- cpg_handle_t handle);
- /**
- * @brief Get a file descriptor on which to poll.
- *
- * cpg_handle_t is NOT a file descriptor and may not be used directly.
- *
- * @param handle
- * @param fd
- * @return
- */
- cs_error_t cpg_fd_get (
- cpg_handle_t handle,
- int *fd);
- /**
- * @brief Get maximum size of a message that will not be fragmented
- * @param handle
- * @param size
- * @return
- */
- cs_error_t cpg_max_atomic_msgsize_get (
- cpg_handle_t handle,
- uint32_t *size);
- /**
- * @brief Get contexts for a CPG handle
- * @param handle
- * @param context
- * @return
- */
- cs_error_t cpg_context_get (
- cpg_handle_t handle,
- void **context);
- /**
- * @brief Set contexts for a CPG handle
- * @param handle
- * @param context
- * @return
- */
- cs_error_t cpg_context_set (
- cpg_handle_t handle,
- void *context);
- /**
- * @brief Dispatch messages and configuration changes
- * @param handle
- * @param dispatch_types
- * @return
- */
- cs_error_t cpg_dispatch (
- cpg_handle_t handle,
- cs_dispatch_flags_t dispatch_types);
- /**
- * @brief Join one or more groups.
- *
- * messages multicasted with cpg_mcast_joined will be sent to every
- * group that has been joined on handle handle. Any message multicasted
- * to a group that has been previously joined will be delivered in cpg_dispatch
- *
- * @param handle
- * @param group
- * @return
- */
- cs_error_t cpg_join (
- cpg_handle_t handle,
- const struct cpg_name *group);
- /**
- * @brief Leave one or more groups
- * @param handle
- * @param group
- * @return
- */
- cs_error_t cpg_leave (
- cpg_handle_t handle,
- const struct cpg_name *group);
- /**
- * @brief Multicast to groups joined with cpg_join.
- *
- * @param handle
- * @param guarantee
- * @param iovec This iovec will be multicasted to all groups joined with
- * the cpg_join interface for handle.
- * @param iov_len
- */
- cs_error_t cpg_mcast_joined (
- cpg_handle_t handle,
- cpg_guarantee_t guarantee,
- const struct iovec *iovec,
- unsigned int iov_len);
- /**
- * @brief Get membership information from cpg
- * @param handle
- * @param groupName
- * @param member_list
- * @param member_list_entries
- * @return
- */
- cs_error_t cpg_membership_get (
- cpg_handle_t handle,
- struct cpg_name *groupName,
- struct cpg_address *member_list,
- int *member_list_entries);
- /**
- * @brief cpg_local_get
- * @param handle
- * @param local_nodeid
- * @return
- */
- cs_error_t cpg_local_get (
- cpg_handle_t handle,
- unsigned int *local_nodeid);
- /**
- * @brief cpg_flow_control_state_get
- * @param handle
- * @param flow_control_enabled
- * @return
- */
- cs_error_t cpg_flow_control_state_get (
- cpg_handle_t handle,
- cpg_flow_control_state_t *flow_control_enabled);
- /**
- * @brief cpg_zcb_alloc
- * @param handle
- * @param size
- * @param buffer
- * @return
- */
- cs_error_t cpg_zcb_alloc (
- cpg_handle_t handle,
- size_t size,
- void **buffer);
- /**
- * @brief cpg_zcb_free
- * @param handle
- * @param buffer
- * @return
- */
- cs_error_t cpg_zcb_free (
- cpg_handle_t handle,
- void *buffer);
- /**
- * @brief cpg_zcb_mcast_joined
- * @param handle
- * @param guarantee
- * @param msg
- * @param msg_len
- * @return
- */
- cs_error_t cpg_zcb_mcast_joined (
- cpg_handle_t handle,
- cpg_guarantee_t guarantee,
- void *msg,
- size_t msg_len);
- /**
- * @brief cpg_iteration_initialize
- * @param handle
- * @param iteration_type
- * @param group
- * @param cpg_iteration_handle
- * @return
- */
- cs_error_t cpg_iteration_initialize(
- cpg_handle_t handle,
- cpg_iteration_type_t iteration_type,
- const struct cpg_name *group,
- cpg_iteration_handle_t *cpg_iteration_handle);
- /**
- * @brief cpg_iteration_next
- * @param handle
- * @param description
- * @return
- */
- cs_error_t cpg_iteration_next(
- cpg_iteration_handle_t handle,
- struct cpg_iteration_description_t *description);
- /**
- * @brief cpg_iteration_finalize
- * @param handle
- * @return
- */
- cs_error_t cpg_iteration_finalize (
- cpg_iteration_handle_t handle);
- #ifdef __cplusplus
- }
- #endif
- #endif /* COROSYNC_CPG_H_DEFINED */
|