| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- /*
- * Copyright (c) 2009-2011 Red Hat, Inc.
- *
- * All rights reserved.
- *
- * 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 Red Hat, 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_SAM_H_DEFINED
- #define COROSYNC_SAM_H_DEFINED
- #include <corosync/corotypes.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef enum {
- SAM_RECOVERY_POLICY_QUIT = 1,
- SAM_RECOVERY_POLICY_RESTART = 2,
- SAM_RECOVERY_POLICY_QUORUM = 0x08,
- SAM_RECOVERY_POLICY_QUORUM_QUIT = SAM_RECOVERY_POLICY_QUORUM | SAM_RECOVERY_POLICY_QUIT,
- SAM_RECOVERY_POLICY_QUORUM_RESTART = SAM_RECOVERY_POLICY_QUORUM | SAM_RECOVERY_POLICY_RESTART,
- SAM_RECOVERY_POLICY_CMAP = 0x10,
- SAM_RECOVERY_POLICY_CONFDB = 0x10,
- } sam_recovery_policy_t;
- /**
- * Callback definition for event driven checking
- */
- typedef int (*sam_hc_callback_t)(void);
- /**
- * Create a new SAM connection.
- *
- * This function must be called before any other.
- * It is recommended to call it as one of first in application.
- *
- * @param time_interval Time interval in miliseconds of healthcheck. After this time, application
- * will be killed and recovery policy will be taken. This can be zero, which means,
- * that there is no time limit (only fall of application is checked and only then
- * recovery action is taken)
- * @param recovery_policy One of SAM_RECOVERY_POLICY_RESTART, which means, that after
- * timeout application will be killed and new instance will be started.
- * SAM_RECOVERY_POLICY_QUIT will just stop application
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE in case user is trying to initialize initialized instance
- * @retval CS_ERR_INVALID_PARAM in case recovery_policy had bad value
- */
- cs_error_t sam_initialize (
- int time_interval,
- sam_recovery_policy_t recovery_policy);
- /**
- * Close the SAM handle.
- *
- * This function should be called as late as possible.
- * (in reality, if you plan just quit, and checking is stopped, there is no need
- * to call it). Function will stop healtchecking and put library to state, where
- * no new start is possible.
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE library was not initialized by #sam_initialize
- */
- cs_error_t sam_finalize (void);
- /**
- * Start healthchecking.
- *
- * From this time, you should call every time_interval
- * sam_hc_send, otherwise, recovery action will be taken.
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE component was not registered by #sam_register
- */
- cs_error_t sam_start (void);
- /**
- * Stop healthchecking.
- *
- * Oposite of #sam_start. You can call sam_start and sam_stop how many
- * times you want.
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE healthchecking is not in running state (no sam_start
- * was called)
- */
- cs_error_t sam_stop (void);
- /**
- * Set warning signal to be send.
- *
- * Default signal is SIGTERM. You can use SIGKILL to emulate NOT sending
- * warning signal and just send SIGKILL.
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE library was not initialized by #sam_initialize or
- * is finalized
- */
- cs_error_t sam_warn_signal_set (int warn_signal);
- /**
- * Register application.
- *
- * This is one of most crucial function. In case, your
- * application will be restarted, you will always return to point after calling
- * this function. This function can be called only once, and SAM must be initialized
- * by sam_initialize. You can choose any place in your application, where to call
- * this function.
- *
- * @param instance_id NULL or pointer to int memory, where current instance
- * of application will be returned. It's always safe to suppose, that first instance
- * (this means, no recovery action was taken yet) will be always 1 and instance_id
- * will be raising up to MAX_INT (after this, it will fall to 0).
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE in case, you call this function twice, or before sam_init
- * @retval CS_ERR_LIBRARY internal library call failed. This can be one of pipe or fork
- * creation. You can get more information from errno
- */
- cs_error_t sam_register (
- unsigned int *instance_id);
- /**
- * Send healthcheck confirmation.
- *
- * This should be called after #sam_start
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE healthchecking is not in running state (no sam_start was
- * called, or called after sam_stop/sam_finalize)
- */
- cs_error_t sam_hc_send (void);
- /**
- * Register healtcheck callback.
- *
- * After you will call this function, and set
- * cb to something else then NULL, SAM is automatically switched from
- * application driven healtchecking to event driven healtchecking. In other
- * words, is not longer needed to call sam_hc_send, but your callback function
- * must return 0 in case of healtchecking is correct, or value different then
- * 0, in case something happend. After next hc iteration, warning signal and
- * after that kill signal is sent back to your application.
- *
- * @param cb Pointer to healtcheck function, or NULL to switch back to application driven hc
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE in case, you call this function before sam_init or after sam_start
- * @retval CS_ERR_LIBRARY internal library call failed. This can be one of pipe or pthread
- * creation.
- */
- cs_error_t sam_hc_callback_register (sam_hc_callback_t cb);
- /**
- * Return size of stored data.
- *
- * @param size Pointer to variable, where stored data size is returned. If
- * nothing or NULL is stored, then 0 is returned.
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE in case you call this function before sam_init or after
- * sam_finalize
- * @retval CS_ERR_INVALID_PARAM if size parameter is NULL
- */
- cs_error_t sam_data_getsize (size_t *size);
- /**
- * Return stored data.
- *
- * @param data Pointer to place, where to store data
- * @param size Allocated size of data
- *
- * @retval CS_OK if no problem appeared
- * @retval CS_ERR_BAD_HANDLE if you call this function before sam_init or after sam_finalize
- * @retval CS_ERR_INVALID_PARAM if data is NULL or size is less then currently saved user data length
- */
- cs_error_t sam_data_restore (
- void *data,
- size_t size);
- /**
- * Store user data.
- *
- * Such stored data survives restart of child.
- *
- * @param data Data to store. You can use NULL to delete data
- * @param size Size of data to store.
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE if you call this function before sam_init or
- * after sam_finalize
- * @retval CS_ERR_NO_MEMORY if data is too large and malloc/realloc was not
- * sucesfull
- * @retval CS_ERR_LIBRARY if some internal error appeared (communication with parent
- * process)
- */
- cs_error_t sam_data_store (
- const void *data,
- size_t size);
- /**
- * Marks child as failed.
- *
- * This can be called only with SAM_RECOVERY_POLICY_CMAP flag set and
- * makes sense only for SAM_RECOVERY_POLICY_RESTART. This will kill child without sending warn
- * signal. Cmap state key will be set to failed.
- *
- * @retval CS_OK in case no problem appeared
- * @retval CS_ERR_BAD_HANDLE library was not initialized or was already finalized
- * @retval CS_ERR_INVALID_PARAM recovery policy doesn't has SAM_RECOVERY_POLICY_CMAP flag set
- * @retval CS_ERR_LIBRARY if some internal error appeared (communication with parent
- * process)
- */
- cs_error_t sam_mark_failed (void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* COROSYNC_SAM_H_DEFINED */
|