41#include <sys/socket.h>
46#include <netinet/in.h>
90#define CFG_INTERFACE_STATUS_MAX_LEN 512
108 unsigned int msg_len,
200static int totemknet_configure_compression (
204static void totemknet_start_merge_detect_timeout(
207static void totemknet_stop_merge_detect_timeout(
210static void log_flush_messages (
225#define knet_log_printf_lock(level, subsys, function, file, line, format, args...) \
227 (void)pthread_mutex_lock(&instance->log_mutex); \
228 instance->totemknet_log_printf ( \
229 level, subsys, function, file, line, \
230 (const char *)format, ##args); \
231 (void)pthread_mutex_unlock(&instance->log_mutex); \
234#define knet_log_printf(level, format, args...) \
236 knet_log_printf_lock ( \
237 level, instance->totemknet_subsys_id, \
238 __FUNCTION__, __FILE__, __LINE__, \
239 (const char *)format, ##args); \
242#define libknet_log_printf(level, format, args...) \
244 knet_log_printf_lock ( \
245 level, instance->knet_subsys_id, \
246 __FUNCTION__, "libknet.h", __LINE__, \
247 (const char *)format, ##args); \
250#define KNET_LOGSYS_PERROR(err_num, level, fmt, args...) \
252 char _error_str[LOGSYS_MAX_PERROR_MSG_LEN]; \
253 const char *_error_ptr = qb_strerror_r(err_num, _error_str, sizeof(_error_str)); \
254 instance->totemknet_log_printf ( \
255 level, instance->totemknet_subsys_id, \
256 __FUNCTION__, __FILE__, __LINE__, \
257 fmt ": %s (%d)", ##args, _error_ptr, err_num); \
285 return (
addr[0] & 0x01);
325static int dst_host_filter_callback_fn(
void *
private_data,
397static inline void ucast_sendmsg (
401 unsigned int msg_len)
410 iovec.iov_base = (
void *)msg;
411 iovec.iov_len = msg_len;
428 "sendmsg(ucast) failed (non-critical)");
432static inline void mcast_sendmsg (
435 unsigned int msg_len,
443 iovec.iov_base = (
void *)msg;
444 iovec.iov_len = msg_len;
471static int node_compare(
const void *
aptr,
const void *
bptr)
481#ifndef OWN_INDEX_NONE
482#define OWN_INDEX_NONE -1
518#ifdef HAVE_KNET_ONWIRE_VER
546 sizeof(link_status));
637 sizeof(link_status));
639 ptr[
j] =
'0' + (link_status.enabled |
640 link_status.connected<<1 |
641 link_status.dynconnected<<2);
645 "totemknet_ifaces_get: Cannot get link status: %s",
strerror(
errno));
719 totemknet_stop_merge_detect_timeout(instance);
721 log_flush_messages(instance);
731static int log_deliver_fn (
742 len =
read(fd, buffer,
sizeof(buffer));
745 switch (msg->msglevel) {
780static int data_deliver_fn (
814 "Received truncated packet. Please report this bug. Dropping packet.");
821#ifdef KNET_DATAFD_FLAG_RX_RETURN_INFO
846static void timer_function_netif_check_timeout (
870#ifdef HAVE_KNET_ACCESS_LIST
927static void totemknet_refresh_config(
929 const char *key_name,
955 knet_set_access_list_config(instance);
1010 icmap_set_string(
"config.reload_error_message",
"Failed to set knet ping timers(2)");
1027 totemknet_refresh_config,
1033 totemknet_refresh_config,
1060#ifdef HAVE_KNET_CRYPTO_RECONF
1070 if (!totemknet_is_crypto_enabled(instance)) {
1110#ifdef HAVE_KNET_CRYPTO_RECONF
1112 icmap_set_string(
"config.reload_error_message",
"Failed to set crypto parameters");
1135 void **knet_context,
1143 unsigned int msg_len,
1155 void (*target_set_completed) (
1166 if (instance ==
NULL) {
1170 totemknet_instance_initialize (instance);
1233#if defined(KNET_API_VER) && (KNET_API_VER == 2)
1241#if defined(KNET_API_VER) && (KNET_API_VER == 2)
1253 knet_set_access_list_config(instance);
1263#ifdef HAVE_KNET_SETPRIO_DSCP
1292#ifdef KNET_DATAFD_FLAG_RX_RETURN_INFO
1303#ifdef HAVE_KNET_CRYPTO_RECONF
1304 if (totemknet_is_crypto_enabled(instance)) {
1305 res = totemknet_set_knet_crypto(instance);
1330 if (totemknet_is_crypto_enabled(instance)) {
1331 res = totemknet_set_knet_crypto(instance);
1365 POLLIN, instance, log_deliver_fn);
1370 POLLIN, instance, data_deliver_fn);
1380 timer_function_netif_check_timeout,
1383 totemknet_start_merge_detect_timeout(instance);
1386 totemknet_add_config_notifications(instance);
1397 log_flush_messages(instance);
1433 unsigned int msg_len)
1438 ucast_sendmsg (instance, &instance->
token_target, msg, msg_len);
1445 unsigned int msg_len)
1450 mcast_sendmsg (instance, msg, msg_len, 0);
1458 unsigned int msg_len)
1463 mcast_sendmsg (instance, msg, msg_len, 1);
1533 }
while (
nfds == 1);
1540 unsigned short ip_port,
1662 log_flush_messages(instance);
1666 icmap_set_string(
"config.reload_error_message",
"Failed to set knet ping timers");
1675 log_flush_messages(instance);
1678 icmap_set_string(
"config.reload_error_message",
"Failed to set knet pong count");
1747static int totemknet_configure_compression (
1776#ifdef HAVE_LIBNOZZLE
1786 res = totemknet_set_knet_crypto(instance);
1793 icmap_set_string(
"config.reload_error_message",
"Failed to set knet crypto");
1805#ifdef HAVE_KNET_CRYPTO_RECONF
1817 if (!totemknet_is_crypto_enabled(instance)) {
1848 if (totemknet_is_crypto_enabled(instance)) {
1923static void timer_function_merge_detect_timeout (
1934 totemknet_start_merge_detect_timeout(instance);
1937static void totemknet_start_merge_detect_timeout(
1946 timer_function_merge_detect_timeout,
1947 &instance->timer_merge_detect_timeout);
1951static void totemknet_stop_merge_detect_timeout(
1975 (log_deliver_fn(instance->
logpipes[0],
POLLIN, instance) == 0)) {
1984#ifdef HAVE_LIBNOZZLE
1985#define NOZZLE_NAME "nozzle.name"
1986#define NOZZLE_IPADDR "nozzle.ipaddr"
1987#define NOZZLE_PREFIX "nozzle.ipprefix"
1988#define NOZZLE_MACADDR "nozzle.macaddr"
1990#define NOZZLE_CHANNEL 1
2034 }
else if (
res == -2) {
2050 const char *prefix,
int nodeid,
2100 const char *
ipaddr,
const char *prefix,
2146#ifdef KNET_DATAFD_FLAG_RX_RETURN_INFO
2209 free(instance->nozzle_name);
2210 free(instance->nozzle_ipaddr);
2211 free(instance->nozzle_prefix);
2212 free(instance->nozzle_macaddr);
2214 instance->nozzle_name = instance->nozzle_ipaddr = instance->nozzle_prefix =
2215 instance->nozzle_macaddr =
NULL;
2269 if (instance->nozzle_name &&
2273 (instance->nozzle_macaddr ==
NULL ||
2289 if (instance->nozzle_name) {
2301 if (!instance->nozzle_name || !instance->nozzle_ipaddr ||
2302 !instance->nozzle_prefix) {
unsigned char addr[TOTEMIP_ADDRLEN]
cs_error_t qb_to_cs_error(int result)
qb_to_cs_error
cs_error_t
The cs_error_t enum.
#define corosync_exit_error(err)
@ COROSYNC_DONE_MAINCONFIGREAD
cs_error_t icmap_get_uint8(const char *key_name, uint8_t *u8)
#define ICMAP_TRACK_MODIFY
#define ICMAP_TRACK_DELETE
cs_error_t icmap_track_add(const char *key_name, int32_t track_type, icmap_notify_fn_t notify_fn, void *user_data, icmap_track_t *icmap_track)
Add tracking function for given key_name.
cs_error_t icmap_set_string(const char *key_name, const char *value)
#define ICMAP_TRACK_PREFIX
Whole prefix is tracked, instead of key only (so "totem." tracking means that "totem....
cs_error_t icmap_get_string(const char *key_name, char **str)
Shortcut for icmap_get for string type.
#define LOGSYS_LEVEL_ERROR
#define log_printf(level, format, args...)
#define LOGSYS_LEVEL_INFO
#define LOGSYS_LEVEL_CRIT
int logsys_config_debug_get(const char *subsys)
Return the debug flag for this subsys.
#define LOGSYS_DEBUG_TRACE
#define LOGSYS_LEVEL_WARNING
int _logsys_subsys_create(const char *subsys, const char *filename)
_logsys_subsys_create
#define LOGSYS_LEVEL_DEBUG
#define LOGSYS_LEVEL_TRACE
const char * corosync_get_config_file(void)
Structure passed as new_value and old_value in change callback.
char crypto_model[CONFIG_STRING_LEN_MAX]
unsigned int private_key_len
uint32_t knet_compression_threshold
struct totem_logging_configuration totem_logging_configuration
struct totem_interface * interfaces
unsigned int merge_timeout
int knet_compression_level
char knet_compression_model[CONFIG_STRING_LEN_MAX]
unsigned int block_unlisted_ips
unsigned char private_key[TOTEM_PRIVATE_KEY_LEN_MAX]
unsigned int knet_pmtud_interval
char crypto_cipher_type[CONFIG_STRING_LEN_MAX]
char link_mode[TOTEM_LINK_MODE_BYTES]
char crypto_hash_type[CONFIG_STRING_LEN_MAX]
struct totem_ip_address boundto
struct totem_ip_address bindnet
The totem_ip_address struct.
void(* log_printf)(int level, int subsys, const char *function_name, const char *file_name, int file_line, const char *format,...) __attribute__((format(printf
void(* totemknet_target_set_completed)(void *context)
pthread_mutex_t log_mutex
void(* totemknet_mtu_changed)(void *context, int net_mtu)
struct crypto_instance * crypto_inst
struct totem_config * totem_config
qb_loop_timer_handle timer_netif_check_timeout
char * link_status[INTERFACE_MAX]
void(* totemknet_log_printf)(int level, int subsys, const char *function, const char *file, int line, const char *format,...) __attribute__((format(printf
knet_handle_t knet_handle
uint16_t ip_port[INTERFACE_MAX]
int(* totemknet_iface_change_fn)(void *context, const struct totem_ip_address *iface_address, unsigned int link_no)
int totemknet_log_level_debug
struct knet_handle_crypto_cfg last_good_crypto_cfg
struct totem_ip_address token_target
qb_loop_timer_handle timer_merge_detect_timeout
void(*) void knet_context)
int totemknet_log_level_warning
struct totem_ip_address my_ids[INTERFACE_MAX]
int(* totemknet_deliver_fn)(void *context, const void *msg, unsigned int msg_len, const struct sockaddr_storage *system_from)
char iov_buffer[KNET_MAX_PACKET_SIZE+1]
unsigned int merge_detect_messages_sent_before_timeout
int send_merge_detect_message
int totemknet_log_level_error
int totemknet_log_level_security
int totemknet_log_level_notice
struct totemknet_instance * instance
cfg_message_crypto_reconfig_phase_t
@ CRYPTO_RECONFIG_PHASE_CLEANUP
@ CRYPTO_RECONFIG_PHASE_ACTIVATE
int totemip_parse(struct totem_ip_address *totemip, const char *addr, enum totem_ip_version_enum ip_version)
void totemip_copy(struct totem_ip_address *addr1, const struct totem_ip_address *addr2)
int totemip_totemip_to_sockaddr_convert(struct totem_ip_address *ip_addr, uint16_t port, struct sockaddr_storage *saddr, int *addrlen)
const char * totemip_print(const struct totem_ip_address *addr)
int totemknet_mcast_flush_send(void *knet_context, const void *msg, unsigned int msg_len)
int totemknet_iface_set(void *knet_context, const struct totem_ip_address *local_addr, unsigned short ip_port, unsigned int iface_no)
int totemknet_finalize(void *knet_context)
int totemknet_recv_flush(void *knet_context)
int totemknet_member_list_rebind_ip(void *knet_context)
void * totemknet_buffer_alloc(void)
int totemknet_processor_count_set(void *knet_context, int processor_count)
int totemknet_mcast_noflush_send(void *knet_context, const void *msg, unsigned int msg_len)
struct totemknet_instance * global_instance
void totemknet_buffer_release(void *ptr)
int totemknet_initialize(qb_loop_t *poll_handle, void **knet_context, struct totem_config *totem_config, totemsrp_stats_t *stats, void *context, int(*deliver_fn)(void *context, const void *msg, unsigned int msg_len, const struct sockaddr_storage *system_from), int(*iface_change_fn)(void *context, const struct totem_ip_address *iface_address, unsigned int link_no), void(*mtu_changed)(void *context, int net_mtu), void(*target_set_completed)(void *context))
int totemknet_ifaces_get(void *knet_context, char ***status, unsigned int *iface_count)
int totemknet_member_add(void *knet_context, const struct totem_ip_address *local, const struct totem_ip_address *member, int link_no)
int totemknet_crypto_set(void *knet_context, const char *cipher_type, const char *hash_type)
int totemknet_member_remove(void *knet_context, const struct totem_ip_address *token_target, int link_no)
int totemknet_token_send(void *knet_context, const void *msg, unsigned int msg_len)
#define CFG_INTERFACE_STATUS_MAX_LEN
int totemknet_link_get_status(knet_node_id_t node, uint8_t link_no, struct knet_link_status *status)
int totemknet_nodestatus_get(void *knet_context, unsigned int nodeid, struct totem_node_status *node_status)
int totemknet_handle_get_stats(struct knet_handle_stats *stats)
void totemknet_stats_clear(void *knet_context)
int totemknet_send_flush(void *knet_context)
void totemknet_net_mtu_adjust(void *knet_context, struct totem_config *totem_config)
#define knet_log_printf(level, format, args...)
int totemknet_token_target_set(void *knet_context, unsigned int nodeid)
#define KNET_LOGSYS_PERROR(err_num, level, fmt, args...)
void totemknet_configure_log_level(void)
int totemknet_reconfigure(void *knet_context, struct totem_config *totem_config)
int totemknet_crypto_reconfigure_phase(void *knet_context, struct totem_config *totem_config, cfg_message_crypto_reconfig_phase_t phase)
#define libknet_log_printf(level, format, args...)
int totemknet_recv_mcast_empty(void *knet_context)
int totemknet_iface_check(void *knet_context)
struct totem_message_header header
struct srp_addr system_from
void stats_knet_add_handle(void)
void stats_knet_del_member(knet_node_id_t nodeid, uint8_t link)
void stats_knet_add_member(knet_node_id_t nodeid, uint8_t link)