43#include <sys/socket.h>
48#include <netinet/in.h>
66#define LOGSYS_UTILS_ONLY 1
76#define MCAST_SOCKET_BUFFER_SIZE (TRANSMITS_ALLOWED * FRAME_SIZE_MAX)
77#define NETIF_STATE_REPORT_UP 1
78#define NETIF_STATE_REPORT_DOWN 2
80#define BIND_STATE_UNBOUND 0
81#define BIND_STATE_REGULAR 1
82#define BIND_STATE_LOOPBACK 2
116 unsigned int msg_len,
122 unsigned int ring_no);
144 const char *function,
201static int totemudp_build_sockets (
231#define log_printf(level, format, args...) \
233 instance->totemudp_log_printf ( \
234 level, instance->totemudp_subsys_id, \
235 __FUNCTION__, __FILE__, __LINE__, \
236 (const char *)format, ##args); \
239#define LOGSYS_PERROR(err_num, level, fmt, args...) \
241 char _error_str[LOGSYS_MAX_PERROR_MSG_LEN]; \
242 const char *_error_ptr = qb_strerror_r(err_num, _error_str, sizeof(_error_str)); \
243 instance->totemudp_log_printf ( \
244 level, instance->totemudp_subsys_id, \
245 __FUNCTION__, __FILE__, __LINE__, \
246 fmt ": %s (%d)\n", ##args, _error_ptr, err_num); \
251 const char *cipher_type,
252 const char *hash_type)
259static inline void ucast_sendmsg (
263 unsigned int msg_len)
265 struct msghdr msg_ucast;
267 struct sockaddr_storage sockaddr;
271 iovec.iov_base = (
void*)msg;
272 iovec.iov_len = msg_len;
277 memset(&msg_ucast, 0,
sizeof(msg_ucast));
280 msg_ucast.msg_name = &sockaddr;
281 msg_ucast.msg_namelen = addrlen;
282 msg_ucast.msg_iov = (
void *)&iovec;
283 msg_ucast.msg_iovlen = 1;
284#ifdef HAVE_MSGHDR_CONTROL
285 msg_ucast.msg_control = 0;
287#ifdef HAVE_MSGHDR_CONTROLLEN
288 msg_ucast.msg_controllen = 0;
290#ifdef HAVE_MSGHDR_FLAGS
291 msg_ucast.msg_flags = 0;
293#ifdef HAVE_MSGHDR_ACCRIGHTS
294 msg_ucast.msg_accrights = NULL;
296#ifdef HAVE_MSGHDR_ACCRIGHTSLEN
297 msg_ucast.msg_accrightslen = 0;
309 "sendmsg(ucast) failed (non-critical)");
313static inline void mcast_sendmsg (
316 unsigned int msg_len)
318 struct msghdr msg_mcast;
321 struct sockaddr_storage sockaddr;
324 iovec.iov_base = (
void *)msg;
325 iovec.iov_len = msg_len;
332 memset(&msg_mcast, 0,
sizeof(msg_mcast));
333 msg_mcast.msg_name = &sockaddr;
334 msg_mcast.msg_namelen = addrlen;
335 msg_mcast.msg_iov = (
void *)&iovec;
336 msg_mcast.msg_iovlen = 1;
337#ifdef HAVE_MSGHDR_CONTROL
338 msg_mcast.msg_control = 0;
340#ifdef HAVE_MSGHDR_CONTROLLEN
341 msg_mcast.msg_controllen = 0;
343#ifdef HAVE_MSGHDR_FLAGS
344 msg_mcast.msg_flags = 0;
346#ifdef HAVE_MSGHDR_ACCRIGHTS
347 msg_mcast.msg_accrights = NULL;
349#ifdef HAVE_MSGHDR_ACCRIGHTSLEN
350 msg_mcast.msg_accrightslen = 0;
361 "sendmsg(mcast) failed (non-critical)");
371 msg_mcast.msg_name = NULL;
372 msg_mcast.msg_namelen = 0;
378 "sendmsg(local mcast loop) failed (non-critical)");
416static int net_deliver_fn (
422 struct msghdr msg_recv;
426 int truncated_packet;
438 msg_recv.msg_namelen =
sizeof (
struct sockaddr_storage);
439 msg_recv.msg_iov = iovec;
440 msg_recv.msg_iovlen = 1;
441#ifdef HAVE_MSGHDR_CONTROL
442 msg_recv.msg_control = 0;
444#ifdef HAVE_MSGHDR_CONTROLLEN
445 msg_recv.msg_controllen = 0;
447#ifdef HAVE_MSGHDR_FLAGS
448 msg_recv.msg_flags = 0;
450#ifdef HAVE_MSGHDR_ACCRIGHTS
451 msg_recv.msg_accrights = NULL;
453#ifdef HAVE_MSGHDR_ACCRIGHTSLEN
454 msg_recv.msg_accrightslen = 0;
457 bytes_received = recvmsg (fd, &msg_recv,
MSG_NOSIGNAL | MSG_DONTWAIT);
458 if (bytes_received == -1) {
464 truncated_packet = 0;
466#ifdef HAVE_MSGHDR_FLAGS
467 if (msg_recv.msg_flags & MSG_TRUNC) {
468 truncated_packet = 1;
476 truncated_packet = 1;
480 if (truncated_packet) {
482 "Received too big message. This may be because something bad is happening"
483 "on the network (attack?), or you tried join more nodes than corosync is"
484 "compiled with (%u) or bug in the code (bad estimation of "
489 iovec->iov_len = bytes_received;
504static int netif_determine (
514 interface_up, interface_num,
526static void timer_function_netif_check_timeout (
537 netif_determine (instance,
540 &interface_up, &interface_num);
546 interface_up == 0) ||
550 interface_up == 1)) {
556 timer_function_netif_check_timeout,
557 &instance->timer_netif_check_timeout);
585 if (interface_up == 0) {
590 bind_address = &localhost;
599 timer_function_netif_check_timeout,
600 &instance->timer_netif_check_timeout);
611 (void)totemudp_build_sockets (instance,
621 POLLIN, instance, net_deliver_fn);
627 POLLIN, instance, net_deliver_fn);
633 POLLIN, instance, net_deliver_fn);
643 "The network interface [%s] is now up.",
656 timer_function_netif_check_timeout,
657 &instance->timer_netif_check_timeout);
663 "The network interface is down.");
673static void totemudp_traffic_control_set(
struct totemudp_instance *instance,
int sock)
678 if (setsockopt(sock, SOL_SOCKET, SO_PRIORITY, &prio,
sizeof(
int))) {
684static int totemudp_build_sockets_ip (
692 struct sockaddr_storage sockaddr;
693 struct ipv6_mreq mreq6;
695 struct sockaddr_storage mcast_ss, boundto_ss;
696 struct sockaddr_in6 *mcast_sin6 = (
struct sockaddr_in6 *)&mcast_ss;
697 struct sockaddr_in *mcast_sin = (
struct sockaddr_in *)&mcast_ss;
698 struct sockaddr_in *boundto_sin = (
struct sockaddr_in *)&boundto_ss;
699 unsigned int sendbuf_size;
700 unsigned int recvbuf_size;
701 unsigned int optlen =
sizeof (sendbuf_size);
702 unsigned int retries;
720 res = fcntl (sockets->
mcast_recv, F_SETFL, O_NONBLOCK);
723 "Could not set non-blocking operation on multicast socket");
731 if ( setsockopt(sockets->
mcast_recv, SOL_SOCKET, SO_REUSEADDR, (
char *)&flag, sizeof (flag)) < 0) {
733 "setsockopt(SO_REUSEADDR) failed");
746 for (i = 0; i < 2; i++) {
751 "Could not set non-blocking operation on multicast socket");
769 res = fcntl (sockets->
mcast_send, F_SETFL, O_NONBLOCK);
772 "Could not set non-blocking operation on multicast socket");
780 if ( setsockopt(sockets->
mcast_send, SOL_SOCKET, SO_REUSEADDR, (
char *)&flag, sizeof (flag)) < 0) {
782 "setsockopt(SO_REUSEADDR) failed");
787 &sockaddr, &addrlen);
791 res = bind (sockets->
mcast_send, (
struct sockaddr *)&sockaddr, addrlen);
796 "Unable to bind the socket to send multicast packets");
813 sockets->
token = socket (bindnet_address->
family, SOCK_DGRAM, 0);
814 if (sockets->
token == -1) {
821 res = fcntl (sockets->
token, F_SETFL, O_NONBLOCK);
824 "Could not set non-blocking operation on token socket");
832 if ( setsockopt(sockets->
token, SOL_SOCKET, SO_REUSEADDR, (
char *)&flag, sizeof (flag)) < 0) {
834 "setsockopt(SO_REUSEADDR) failed");
846 res = bind (sockets->
token, (
struct sockaddr *)&sockaddr, addrlen);
851 "Unable to bind UDP unicast socket");
870 res = setsockopt (sockets->
mcast_recv, SOL_SOCKET, SO_RCVBUF, &recvbuf_size, optlen);
873 "Unable to set SO_RCVBUF size on UDP mcast socket");
876 res = setsockopt (sockets->
mcast_send, SOL_SOCKET, SO_SNDBUF, &sendbuf_size, optlen);
879 "Unable to set SO_SNDBUF size on UDP mcast socket");
882 res = setsockopt (sockets->
local_mcast_loop[0], SOL_SOCKET, SO_RCVBUF, &recvbuf_size, optlen);
885 "Unable to set SO_RCVBUF size on UDP local mcast loop socket");
888 res = setsockopt (sockets->
local_mcast_loop[1], SOL_SOCKET, SO_SNDBUF, &sendbuf_size, optlen);
891 "Unable to set SO_SNDBUF size on UDP local mcast loop socket");
895 res = getsockopt (sockets->
mcast_recv, SOL_SOCKET, SO_RCVBUF, &recvbuf_size, &optlen);
898 "Receive multicast socket recv buffer size (%d bytes).", recvbuf_size);
901 res = getsockopt (sockets->
mcast_send, SOL_SOCKET, SO_SNDBUF, &sendbuf_size, &optlen);
904 "Transmit multicast socket send buffer size (%d bytes).", sendbuf_size);
907 res = getsockopt (sockets->
local_mcast_loop[0], SOL_SOCKET, SO_RCVBUF, &recvbuf_size, &optlen);
910 "Local receive multicast loop socket recv buffer size (%d bytes).", recvbuf_size);
913 res = getsockopt (sockets->
local_mcast_loop[1], SOL_SOCKET, SO_SNDBUF, &sendbuf_size, &optlen);
916 "Local transmit multicast loop socket send buffer size (%d bytes).", sendbuf_size);
927 unsigned int broadcast = 1;
929 if ((setsockopt(sockets->
mcast_recv, SOL_SOCKET,
930 SO_BROADCAST, &broadcast, sizeof (broadcast))) == -1) {
932 "setting broadcast option failed");
935 if ((setsockopt(sockets->
mcast_send, SOL_SOCKET,
936 SO_BROADCAST, &broadcast, sizeof (broadcast))) == -1) {
938 "setting broadcast option failed");
942 switch (bindnet_address->
family) {
944 memset(&mreq, 0,
sizeof(mreq));
945 mreq.imr_multiaddr.s_addr = mcast_sin->sin_addr.s_addr;
946 mreq.imr_interface.s_addr = boundto_sin->sin_addr.s_addr;
947 res = setsockopt (sockets->
mcast_recv, IPPROTO_IP, IP_ADD_MEMBERSHIP,
948 &mreq, sizeof (mreq));
951 "join ipv4 multicast group failed");
956 memset(&mreq6, 0,
sizeof(mreq6));
957 memcpy(&mreq6.ipv6mr_multiaddr, &mcast_sin6->sin6_addr,
sizeof(
struct in6_addr));
958 mreq6.ipv6mr_interface = interface_num;
960 res = setsockopt (sockets->
mcast_recv, IPPROTO_IPV6, IPV6_JOIN_GROUP,
961 &mreq6, sizeof (mreq6));
964 "join ipv6 multicast group failed");
976 switch ( bindnet_address->
family ) {
979 res = setsockopt (sockets->
mcast_send, IPPROTO_IP, IP_MULTICAST_LOOP,
980 &sflag, sizeof (sflag));
983 res = setsockopt (sockets->
mcast_send, IPPROTO_IPV6, IPV6_MULTICAST_LOOP,
984 &flag, sizeof (flag));
988 "Unable to turn off multicast loopback");
996 if (bindnet_address->
family == AF_INET6) {
997 res = setsockopt (sockets->
mcast_send, IPPROTO_IPV6, IPV6_MULTICAST_HOPS,
998 &flag, sizeof (flag));
1001 "set mcast v6 TTL failed");
1006 res = setsockopt(sockets->
mcast_send, IPPROTO_IP, IP_MULTICAST_TTL,
1007 &sflag,
sizeof(sflag));
1010 "set mcast v4 TTL failed");
1018 switch ( bindnet_address->
family ) {
1020 if (setsockopt (sockets->
mcast_send, IPPROTO_IP, IP_MULTICAST_IF,
1021 &boundto_sin->sin_addr, sizeof (boundto_sin->sin_addr)) < 0) {
1023 "cannot select interface for multicast packets (send)");
1026 if (setsockopt (sockets->
mcast_recv, IPPROTO_IP, IP_MULTICAST_IF,
1027 &boundto_sin->sin_addr, sizeof (boundto_sin->sin_addr)) < 0) {
1029 "cannot select interface for multicast packets (recv)");
1034 if (setsockopt (sockets->
mcast_send, IPPROTO_IPV6, IPV6_MULTICAST_IF,
1035 &interface_num, sizeof (interface_num)) < 0) {
1037 "cannot select interface for multicast packets (send v6)");
1040 if (setsockopt (sockets->
mcast_recv, IPPROTO_IPV6, IPV6_MULTICAST_IF,
1041 &interface_num, sizeof (interface_num)) < 0) {
1043 "cannot select interface for multicast packets (recv v6)");
1060 res = bind (sockets->
mcast_recv, (
struct sockaddr *)&sockaddr, addrlen);
1065 "Unable to bind the socket to receive multicast packets");
1082static int totemudp_build_sockets (
1096 res = netif_determine (instance,
1108 res = totemudp_build_sockets_ip (instance, mcast_address,
1109 bindnet_address, sockets, bound_to, interface_num);
1114 "Unable to create sockets, exiting");
1119 totemudp_traffic_control_set(instance, sockets->
token);
1132 qb_loop_t *poll_handle,
1139 void (*deliver_fn) (
1142 unsigned int msg_len,
1145 void (*iface_change_fn) (
1148 unsigned int ring_no),
1150 void (*mtu_changed) (
1154 void (*target_set_completed) (
1160 if (instance == NULL) {
1164 totemudp_instance_initialize (instance);
1207 100*QB_TIME_NS_IN_MSEC,
1209 timer_function_netif_check_timeout,
1228 int processor_count)
1236 if (processor_count == 1) {
1241 timer_function_netif_check_timeout,
1242 &instance->timer_netif_check_timeout);
1259 for (i = 0; i < 2; i++) {
1271 ufd.events = POLLIN;
1272 nfds = poll (&ufd, 1, 0);
1273 if (nfds == 1 && ufd.revents & POLLIN) {
1274 net_deliver_fn (sock, ufd.revents, instance);
1276 }
while (nfds == 1);
1292 unsigned int msg_len)
1297 ucast_sendmsg (instance, &instance->
token_target, msg, msg_len);
1304 unsigned int msg_len)
1309 mcast_sendmsg (instance, msg, msg_len);
1317 unsigned int msg_len)
1322 mcast_sendmsg (instance, msg, msg_len);
1332 timer_function_netif_check_timeout (instance);
1341 struct qb_list_head *list;
1369 unsigned int *iface_count)
1391 struct qb_list_head *list;
1417 struct msghdr msg_recv;
1420 int msg_processed = 0;
1428 msg_recv.msg_namelen =
sizeof (
struct sockaddr_storage);
1430 msg_recv.msg_iovlen = 1;
1431#ifdef HAVE_MSGHDR_CONTROL
1432 msg_recv.msg_control = 0;
1434#ifdef HAVE_MSGHDR_CONTROLLEN
1435 msg_recv.msg_controllen = 0;
1437#ifdef HAVE_MSGHDR_FLAGS
1438 msg_recv.msg_flags = 0;
1440#ifdef HAVE_MSGHDR_ACCRIGHTS
1441 msg_recv.msg_accrights = NULL;
1443#ifdef HAVE_MSGHDR_ACCRIGHTSLEN
1444 msg_recv.msg_accrightslen = 0;
1447 for (i = 0; i < 2; i++) {
1459 ufd.events = POLLIN;
1460 nfds = poll (&ufd, 1, 0);
1461 if (nfds == 1 && ufd.revents & POLLIN) {
1462 res = recvmsg (sock, &msg_recv,
MSG_NOSIGNAL | MSG_DONTWAIT);
1469 }
while (nfds == 1);
1472 return (msg_processed);
1487 if (new_member == NULL) {
1491 memset(new_member, 0,
sizeof(*new_member));
1493 qb_list_init (&new_member->
list);
1506 struct qb_list_head *list;
1513 qb_list_for_each(list, &(instance->
member_list)) {
1514 member = qb_list_entry (list,
1536 unsigned short ip_port,
1537 unsigned int iface_no)
#define PROCESSOR_COUNT_MAX
unsigned int broadcast_use
struct totem_logging_configuration totem_logging_configuration
unsigned int downcheck_timeout
struct totem_interface * interfaces
unsigned int clear_node_high_bit
struct totem_ip_address boundto
struct totem_ip_address bindnet
struct totem_ip_address mcast_addr
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
struct knet_link_status link_status[KNET_MAX_LINK]
uint32_t continuous_sendmsg_failures
qb_loop_timer_handle timer_netif_check_timeout
struct totem_ip_address mcast_address
struct qb_list_head member_list
qb_loop_t * totemudp_poll_handle
char iov_buffer_flush[UDP_RECEIVE_FRAME_SIZE_MAX]
int totemudp_log_level_security
struct totem_ip_address my_id
void(* totemudp_deliver_fn)(void *context, const void *msg, unsigned int msg_len, const struct sockaddr_storage *system_from)
struct totem_interface * totem_interface
char iov_buffer[UDP_RECEIVE_FRAME_SIZE_MAX]
struct iovec totemudp_iov_recv_flush
void(* totemudp_iface_change_fn)(void *context, const struct totem_ip_address *iface_address, unsigned int ring_no)
int totemudp_log_level_notice
void(* totemudp_log_printf)(int level, int subsys, const char *function, const char *file, int line, const char *format,...) __attribute__((format(printf
unsigned int my_memb_entries
int totemudp_log_level_debug
struct totem_config * totem_config
void(*) void udp_context)
int totemudp_log_level_warning
struct totem_ip_address token_target
void(* totemudp_target_set_completed)(void *context)
struct iovec totemudp_iov_recv
struct totemudp_socket totemudp_sockets
struct timeval stats_tv_start
int totemudp_log_level_error
struct totem_ip_address member
struct totemudp_instance * instance
#define BIND_RETRIES_INTERVAL
#define UDP_RECEIVE_FRAME_SIZE_MAX
int totemip_iface_check(struct totem_ip_address *bindnet, struct totem_ip_address *boundto, int *interface_up, int *interface_num, int mask_high_bit)
#define totemip_nosigpipe(s)
void totemip_copy(struct totem_ip_address *addr1, const struct totem_ip_address *addr2)
size_t totemip_udpip_header_size(int family)
int totemip_compare(const void *a, const void *b)
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 totemip_localhost(int family, struct totem_ip_address *localhost)
struct srp_addr system_from
int totemudp_iface_set(void *net_context, const struct totem_ip_address *local_addr, unsigned short ip_port, unsigned int iface_no)
#define NETIF_STATE_REPORT_UP
void totemudp_net_mtu_adjust(void *udp_context, struct totem_config *totem_config)
#define log_printf(level, format, args...)
void * totemudp_buffer_alloc(void)
int totemudp_send_flush(void *udp_context)
int totemudp_iface_check(void *udp_context)
int totemudp_recv_flush(void *udp_context)
#define BIND_STATE_LOOPBACK
#define NETIF_STATE_REPORT_DOWN
int totemudp_nodestatus_get(void *udp_context, unsigned int nodeid, struct totem_node_status *node_status)
int totemudp_token_target_set(void *udp_context, unsigned int nodeid)
int totemudp_ifaces_get(void *net_context, char ***status, unsigned int *iface_count)
int totemudp_reconfigure(void *udp_context, struct totem_config *totem_config)
#define MCAST_SOCKET_BUFFER_SIZE
int totemudp_mcast_flush_send(void *udp_context, const void *msg, unsigned int msg_len)
int totemudp_finalize(void *udp_context)
int totemudp_recv_mcast_empty(void *udp_context)
int totemudp_crypto_set(void *udp_context, const char *cipher_type, const char *hash_type)
#define LOGSYS_PERROR(err_num, level, fmt, args...)
int totemudp_processor_count_set(void *udp_context, int processor_count)
int totemudp_token_send(void *udp_context, const void *msg, unsigned int msg_len)
#define BIND_STATE_REGULAR
int totemudp_mcast_noflush_send(void *udp_context, const void *msg, unsigned int msg_len)
int totemudp_member_add(void *udp_context, const struct totem_ip_address *local, const struct totem_ip_address *member, int ring_no)
void totemudp_buffer_release(void *ptr)
int totemudp_member_remove(void *udp_context, const struct totem_ip_address *token_target, int ring_no)
int totemudp_initialize(qb_loop_t *poll_handle, void **udp_context, struct totem_config *totem_config, totemsrp_stats_t *stats, void *context, void(*deliver_fn)(void *context, const void *msg, unsigned int msg_len, const struct sockaddr_storage *system_from), void(*iface_change_fn)(void *context, const struct totem_ip_address *iface_address, unsigned int ring_no), void(*mtu_changed)(void *context, int net_mtu), void(*target_set_completed)(void *context))
Create an instance.