46 auto configs =
config_->getAll();
47 for (
unsigned id = 0;
id < configs.size(); ++id) {
49 auto service = boost::make_shared<HAService>(
id,
io_service_, network_state,
50 configs[
id], server_type);
51 for (
auto const& peer_config : configs[
id]->getAllServersConfig()) {
52 services_->map(peer_config.first, service);
58 for (
auto const& service :
services_->getAll()) {
59 service->startClientAndListener();
73 for (
auto const& service :
services_->getAll()) {
76 service->stopClientAndListener();
108 }
catch (
const std::exception& ex) {
111 .arg(query4->getRemoteAddr().toText())
112 .arg(query4->getLocalAddr().toText())
113 .arg(query4->getIface())
124 if (!
services_->get()->inScope(query4)) {
126 .arg(query4->getLabel());
163 .arg(query4->getLabel());
175 std::string server_name;
178 if (server_name.empty()) {
180 .arg(query4->getLabel())
181 .arg(subnet4->toText());
191 .arg(query4->getLabel())
192 .arg(subnet4->toText());
200 auto service =
services_->get(server_name);
203 .arg(query4->getLabel())
214 if (!service->inScope(query4)) {
216 .arg(query4->getLabel())
227 callout_handle.
setContext(
"ha-server-name", server_name);
243 callout_handle.
getArgument(
"deleted_leases4", deleted_leases4);
246 if (leases4->empty() && deleted_leases4->empty()) {
248 .arg(query4->getLabel());
262 std::string server_name;
263 callout_handle.
getContext(
"ha-server-name", server_name);
268 if (!
config || !service) {
272 }
catch (
const std::exception& ex) {
274 .arg(query4->getLabel())
286 if (!
config->amSendingLeaseUpdates()) {
298 parking_lot->reference(query4);
305 if (service->asyncSendLeaseUpdates(query4, leases4, deleted_leases4, parking_lot) == 0) {
307 parking_lot->dereference(query4);
312 parking_lot->dereference(query4);
326 size_t peers_to_update = 0;
331 if (!
config_->get()->amSendingLeaseUpdates()) {
334 callout_handle.
setArgument(
"peers_to_update", peers_to_update);
351 peers_to_update =
services_->get()->asyncSendSingleLeaseUpdate(query4, lease4, 0);
352 callout_handle.
setArgument(
"peers_to_update", peers_to_update);
373 std::string server_name;
376 if (server_name.empty()) {
385 .arg(lease4->addr_.toText())
386 .arg(subnet4->toText());
406 .arg(lease4->addr_.toText());
439 }
catch (
const std::exception& ex) {
442 .arg(query6->getRemoteAddr().toText())
443 .arg(query6->getLocalAddr().toText())
444 .arg(query6->getIface())
457 if (!
services_->get()->inScope(query6)) {
459 .arg(query6->getLabel());
496 .arg(query6->getLabel());
508 std::string server_name;
511 if (server_name.empty()) {
513 .arg(query6->getLabel())
514 .arg(subnet6->toText());
524 .arg(query6->getLabel())
525 .arg(subnet6->toText());
533 auto service =
services_->get(server_name);
536 .arg(query6->getLabel())
547 if (!service->inScope(query6)) {
549 .arg(query6->getLabel())
560 callout_handle.
setContext(
"ha-server-name", server_name);
576 callout_handle.
getArgument(
"deleted_leases6", deleted_leases6);
579 if (leases6->empty() && deleted_leases6->empty()) {
581 .arg(query6->getLabel());
589 std::string server_name;
590 callout_handle.
getContext(
"ha-server-name", server_name);
594 if (!
config || !service) {
595 isc_throw(
Unexpected,
"relationship not found for the ha-server-name='" << server_name <<
"'");
598 }
catch (
const std::exception& ex) {
600 .arg(query6->getLabel())
612 if (!
config->amSendingLeaseUpdates()) {
624 parking_lot->reference(query6);
631 if (service->asyncSendLeaseUpdates(query6, leases6, deleted_leases6, parking_lot) == 0) {
633 parking_lot->dereference(query6);
638 parking_lot->dereference(query6);
666 std::string server_name;
669 if (server_name.empty()) {
678 .arg(lease6->addr_.toText())
679 .arg(subnet6->toText());
699 .arg(lease6->addr_.toText());
707 std::string command_name;
709 if (command_name ==
"status-get") {
713 if (!response || (response->getType() !=
Element::map)) {
718 if (!resp_args || (resp_args->getType() !=
Element::map)) {
723 boost::const_pointer_cast<Element>(resp_args);
727 for (
auto const& service :
services_->getAll()) {
730 ha_relationship->set(
"ha-servers", ha_servers);
732 ha_relationships->add(ha_relationship);
733 mutable_resp_args->set(
"high-availability", ha_relationships);
752 }
catch (
const std::exception& ex) {
776 unsigned int max_period_value = 0;
792 server_name = args->get(
"server-name");
807 (max_period->intValue() <= 0)) {
808 isc_throw(
BadValue,
"'max-period' must be a positive integer in the 'ha-sync' command");
811 max_period_value =
static_cast<unsigned int>(max_period->intValue());
816 }
catch (
const std::exception& ex) {
825 ConstElementPtr response = service->processSynchronize(server_name->stringValue(),
841 std::vector<std::string> scopes_vector;
866 for (
size_t i = 0; i < scopes->size(); ++i) {
871 scopes_vector.push_back(scope->stringValue());
876 }
catch (
const std::exception& ex) {
903 }
catch (
const std::exception& ex) {
928 isc_throw(
BadValue,
"'cancel' is mandatory for the 'ha-maintenance-notify' command");
932 isc_throw(
BadValue,
"'cancel' must be a boolean in the 'ha-maintenance-notify' command");
937 isc_throw(
BadValue,
"'state' must be a string in the 'ha-maintenance-notify' command");
942 ConstElementPtr response = service->processMaintenanceNotify(cancel_op->boolValue(),
943 state ? state->stringValue() :
"unavailable");
946 }
catch (
const std::exception& ex) {
957 for (
auto const& service :
services_->getAll()) {
958 response = service->processMaintenanceStart();
971 for (
auto const& service :
services_->getAll()) {
972 response = service->processMaintenanceCancel();
991 }
catch (
const std::exception& ex) {
1017 auto origin_id = args->get(
"origin-id");
1018 auto origin = args->get(
"origin");
1023 isc_throw(
BadValue,
"'origin-id' must be an integer in the 'ha-sync-complete-notify' command");
1025 origin_id_value = origin_id->intValue();
1027 }
else if (origin) {
1029 isc_throw(
BadValue,
"'origin' must be an integer in the 'ha-sync-complete-notify' command");
1031 origin_id_value = origin->intValue();
1037 }
catch (
const std::exception& ex) {
1045 ConstElementPtr response = service->processSyncCompleteNotify(origin_id_value);
1055 isc_throw(
BadValue,
"arguments in the '" << command_name <<
"' command are not a map");
1058 auto server_name = args->get(
"server-name");
1062 isc_throw(
BadValue,
"'server-name' must be a string in the '" << command_name <<
"' command");
1064 service =
services_->get(server_name->stringValue());
1067 <<
" 'server-name'");
1081 return (service->shouldReclaim(lease4));
1086 return (service->shouldReclaim(lease6));
@ NEXT_STEP_PARK
park the packet
@ NEXT_STEP_CONTINUE
continue normally
@ NEXT_STEP_DROP
drop the packet
@ NEXT_STEP_SKIP
skip the next processing step
static ElementPtr create(const Position &pos=ZERO_POSITION())
Create a NullElement.
static ElementPtr createMap(const Position &pos=ZERO_POSITION())
Creates an empty MapElement type ElementPtr.
static ElementPtr createList(const Position &pos=ZERO_POSITION())
Creates an empty ListElement type ElementPtr.
A generic exception that is thrown if a parameter given to a method is considered invalid in that con...
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
A generic exception that is thrown when an unexpected error condition occurs.
The IOService class is a wrapper for the ASIO io_context class.
static CfgMgr & instance()
returns a single instance of Configuration Manager
SrvConfigPtr getCurrentCfg()
Returns a pointer to the current configuration.
static const unsigned int HA_REMOTE_COMMAND
The network state is being altered by a "dhcp-disable" or "dhcp-enable" command sent by a HA partner.
Exception thrown during option unpacking This exception is thrown when an error has occurred,...
static HAConfigMapperPtr parse(const data::ConstElementPtr &config)
Parses HA configuration.
static std::string getSubnetServerName(const dhcp::ConstSubnetPtr &subnet)
Convenience function extracting a value of the ha-server-name parameter from a subnet context.
static std::string HAModeToString(const HAMode &ha_mode)
Returns HA mode name.
void stop()
Stop the client and listener.
void scopesHandler(hooks::CalloutHandle &callout_handle)
Implements handler for the ha-scopes command.
void continueHandler(hooks::CalloutHandle &callout_handle)
Implements handler for the ha-continue command.
void lease4Expire(hooks::CalloutHandle &callout_handle)
Implementation of the "lease4_expire" callout.
HAConfigMapperPtr config_
Holds parsed configuration.
void syncCompleteNotifyHandler(hooks::CalloutHandle &callout_handle)
Implements handler for the ha-sync-complete-notify command.
HAServicePtr getHAServiceByServerName(const std::string &command_name, data::ConstElementPtr args) const
Attempts to get an HAService by server name.
HAServiceMapperPtr services_
Pointer to the high availability services (state machines).
void startServices(const dhcp::NetworkStatePtr &network_state, const HAServerType &server_type)
Creates high availability services using current configuration.
void subnet4Select(hooks::CalloutHandle &callout_handle)
Implementation of the "subnet4_select" callout.
void configure(const data::ConstElementPtr &input_config)
Parses configuration.
virtual ~HAImpl()
Destructor.
void maintenanceCancelHandler(hooks::CalloutHandle &callout_handle)
Implements handler for the ha-maintenance-cancel command.
void haResetHandler(hooks::CalloutHandle &callout_handle)
Implements handler for the ha-reset command.
void maintenanceNotifyHandler(hooks::CalloutHandle &callout_handle)
Implements handler for the ha-maintenance-notify command.
void synchronizeHandler(hooks::CalloutHandle &callout_handle)
Implements handler for the ha-sync command.
void maintenanceStartHandler(hooks::CalloutHandle &callout_handle)
Implements handler for the ha-maintenance-start command.
void lease6Expire(hooks::CalloutHandle &callout_handle)
Implementation of the "lease6_expire" callout.
isc::asiolink::IOServicePtr io_service_
The hook I/O service.
void leases4Committed(hooks::CalloutHandle &callout_handle)
Implementation of the "leases4_committed" callout.
virtual bool shouldReclaim(const HAServicePtr &service, const dhcp::Lease4Ptr &lease4) const
Checks if the lease should be reclaimed by this server.
void buffer4Receive(hooks::CalloutHandle &callout_handle)
Implementation of the "buffer4_receive" callout.
void buffer6Receive(hooks::CalloutHandle &callout_handle)
Implementation of the "buffer6_receive" callout.
void commandProcessed(hooks::CalloutHandle &callout_handle)
Implementation of the "command_processed" callout.
void leases6Committed(hooks::CalloutHandle &callout_handle)
Implementation of the "leases6_committed" callout.
void subnet6Select(hooks::CalloutHandle &callout_handle)
Implementation of the "subnet6_select" callout.
void lease4ServerDecline(hooks::CalloutHandle &callout_handle)
Implementation of the "lease4_server_decline" callout.
void heartbeatHandler(hooks::CalloutHandle &callout_handle)
Implements handle for the heartbeat command.
Per-packet callout handle.
void getContext(const std::string &name, T &value) const
Get context.
ParkingLotHandlePtr getParkingLotHandlePtr() const
Returns pointer to the parking lot handle for this hook point.
void setContext(const std::string &name, T value)
Set context.
CalloutNextStep getStatus() const
Returns the next processing step.
void setStatus(const CalloutNextStep next)
Sets the next processing step.
void getArgument(const std::string &name, T &value) const
Get argument.
void setArgument(const std::string &name, T value)
Set argument.
static StatsMgr & instance()
Statistics Manager accessor method.
This file contains several functions and constants that are used for handling commands and responses ...
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
void addValue(const std::string &name, const int64_t value)
Records incremental integer observation.
#define LOG_ERROR(LOGGER, MESSAGE)
Macro to conveniently test error output and log it.
#define LOG_DEBUG(LOGGER, LEVEL, MESSAGE)
Macro to conveniently test debug output and log it.
ConstElementPtr parseAnswer(int &rcode, const ConstElementPtr &msg)
Parses a standard config/command level answer and returns arguments or text status code.
const int CONTROL_RESULT_ERROR
Status code indicating a general failure.
std::string parseCommand(ConstElementPtr &arg, ConstElementPtr command)
Parses the given command into a string containing the actual command and an ElementPtr containing the...
std::string parseCommandWithArgs(ConstElementPtr &arg, ConstElementPtr command)
Parses the given command into a string containing the command name and an ElementPtr containing the m...
ConstElementPtr createAnswer()
Creates a standard config/command level success answer message (i.e.
const int CONTROL_RESULT_SUCCESS
Status code indicating a successful operation.
boost::shared_ptr< const Element > ConstElementPtr
boost::shared_ptr< Element > ElementPtr
boost::shared_ptr< Lease4Collection > Lease4CollectionPtr
A shared pointer to the collection of IPv4 leases.
boost::shared_ptr< const Subnet6 > ConstSubnet6Ptr
A const pointer to a Subnet6 object.
boost::shared_ptr< const Subnet4 > ConstSubnet4Ptr
A const pointer to a Subnet4 object.
boost::shared_ptr< Pkt4 > Pkt4Ptr
A pointer to Pkt4 object.
boost::shared_ptr< Lease6 > Lease6Ptr
Pointer to a Lease6 structure.
boost::shared_ptr< NetworkState > NetworkStatePtr
Pointer to the NetworkState object.
boost::shared_ptr< Lease6Collection > Lease6CollectionPtr
A shared pointer to the collection of IPv6 leases.
boost::shared_ptr< Pkt6 > Pkt6Ptr
A pointer to Pkt6 packet.
boost::shared_ptr< Lease4 > Lease4Ptr
Pointer to a Lease4 structure.
const isc::log::MessageID HA_BUFFER4_RECEIVE_UNPACK_FAILED
const isc::log::MessageID HA_SUBNET4_SELECT_NO_SUBNET_SELECTED
const isc::log::MessageID HA_LEASES6_COMMITTED_NOTHING_TO_UPDATE
const isc::log::MessageID HA_LEASES6_COMMITTED_NO_RELATIONSHIP
const isc::log::MessageID HA_BUFFER4_RECEIVE_PACKET_OPTIONS_SKIPPED
const isc::log::MessageID HA_BUFFER6_RECEIVE_UNPACK_FAILED
HARelationshipMapper< HAService > HAServiceMapper
Type of an object mapping HAService to relationships.
const isc::log::MessageID HA_SUBNET6_SELECT_NO_SUBNET_SELECTED
const isc::log::MessageID HA_SUBNET6_SELECT_INVALID_HA_SERVER_NAME
const isc::log::MessageID HA_LEASES4_COMMITTED_NO_RELATIONSHIP
isc::log::Logger ha_logger("ha-hooks")
const isc::log::MessageID HA_SUBNET6_SELECT_NOT_FOR_US
const isc::log::MessageID HA_BUFFER6_RECEIVE_PACKET_OPTIONS_SKIPPED
boost::shared_ptr< HAConfig > HAConfigPtr
Pointer to the High Availability configuration structure.
const isc::log::MessageID HA_SUBNET4_SELECT_INVALID_HA_SERVER_NAME
HAServerType
Lists possible server types for which HA service is created.
const isc::log::MessageID HA_LEASE4_EXPIRE_INVALID_HA_SERVER_NAME
const isc::log::MessageID HA_SUBNET4_SELECT_NO_RELATIONSHIP_FOR_SUBNET
const isc::log::MessageID HA_SUBNET4_SELECT_NOT_FOR_US
const isc::log::MessageID HA_LEASE6_EXPIRE_RECLAMATION_SKIP
const isc::log::MessageID HA_SUBNET6_SELECT_NO_RELATIONSHIP_FOR_SUBNET
const isc::log::MessageID HA_LEASE4_EXPIRE_RECLAMATION_SKIP
const isc::log::MessageID HA_LEASES4_COMMITTED_NOTHING_TO_UPDATE
const isc::log::MessageID HA_SUBNET4_SELECT_NO_RELATIONSHIP_SELECTOR_FOR_SUBNET
const isc::log::MessageID HA_SUBNET6_SELECT_NO_RELATIONSHIP_SELECTOR_FOR_SUBNET
const isc::log::MessageID HA_BUFFER4_RECEIVE_NOT_FOR_US
const isc::log::MessageID HA_BUFFER6_RECEIVE_NOT_FOR_US
boost::shared_ptr< HAService > HAServicePtr
Pointer to the HAService class.
const isc::log::MessageID HA_LEASE6_EXPIRE_INVALID_HA_SERVER_NAME
boost::shared_ptr< ParkingLotHandle > ParkingLotHandlePtr
Pointer to the parking lot handle.
const int DBGLVL_TRACE_BASIC
Trace basic operations.
Defines the logger used by the top-level component of kea-lfc.