| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697 |
- /*
- * Copyright (c) 2015-2018 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.
- */
- #include <poll.h>
- #include "qdevice-model.h"
- #include "qdevice-model-net.h"
- #include "qdevice-log.h"
- #include "qdevice-net-cast-vote-timer.h"
- #include "qdevice-net-instance.h"
- #include "qdevice-net-ipc-cmd.h"
- #include "qdevice-net-algorithm.h"
- #include "qdevice-net-heuristics.h"
- #include "qdevice-net-poll.h"
- #include "qdevice-net-send.h"
- #include "qdevice-net-votequorum.h"
- #include "qnet-config.h"
- #include "nss-sock.h"
- int
- qdevice_model_net_init(struct qdevice_instance *instance)
- {
- struct qdevice_net_instance *net_instance;
- qdevice_log(LOG_DEBUG, "Initializing qdevice_net_instance");
- if (qdevice_net_instance_init_from_cmap(instance) != 0) {
- return (-1);
- }
- net_instance = instance->model_data;
- qdevice_log(LOG_DEBUG, "Registering algorithms");
- if (qdevice_net_algorithm_register_all() != 0) {
- return (-1);
- }
- qdevice_log(LOG_DEBUG, "Initializing NSS");
- if (nss_sock_init_nss((net_instance->tls_supported != TLV_TLS_UNSUPPORTED ?
- instance->advanced_settings->net_nss_db_dir : NULL)) != 0) {
- qdevice_log_nss(LOG_ERR, "Can't init nss");
- return (-1);
- }
- if (qdevice_net_cast_vote_timer_update(net_instance, TLV_VOTE_ASK_LATER) != 0) {
- qdevice_log(LOG_ERR, "Can't update cast vote timer");
- return (-1);
- }
- if (qdevice_net_algorithm_init(net_instance) != 0) {
- qdevice_log(LOG_ERR, "Algorithm init failed");
- return (-1);
- }
- if (qdevice_net_heuristics_init(net_instance) != 0) {
- qdevice_log(LOG_ERR, "Can't initialize net heuristics");
- return (-1);
- }
- return (0);
- }
- int
- qdevice_model_net_destroy(struct qdevice_instance *instance)
- {
- struct qdevice_net_instance *net_instance;
- net_instance = instance->model_data;
- qdevice_log(LOG_DEBUG, "Destroying algorithm");
- qdevice_net_algorithm_destroy(net_instance);
- qdevice_log(LOG_DEBUG, "Destroying qdevice_net_instance");
- qdevice_net_instance_destroy(net_instance);
- qdevice_log(LOG_DEBUG, "Shutting down NSS");
- SSL_ClearSessionCache();
- if (NSS_Shutdown() != SECSuccess) {
- qdevice_log_nss(LOG_WARNING, "Can't shutdown NSS");
- }
- if (PR_Cleanup() != PR_SUCCESS) {
- qdevice_log_nss(LOG_WARNING, "Can't shutdown NSPR");
- }
- free(net_instance);
- return (0);
- }
- static int
- qdevice_model_net_timer_connect_timeout(void *data1, void *data2)
- {
- struct qdevice_net_instance *instance;
- instance = (struct qdevice_net_instance *)data1;
- qdevice_log(LOG_ERR, "Connect timeout");
- instance->schedule_disconnect = 1;
- instance->connect_timer = NULL;
- instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_CONNECT_TO_THE_SERVER;
- return (0);
- }
- static PRIntn
- qdevice_model_net_get_af(const struct qdevice_net_instance *instance)
- {
- PRIntn af;
- af = PR_AF_UNSPEC;
- if (instance->force_ip_version == 4) {
- af = PR_AF_INET;
- }
- if (instance->force_ip_version == 6) {
- af = PR_AF_INET6;
- }
- return (af);
- }
- int
- qdevice_model_net_run(struct qdevice_instance *instance)
- {
- struct qdevice_net_instance *net_instance;
- int try_connect;
- int res;
- enum tlv_vote vote;
- int delay_before_reconnect;
- int ret_val;
- net_instance = instance->model_data;
- qdevice_log(LOG_DEBUG, "Executing qdevice-net");
- ret_val = -1;
- try_connect = 1;
- while (try_connect) {
- net_instance->state = QDEVICE_NET_INSTANCE_STATE_WAITING_CONNECT;
- net_instance->socket = NULL;
- net_instance->connect_timer = timer_list_add(&net_instance->main_timer_list,
- net_instance->connect_timeout, qdevice_model_net_timer_connect_timeout,
- (void *)net_instance, NULL);
- if (net_instance->connect_timer == NULL) {
- qdevice_log(LOG_CRIT, "Can't schedule connect timer");
- try_connect = 0;
- break;
- }
- qdevice_log(LOG_DEBUG, "Trying connect to qnetd server %s:%u (timeout = %ums)",
- net_instance->host_addr, net_instance->host_port, net_instance->connect_timeout);
- res = nss_sock_non_blocking_client_init(net_instance->host_addr,
- net_instance->host_port, qdevice_model_net_get_af(net_instance),
- &net_instance->non_blocking_client);
- if (res == -1) {
- qdevice_log_nss(LOG_ERR, "Can't initialize non blocking client connection");
- }
- res = nss_sock_non_blocking_client_try_next(&net_instance->non_blocking_client);
- if (res == -1) {
- qdevice_log_nss(LOG_ERR, "Can't connect to qnetd host");
- nss_sock_non_blocking_client_destroy(&net_instance->non_blocking_client);
- }
- while (qdevice_net_poll(net_instance) == 0) {
- };
- if (net_instance->connect_timer != NULL) {
- timer_list_delete(&net_instance->main_timer_list, net_instance->connect_timer);
- net_instance->connect_timer = NULL;
- }
- if (net_instance->echo_request_timer != NULL) {
- timer_list_delete(&net_instance->main_timer_list, net_instance->echo_request_timer);
- net_instance->echo_request_timer = NULL;
- }
- try_connect = qdevice_net_disconnect_reason_try_reconnect(net_instance->disconnect_reason);
- /*
- * Unpause cast vote timer, because if it is paused we cannot remove tracking
- */
- qdevice_net_cast_vote_timer_set_paused(net_instance, 0);
- vote = TLV_VOTE_NO_CHANGE;
- if (qdevice_net_algorithm_disconnected(net_instance,
- net_instance->disconnect_reason, &try_connect, &vote) != 0) {
- qdevice_log(LOG_ERR, "Algorithm returned error, force exit");
- return (-1);
- } else {
- qdevice_log(LOG_DEBUG, "Algorithm result vote is %s",
- tlv_vote_to_str(vote));
- }
- if (qdevice_net_cast_vote_timer_update(net_instance, vote) != 0) {
- qdevice_log(LOG_ERR, "qdevice_model_net_run fatal error. "
- " Can't update cast vote timer vote");
- }
- if (qdevice_net_disconnect_reason_force_disconnect(net_instance->disconnect_reason)) {
- try_connect = 0;
- }
- /*
- * Return 0 only when local socket was closed -> regular exit
- */
- if (net_instance->disconnect_reason == QDEVICE_NET_DISCONNECT_REASON_LOCAL_SOCKET_CLOSED) {
- ret_val = 0;
- }
- if (net_instance->socket != NULL) {
- if (PR_Close(net_instance->socket) != PR_SUCCESS) {
- qdevice_log_nss(LOG_WARNING, "Unable to close connection");
- }
- net_instance->socket = NULL;
- }
- if (!net_instance->non_blocking_client.destroyed) {
- nss_sock_non_blocking_client_destroy(&net_instance->non_blocking_client);
- }
- if (net_instance->non_blocking_client.socket != NULL) {
- if (PR_Close(net_instance->non_blocking_client.socket) != PR_SUCCESS) {
- qdevice_log_nss(LOG_WARNING, "Unable to close non-blocking client connection");
- }
- net_instance->non_blocking_client.socket = NULL;
- }
- if (try_connect &&
- net_instance->state != QDEVICE_NET_INSTANCE_STATE_WAITING_CONNECT) {
- /*
- * Give qnetd server a little time before reconnect
- */
- delay_before_reconnect = random() %
- (int)(net_instance->cast_vote_timer_interval * 0.9);
- qdevice_log(LOG_DEBUG, "Sleeping for %u ms before reconnect",
- delay_before_reconnect);
- (void)poll(NULL, 0, delay_before_reconnect);
- }
- qdevice_net_instance_clean(net_instance);
- }
- return (ret_val);
- }
- /*
- * Called when cmap reload (or nodelist) was requested.
- *
- * nlist is node list
- * config_version is valid only if config_version_set != 0
- *
- * Should return 0 if processing should continue or -1 to call exit
- */
- int
- qdevice_model_net_config_node_list_changed(struct qdevice_instance *instance,
- const struct node_list *nlist, int config_version_set, uint64_t config_version)
- {
- struct qdevice_net_instance *net_instance;
- int send_node_list;
- enum tlv_vote vote;
- net_instance = instance->model_data;
- if (net_instance->state != QDEVICE_NET_INSTANCE_STATE_WAITING_VOTEQUORUM_CMAP_EVENTS) {
- /*
- * Nodelist changed, but connection to qnetd not initiated yet.
- */
- send_node_list = 0;
- if (net_instance->cast_vote_timer_vote == TLV_VOTE_ACK) {
- vote = TLV_VOTE_NACK;
- } else {
- vote = TLV_VOTE_NO_CHANGE;
- }
- } else {
- send_node_list = 1;
- vote = TLV_VOTE_NO_CHANGE;
- }
- if (qdevice_net_algorithm_config_node_list_changed(net_instance, nlist, config_version_set,
- config_version, &send_node_list, &vote) != 0) {
- qdevice_log(LOG_ERR, "Algorithm returned error, Disconnecting");
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_ALGO_CONFIG_NODE_LIST_CHANGED_ERR;
- net_instance->schedule_disconnect = 1;
- return (0);
- } else {
- qdevice_log(LOG_DEBUG, "Algorithm decided to %s node list and result vote is %s",
- (send_node_list ? "send" : "not send"), tlv_vote_to_str(vote));
- }
- if (qdevice_net_cast_vote_timer_update(net_instance, vote) != 0) {
- qdevice_log(LOG_CRIT, "qdevice_model_net_config_node_list_changed fatal error. "
- " Can't update cast vote timer vote");
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_SCHEDULE_VOTING_TIMER;
- net_instance->schedule_disconnect = 1;
- return (0);
- }
- if (send_node_list) {
- if (qdevice_net_send_config_node_list(net_instance, nlist, config_version_set,
- config_version, 0) != 0) {
- net_instance->schedule_disconnect = 1;
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_ALLOCATE_MSG_BUFFER;
- return (0);
- }
- }
- return (0);
- }
- /*
- * Called when cmap reload (or nodelist) was requested, but it was not possible to
- * get node list.
- *
- * Should return 0 if processing should continue or -1 to call exit
- */
- int
- qdevice_model_net_get_config_node_list_failed(struct qdevice_instance *instance)
- {
- struct qdevice_net_instance *net_instance;
- net_instance = instance->model_data;
- net_instance->schedule_disconnect = 1;
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_ALLOCATE_MSG_BUFFER;
- return (0);
- }
- int
- qdevice_model_net_votequorum_quorum_notify(struct qdevice_instance *instance,
- uint32_t quorate, uint32_t node_list_entries, votequorum_node_t node_list[])
- {
- struct qdevice_net_instance *net_instance;
- int send_node_list;
- enum tlv_vote vote;
- net_instance = instance->model_data;
- if (net_instance->state != QDEVICE_NET_INSTANCE_STATE_WAITING_VOTEQUORUM_CMAP_EVENTS) {
- /*
- * Nodelist changed, but connection to qnetd not initiated yet.
- */
- send_node_list = 0;
- if (net_instance->cast_vote_timer_vote == TLV_VOTE_ACK) {
- vote = TLV_VOTE_NACK;
- } else {
- vote = TLV_VOTE_NO_CHANGE;
- }
- } else {
- send_node_list = 1;
- vote = TLV_VOTE_NO_CHANGE;
- }
- if (qdevice_net_algorithm_votequorum_quorum_notify(net_instance, quorate,
- node_list_entries, node_list, &send_node_list, &vote) != 0) {
- qdevice_log(LOG_ERR, "Algorithm returned error. Disconnecting.");
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_ALGO_VOTEQUORUM_QUORUM_NOTIFY_ERR;
- net_instance->schedule_disconnect = 1;
- return (0);
- } else {
- qdevice_log(LOG_DEBUG, "Algorithm decided to %s list and result vote is %s",
- (send_node_list ? "send" : "not send"), tlv_vote_to_str(vote));
- }
- if (qdevice_net_cast_vote_timer_update(net_instance, vote) != 0) {
- qdevice_log(LOG_CRIT, "qdevice_model_net_votequorum_quorum_notify fatal error. "
- " Can't update cast vote timer vote");
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_SCHEDULE_VOTING_TIMER;
- net_instance->schedule_disconnect = 1;
- return (0);
- }
- if (send_node_list) {
- if (qdevice_net_send_quorum_node_list(net_instance,
- (quorate ? TLV_QUORATE_QUORATE : TLV_QUORATE_INQUORATE),
- node_list_entries, node_list) != 0) {
- /*
- * Fatal error -> schedule disconnect
- */
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_ALLOCATE_MSG_BUFFER;
- net_instance->schedule_disconnect = 1;
- return (0);
- }
- }
- return (0);
- }
- int
- qdevice_model_net_votequorum_node_list_heuristics_notify(struct qdevice_instance *instance,
- votequorum_ring_id_t votequorum_ring_id, uint32_t node_list_entries, uint32_t node_list[],
- enum qdevice_heuristics_exec_result heuristics_exec_result)
- {
- struct qdevice_net_instance *net_instance;
- struct tlv_ring_id tlv_rid;
- enum tlv_vote vote;
- enum tlv_heuristics heuristics;
- int send_node_list;
- net_instance = instance->model_data;
- qdevice_net_votequorum_ring_id_to_tlv(&tlv_rid, &votequorum_ring_id);
- heuristics = qdevice_net_heuristics_exec_result_to_tlv(heuristics_exec_result);
- if (net_instance->state != QDEVICE_NET_INSTANCE_STATE_WAITING_VOTEQUORUM_CMAP_EVENTS) {
- /*
- * Nodelist changed, but connection to qnetd not initiated yet.
- */
- send_node_list = 0;
- if (net_instance->cast_vote_timer_vote == TLV_VOTE_ACK) {
- vote = TLV_VOTE_NACK;
- } else {
- vote = TLV_VOTE_NO_CHANGE;
- }
- } else {
- send_node_list = 1;
- vote = TLV_VOTE_WAIT_FOR_REPLY;
- }
- if (qdevice_net_algorithm_votequorum_node_list_heuristics_notify(net_instance, &tlv_rid,
- node_list_entries, node_list, &send_node_list, &vote, &heuristics) != 0) {
- qdevice_log(LOG_ERR, "Algorithm returned error. Disconnecting.");
- net_instance->disconnect_reason =
- QDEVICE_NET_DISCONNECT_REASON_ALGO_VOTEQUORUM_NODE_LIST_HEURISTICS_NOTIFY_ERR;
- net_instance->schedule_disconnect = 1;
- return (0);
- } else {
- qdevice_log(LOG_DEBUG, "Algorithm decided to %s list, result vote is %s and heuristics is %s",
- (send_node_list ? "send" : "not send"), tlv_vote_to_str(vote),
- tlv_heuristics_to_str(heuristics));
- }
- if (send_node_list) {
- if (qdevice_net_send_membership_node_list(net_instance, &tlv_rid,
- node_list_entries, node_list, heuristics) != 0) {
- /*
- * Fatal error -> schedule disconnect
- */
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_ALLOCATE_MSG_BUFFER;
- net_instance->schedule_disconnect = 1;
- return (0);
- }
- }
- /*
- * Unpause cast vote timer
- */
- qdevice_net_cast_vote_timer_set_paused(net_instance, 0);
- if (qdevice_net_cast_vote_timer_update(net_instance, vote) != 0) {
- qdevice_log(LOG_CRIT, "qdevice_model_net_votequorum_node_list_notify fatal error "
- "Can't update cast vote timer");
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_SCHEDULE_VOTING_TIMER;
- net_instance->schedule_disconnect = 1;
- return (0);
- }
- net_instance->latest_vq_heuristics_result = heuristics;
- net_instance->latest_heuristics_result = heuristics;
- if (qdevice_net_heuristics_schedule_timer(net_instance) != 0) {
- return (0);
- }
- return (0);
- }
- int
- qdevice_model_net_votequorum_node_list_notify(struct qdevice_instance *instance,
- votequorum_ring_id_t votequorum_ring_id, uint32_t node_list_entries, uint32_t node_list[])
- {
- struct qdevice_net_instance *net_instance;
- struct tlv_ring_id tlv_rid;
- enum tlv_vote vote;
- int pause_cast_vote_timer;
- net_instance = instance->model_data;
- /*
- * Stop regular heuristics till qdevice_model_net_votequorum_node_list_heuristics_notify
- * is called
- */
- if (qdevice_net_heuristics_stop_timer(net_instance) != 0) {
- return (0);
- }
- pause_cast_vote_timer = 1;
- vote = TLV_VOTE_NO_CHANGE;
- if (net_instance->state != QDEVICE_NET_INSTANCE_STATE_WAITING_VOTEQUORUM_CMAP_EVENTS &&
- net_instance->cast_vote_timer_vote == TLV_VOTE_ACK) {
- /*
- * Nodelist changed and vote timer still votes ACK. It's needed to start voting
- * NACK.
- */
- if (net_instance->cast_vote_timer_vote == TLV_VOTE_ACK) {
- vote = TLV_VOTE_NACK;
- }
- }
- qdevice_net_votequorum_ring_id_to_tlv(&tlv_rid, &votequorum_ring_id);
- if (qdevice_net_algorithm_votequorum_node_list_notify(net_instance, &tlv_rid,
- node_list_entries, node_list, &pause_cast_vote_timer, &vote) != 0) {
- qdevice_log(LOG_ERR, "Algorithm returned error. Disconnecting.");
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_ALGO_VOTEQUORUM_NODE_LIST_NOTIFY_ERR;
- net_instance->schedule_disconnect = 1;
- return (0);
- } else {
- qdevice_log(LOG_DEBUG, "Algorithm decided to %s cast vote timer and result vote is %s ",
- (pause_cast_vote_timer ? "pause" : "not pause"), tlv_vote_to_str(vote));
- }
- if (qdevice_net_cast_vote_timer_update(net_instance, vote) != 0) {
- qdevice_log(LOG_CRIT, "qdevice_model_net_votequorum_node_list_notify fatal error "
- "Can't update cast vote timer");
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_SCHEDULE_VOTING_TIMER;
- net_instance->schedule_disconnect = 1;
- return (0);
- }
- qdevice_net_cast_vote_timer_set_paused(net_instance, pause_cast_vote_timer);
- return (0);
- }
- int
- qdevice_model_net_votequorum_expected_votes_notify(struct qdevice_instance *instance,
- uint32_t expected_votes)
- {
- struct qdevice_net_instance *net_instance;
- enum tlv_vote vote;
- net_instance = instance->model_data;
- qdevice_log(LOG_DEBUG, "qdevice_model_net_votequorum_expected_votes_notify"
- " (expected votes old=%"PRIu32" / new=%"PRIu32")",
- net_instance->qdevice_instance_ptr->vq_expected_votes, expected_votes);
- vote = TLV_VOTE_NO_CHANGE;
- if (qdevice_net_algorithm_votequorum_expected_votes_notify(net_instance, expected_votes,
- &vote) != 0) {
- qdevice_log(LOG_DEBUG, "Algorithm returned error. Disconnecting.");
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_ALGO_VOTEQUORUM_EXPECTED_VOTES_NOTIFY_ERR;
- net_instance->schedule_disconnect = 1;
- return (0);
- } else {
- qdevice_log(LOG_DEBUG, "Algorithm result vote is %s", tlv_vote_to_str(vote));
- }
- if (qdevice_net_cast_vote_timer_update(net_instance, vote) != 0) {
- qdevice_log(LOG_CRIT, "qdevice_model_net_votequorum_expected_votes_notify fatal error. "
- " Can't update cast vote timer vote");
- net_instance->disconnect_reason = QDEVICE_NET_DISCONNECT_REASON_CANT_SCHEDULE_VOTING_TIMER;
- net_instance->schedule_disconnect = 1;
- return (0);
- }
- return (0);
- }
- int
- qdevice_model_net_cmap_changed(struct qdevice_instance *instance,
- const struct qdevice_cmap_change_events *events)
- {
- struct qdevice_net_instance *net_instance;
- enum qdevice_heuristics_mode active_heuristics_mode;
- int heuristics_enabled;
- net_instance = instance->model_data;
- if (events->heuristics) {
- active_heuristics_mode = instance->heuristics_instance.mode;
- heuristics_enabled = (active_heuristics_mode == QDEVICE_HEURISTICS_MODE_ENABLED ||
- active_heuristics_mode == QDEVICE_HEURISTICS_MODE_SYNC);
- if (net_instance->state == QDEVICE_NET_INSTANCE_STATE_WAITING_VOTEQUORUM_CMAP_EVENTS &&
- !net_instance->server_supports_heuristics && heuristics_enabled) {
- qdevice_log(LOG_ERR, "Heuristics are enabled but not supported by the server");
- net_instance->disconnect_reason =
- QDEVICE_NET_DISCONNECT_REASON_SERVER_DOESNT_SUPPORT_REQUIRED_OPT;
- net_instance->schedule_disconnect = 1;
- return (0);
- }
- if (qdevice_net_heuristics_schedule_timer(net_instance) != 0) {
- return (0);
- }
- }
- return (0);
- }
- int
- qdevice_model_net_ipc_cmd_status(struct qdevice_instance *instance,
- struct dynar *outbuf, int verbose)
- {
- struct qdevice_net_instance *net_instance;
- net_instance = instance->model_data;
- if (!qdevice_net_ipc_cmd_status(net_instance, outbuf, verbose)) {
- return (-1);
- }
- return (0);
- }
- static struct qdevice_model qdevice_model_net = {
- .name = "net",
- .init = qdevice_model_net_init,
- .destroy = qdevice_model_net_destroy,
- .run = qdevice_model_net_run,
- .get_config_node_list_failed = qdevice_model_net_get_config_node_list_failed,
- .config_node_list_changed = qdevice_model_net_config_node_list_changed,
- .votequorum_quorum_notify = qdevice_model_net_votequorum_quorum_notify,
- .votequorum_node_list_notify = qdevice_model_net_votequorum_node_list_notify,
- .votequorum_node_list_heuristics_notify = qdevice_model_net_votequorum_node_list_heuristics_notify,
- .votequorum_expected_votes_notify = qdevice_model_net_votequorum_expected_votes_notify,
- .cmap_changed = qdevice_model_net_cmap_changed,
- .ipc_cmd_status = qdevice_model_net_ipc_cmd_status,
- };
- int
- qdevice_model_net_register(void)
- {
- return (qdevice_model_register(QDEVICE_MODEL_TYPE_NET, &qdevice_model_net));
- }
|