Kea 3.1.9
ha_service.h
Go to the documentation of this file.
1// Copyright (C) 2018-2026 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#ifndef HA_SERVICE_H
8#define HA_SERVICE_H
9
10#include <communication_state.h>
11#include <ha_config.h>
12#include <ha_server_type.h>
13#include <lease_sync_filter.h>
15#include <query_filter.h>
17#include <asiolink/io_service.h>
18#include <asiolink/tls_socket.h>
19#include <cc/data.h>
21#include <dhcp/pkt4.h>
22#include <http/response.h>
23#include <dhcpsrv/lease.h>
25#include <hooks/parking_lots.h>
26#include <http/client.h>
27#include <util/state_model.h>
28
29#include <boost/noncopyable.hpp>
30#include <boost/shared_ptr.hpp>
31#include <functional>
32#include <map>
33#include <mutex>
34#include <vector>
35
36namespace isc {
37namespace ha {
38
39class HAService;
40
43
45typedef boost::shared_ptr<HAServiceMapper> HAServiceMapperPtr;
46
52class HAService : public boost::noncopyable, public util::StateModel {
53public:
54
57
60
63
66
69
72
75
79
82
86
87protected:
88
95 typedef std::function<void(const bool, const std::string&, const int)> PostRequestCallback;
96
104 typedef std::function<void(const bool, const std::string&, const bool)> PostSyncCallback;
105
106public:
107
120 HAService(const unsigned int id,
121 const asiolink::IOServicePtr& io_service,
122 const dhcp::NetworkStatePtr& network_state,
123 const HAConfigPtr& config,
124 const HAServerType& server_type = HAServerType::DHCPv4);
125
130 virtual ~HAService();
131
134 return (server_type_);
135 }
136
137private:
138
143 unsigned int getLocalOrigin() const {
145 }
146
151 unsigned int getRemoteOrigin() const {
153 }
154
162 std::string getCSCallbacksSetName() const;
163
165 virtual void defineEvents();
166
168 virtual void verifyEvents();
169
171 virtual void defineStates();
172
185 void backupStateHandler();
186
214 void communicationRecoveryHandler();
215
245 void normalStateHandler();
246
256 void inMaintenanceStateHandler();
257
282 void partnerDownStateHandler();
283
304 void partnerInMaintenanceStateHandler();
305
313 void passiveBackupStateHandler();
314
330 void readyStateHandler();
331
348 void syncingStateHandler();
349
367 void terminatedStateHandler();
368
392 void waitingStateHandler();
393
396 int getPartnerState() const {
397 return (communication_state_->getPartnerState());
398 }
399
400protected:
401
405 void verboseTransition(const unsigned state);
406
413 int getNormalState() const;
414
415public:
416
424 bool unpause();
425
426protected:
427
432 void conditionalLogPausedState() const;
433
434public:
435
440 void serveDefaultScopes();
441
446 void serveFailoverScopes();
447
461 bool inScope(dhcp::Pkt4Ptr& query4);
462
476 bool inScope(dhcp::Pkt6Ptr& query6);
477
478private:
479
493 template<typename QueryPtrType>
494 bool inScopeInternal(QueryPtrType& query);
495
496public:
497
507 bool shouldReclaim(const dhcp::Lease4Ptr& lease4) const;
508
518 bool shouldReclaim(const dhcp::Lease6Ptr& lease6) const;
519
520private:
521
532 template<typename LeaseTypePtr>
533 bool shouldReclaimInternal(const LeaseTypePtr& lease) const;
534
535public:
536
541 void adjustNetworkState();
542
543protected:
544
558 bool shouldPartnerDown() const;
559
578 bool shouldTerminate() const;
579
584 bool isMaintenanceCanceled() const;
585
601 bool isPartnerStateInvalid() const;
602
603public:
604
638 size_t asyncSendLeaseUpdates(const dhcp::Pkt4Ptr& query,
639 const dhcp::Lease4CollectionPtr& leases,
640 const dhcp::Lease4CollectionPtr& deleted_leases,
641 const hooks::ParkingLotHandlePtr& parking_lot);
642
659 size_t asyncSendSingleLeaseUpdate(const dhcp::Pkt4Ptr& query,
660 const dhcp::Lease4Ptr& lease,
661 const hooks::ParkingLotHandlePtr& parking_lot);
662
681 size_t asyncSendLeaseUpdates(const dhcp::Pkt6Ptr& query,
682 const dhcp::Lease6CollectionPtr& leases,
683 const dhcp::Lease6CollectionPtr& deleted_leases,
684 const hooks::ParkingLotHandlePtr& parking_lot);
685
686protected:
687
700 template<typename QueryPtrType>
701 void asyncSendLeaseUpdate(const QueryPtrType& query,
702 const HAConfig::PeerConfigPtr& config,
703 const data::ConstElementPtr& command,
704 const hooks::ParkingLotHandlePtr& parking_lot);
705
715 void logFailedLeaseUpdates(const dhcp::PktPtr& query,
716 const data::ConstElementPtr& args) const;
717
728 bool shouldSendLeaseUpdates(const HAConfig::PeerConfigPtr& peer_config) const;
729
741 bool shouldQueueLeaseUpdates(const HAConfig::PeerConfigPtr& peer_config) const;
742
743public:
744
770
776
790
791protected:
792
794 void asyncSendHeartbeat();
795
801 void scheduleHeartbeat();
802
804 void startHeartbeat();
805
817 void asyncDisableDHCPService(http::HttpClient& http_client,
818 const HAConfig::PeerConfigPtr& remote_config,
819 const unsigned int max_period,
820 PostRequestCallback post_request_action);
821
831 void asyncEnableDHCPService(http::HttpClient& http_client,
832 const HAConfig::PeerConfigPtr& remote_config,
833 PostRequestCallback post_request_action);
834
837
840
856 void asyncSyncLeases();
857
908 void asyncSyncLeases(http::HttpClient& http_client,
909 const HAConfig::PeerConfigPtr& remote_config,
910 const unsigned int max_period,
911 const dhcp::LeasePtr& last_lease,
912 PostSyncCallback post_sync_action,
913 const bool dhcp_disabled = false);
914
941 void asyncSyncLeasesInternal(http::HttpClient& http_client,
942 const HAConfig::PeerConfigPtr& remote_config,
943 const unsigned int max_period,
944 const dhcp::LeasePtr& last_lease,
945 PostSyncCallback post_sync_action,
946 const bool dhcp_disabled);
947
948public:
949
969 data::ConstElementPtr processSynchronize(const std::string& server_name,
970 const unsigned int max_period);
971
972protected:
973
994 int synchronize(std::string& status_message,
995 const HAConfig::PeerConfigPtr& remote_config,
996 const unsigned int max_period);
997
1016 void asyncSendLeaseUpdatesFromBacklog(http::HttpClient& http_client,
1017 const HAConfig::PeerConfigPtr& remote_config,
1018 PostRequestCallback post_request_action);
1019
1034
1041 void asyncSendHAReset(http::HttpClient& http_client,
1042 const HAConfig::PeerConfigPtr& remote_config,
1043 PostRequestCallback post_request_action);
1044
1057 bool sendHAReset();
1058
1059public:
1060
1066 data::ConstElementPtr processScopes(const std::vector<std::string>& scopes);
1067
1072
1096 const std::string& state);
1097
1115
1132
1139
1140protected:
1141
1151 void asyncSyncCompleteNotify(http::HttpClient& http_client,
1152 const HAConfig::PeerConfigPtr& remote_config,
1153 PostRequestCallback post_request_action);
1154
1155public:
1156
1170 data::ConstElementPtr processSyncCompleteNotify(const unsigned int origin_id);
1171
1180
1188
1196
1202 void stopClientAndListener();
1203
1204protected:
1205
1221 int& rcode);
1222
1232 bool clientConnectHandler(const boost::system::error_code& ec, int tcp_native_fd);
1233
1239 bool clientHandshakeHandler(const boost::system::error_code&) {
1240 return (true);
1241 }
1242
1259 void socketReadyHandler(int tcp_native_fd);
1260
1268 void clientCloseHandler(int tcp_native_fd);
1269
1271 unsigned int id_;
1272
1276
1279
1282
1285
1288
1292
1295
1298
1301
1318 template<typename QueryPtrType>
1319 bool leaseUpdateComplete(QueryPtrType& query,
1320 const hooks::ParkingLotHandlePtr& parking_lot);
1321
1327 template<typename QueryPtrType>
1328 void updatePendingRequest(QueryPtrType& query);
1329
1334 size_t pendingRequestSize();
1335
1345 template<typename QueryPtrType>
1346 int getPendingRequest(const QueryPtrType& query);
1347
1348private:
1367 template<typename QueryPtrType>
1368 bool leaseUpdateCompleteInternal(QueryPtrType& query,
1369 const hooks::ParkingLotHandlePtr& parking_lot);
1370
1378 template<typename QueryPtrType>
1379 void updatePendingRequestInternal(QueryPtrType& query);
1380
1391 template<typename QueryPtrType>
1392 int getPendingRequestInternal(const QueryPtrType& query);
1393
1395 std::mutex mutex_;
1396
1405 std::map<boost::shared_ptr<dhcp::Pkt>, int> pending_requests_;
1406
1407protected:
1408
1415
1424};
1425
1427typedef boost::shared_ptr<HAService> HAServicePtr;
1428
1429} // end of namespace isc::ha
1430} // end of namespace isc
1431
1432#endif
static const unsigned int HA_LOCAL_COMMAND
The network state is being altered by an HA internal command.
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.
boost::shared_ptr< PeerConfig > PeerConfigPtr
Pointer to the server's configuration.
Definition ha_config.h:242
Holds associations between objects and HA relationships.
High availability service.
Definition ha_service.h:52
static const int HA_MAINTENANCE_START_EVT
ha-maintenance-start command received.
Definition ha_service.h:71
bool inScope(dhcp::Pkt4Ptr &query4)
Checks if the DHCPv4 query should be processed by this server.
void adjustNetworkState()
Enables or disables network state depending on the served scopes.
void stopClientAndListener()
Stop the client and(or) listener instances.
int getNormalState() const
Returns normal operation state for the current configuration.
bool shouldQueueLeaseUpdates(const HAConfig::PeerConfigPtr &peer_config) const
Checks if the lease updates should be queued.
static const int HA_HEARTBEAT_COMPLETE_EVT
Finished heartbeat command.
Definition ha_service.h:56
void asyncSendHAReset(http::HttpClient &http_client, const HAConfig::PeerConfigPtr &remote_config, PostRequestCallback post_request_action)
Sends ha-reset command to partner asynchronously.
bool clientConnectHandler(const boost::system::error_code &ec, int tcp_native_fd)
HttpClient connect callback handler.
void asyncSyncLeases()
Asynchronously reads leases from a peer and updates local lease database.
bool isMaintenanceCanceled() const
Convenience method checking if the current state is a result of canceling the maintenance.
data::ConstElementPtr processMaintenanceCancel()
Processes ha-maintenance-cancel command and returns a response.
void checkPermissionsClientAndListener()
Check client and(or) listener current thread permissions to perform thread pool state transition.
bool shouldReclaim(const dhcp::Lease4Ptr &lease4) const
Checks if the lease should be reclaimed by this server.
void asyncSendLeaseUpdate(const QueryPtrType &query, const HAConfig::PeerConfigPtr &config, const data::ConstElementPtr &command, const hooks::ParkingLotHandlePtr &parking_lot)
Asynchronously sends lease update to the peer.
void verboseTransition(const unsigned state)
Transitions to a desired state and logs it.
bool sendLeaseUpdatesFromBacklog()
Attempts to send all lease updates from the backlog synchronously.
config::CmdHttpListenerPtr listener_
HTTP listener instance used to receive and respond to HA commands and lease updates.
void clientCloseHandler(int tcp_native_fd)
HttpClient close callback handler.
bool leaseUpdateComplete(QueryPtrType &query, const hooks::ParkingLotHandlePtr &parking_lot)
Handle last pending request for this query.
HAConfigPtr config_
Pointer to the HA hooks library configuration.
data::ConstElementPtr processMaintenanceStart()
Processes ha-maintenance-start command and returns a response.
unsigned int id_
Unique service id.
HAServerType server_type_
DHCP server type.
bool sync_complete_notified_
An indicator that a partner sent ha-sync-complete-notify command.
bool shouldTerminate() const
Indicates if the server should transition to the terminated state.
data::ConstElementPtr processScopes(const std::vector< std::string > &scopes)
Processes ha-scopes command and returns a response.
dhcp::NetworkStatePtr network_state_
Pointer to the state of the DHCP service (enabled/disabled).
data::ConstElementPtr processSynchronize(const std::string &server_name, const unsigned int max_period)
Processes ha-sync command and returns a response.
void scheduleHeartbeat()
Schedules asynchronous heartbeat to a peer if it is not scheduled.
void asyncSyncCompleteNotify(http::HttpClient &http_client, const HAConfig::PeerConfigPtr &remote_config, PostRequestCallback post_request_action)
Schedules asynchronous "ha-sync-complete-notify" command to the specified server.
QueryFilter query_filter_
Selects queries to be processed/dropped.
static const int HA_MAINTENANCE_NOTIFY_EVT
ha-maintenance-notify command received.
Definition ha_service.h:68
static const int HA_SYNCED_PARTNER_UNAVAILABLE_EVT
The heartbeat command failed after receiving ha-sync-complete-notify command from the partner.
Definition ha_service.h:78
data::ConstElementPtr processMaintenanceNotify(const bool cancel, const std::string &state)
Processes ha-maintenance-notify command and returns a response.
void conditionalLogPausedState() const
Logs if the server is paused in the current state.
bool unpause()
Unpauses the HA state machine with logging.
static const int HA_CONTROL_RESULT_MAINTENANCE_NOT_ALLOWED
Control result returned in response to ha-maintenance-notify.
Definition ha_service.h:81
void serveDefaultScopes()
Instructs the HA service to serve default scopes.
size_t asyncSendLeaseUpdates(const dhcp::Pkt4Ptr &query, const dhcp::Lease4CollectionPtr &leases, const dhcp::Lease4CollectionPtr &deleted_leases, const hooks::ParkingLotHandlePtr &parking_lot)
Schedules asynchronous IPv4 leases updates.
size_t pendingRequestSize()
Get the number of entries in the pending request map.
static const int HA_SYNCING_SUCCEEDED_EVT
Lease database synchronization succeeded.
Definition ha_service.h:65
bool sendHAReset()
Sends ha-reset command to partner synchronously.
std::function< void(const bool, const std::string &, const int)> PostRequestCallback
Callback invoked when request was sent and a response received or an error occurred.
Definition ha_service.h:95
asiolink::IOServicePtr io_service_
Pointer to the IO service object shared between this hooks library and the DHCP server.
void localDisableDHCPService()
Disables local DHCP service.
CommunicationStatePtr communication_state_
Holds communication state with a peer.
void logFailedLeaseUpdates(const dhcp::PktPtr &query, const data::ConstElementPtr &args) const
Log failed lease updates.
bool clientHandshakeHandler(const boost::system::error_code &)
HttpClient handshake callback handler.
LeaseUpdateBacklog lease_update_backlog_
Backlog of DHCP lease updates.
virtual ~HAService()
Destructor.
static const int HA_SYNCING_FAILED_EVT
Lease database synchronization failed.
Definition ha_service.h:62
static const int HA_MAINTENANCE_CANCEL_EVT
ha-maintenance-cancel command received.
Definition ha_service.h:74
void asyncSendLeaseUpdatesFromBacklog(http::HttpClient &http_client, const HAConfig::PeerConfigPtr &remote_config, PostRequestCallback post_request_action)
Sends lease updates from backlog to partner asynchronously.
data::ConstElementPtr processHeartbeat()
Processes ha-heartbeat command and returns a response.
void asyncSyncLeasesInternal(http::HttpClient &http_client, const HAConfig::PeerConfigPtr &remote_config, const unsigned int max_period, const dhcp::LeasePtr &last_lease, PostSyncCallback post_sync_action, const bool dhcp_disabled)
Implements fetching one page of leases during synchronization.
data::ConstElementPtr processHAReset()
Processes ha-reset command and returns a response.
size_t asyncSendSingleLeaseUpdate(const dhcp::Pkt4Ptr &query, const dhcp::Lease4Ptr &lease, const hooks::ParkingLotHandlePtr &parking_lot)
Schedules an asynchronous IPv4 lease update.
void asyncSendHeartbeat()
Starts asynchronous heartbeat to a peer.
bool isPartnerStateInvalid() const
Indicates if the partner's state is invalid.
void startClientAndListener()
Start the client and(or) listener instances.
data::ConstElementPtr verifyAsyncResponse(const http::HttpResponsePtr &response, int &rcode)
Checks if the response is valid or contains an error.
void resumeClientAndListener()
Resumes client and(or) listener thread pool operations.
data::ConstElementPtr processStatusGet() const
Processes status-get command and returns a response.
int getPendingRequest(const QueryPtrType &query)
Get the number of scheduled requests for a given query.
LeaseSyncFilter lease_sync_filter_
Lease synchronization filter used in hub-and-spoke model.
int synchronize(std::string &status_message, const HAConfig::PeerConfigPtr &remote_config, const unsigned int max_period)
Synchronizes lease database with a partner.
bool shouldSendLeaseUpdates(const HAConfig::PeerConfigPtr &peer_config) const
Checks if the lease updates should be sent as result of leases allocation or release.
void serveFailoverScopes()
Instructs the HA service to serve failover scopes.
void localEnableDHCPService()
Enables local DHCP service.
static const int HA_LEASE_UPDATES_COMPLETE_EVT
Finished lease updates commands.
Definition ha_service.h:59
HAService(const unsigned int id, const asiolink::IOServicePtr &io_service, const dhcp::NetworkStatePtr &network_state, const HAConfigPtr &config, const HAServerType &server_type=HAServerType::DHCPv4)
Constructor.
Definition ha_service.cc:76
HAServerType getServerType() const
Returns HA server type used in object construction.
Definition ha_service.h:133
void socketReadyHandler(int tcp_native_fd)
IfaceMgr external socket ready callback handler.
http::HttpClientPtr client_
HTTP client instance used to send HA commands and lease updates.
void updatePendingRequest(QueryPtrType &query)
Update pending request counter for this query.
bool shouldPartnerDown() const
Indicates if the server should transition to the partner down state.
void startHeartbeat()
Unconditionally starts one heartbeat to a peer.
data::ConstElementPtr processSyncCompleteNotify(const unsigned int origin_id)
Process ha-sync-complete-notify command and returns a response.
data::ConstElementPtr processContinue()
Processes ha-continue command and returns a response.
void asyncDisableDHCPService(http::HttpClient &http_client, const HAConfig::PeerConfigPtr &remote_config, const unsigned int max_period, PostRequestCallback post_request_action)
Schedules asynchronous "dhcp-disable" command to the specified server.
void pauseClientAndListener()
Pauses client and(or) listener thread pool operations.
std::function< void(const bool, const std::string &, const bool)> PostSyncCallback
Callback invoked when lease database synchronization is complete.
Definition ha_service.h:104
static const int HA_WAITING_TO_TERMINATED_ST_DELAY_MINUTES
A delay in minutes to transition from the waiting to terminated state when the partner remains in ter...
Definition ha_service.h:85
void asyncEnableDHCPService(http::HttpClient &http_client, const HAConfig::PeerConfigPtr &remote_config, PostRequestCallback post_request_action)
Schedules asynchronous "dhcp-enable" command to the specified server.
Checks if a lease fetched from the other server should be synchronized into the local lease database.
Queue holding a backlog of unsent lease updates.
DHCP query filtering class.
Implements a finite state machine.
virtual void defineEvents()
Populates the set of events.
virtual void verifyEvents()
Validates the contents of the set of events.
virtual void defineStates()
Populates the set of states.
static const int SM_DERIVED_EVENT_MIN
Value at which custom events in a derived class should begin.
boost::shared_ptr< CmdHttpListener > CmdHttpListenerPtr
Defines a shared pointer to CmdHttpListener.
boost::shared_ptr< const Element > ConstElementPtr
Definition data.h:30
boost::shared_ptr< isc::dhcp::Pkt > PktPtr
A pointer to either Pkt4 or Pkt6 packet.
Definition pkt.h:999
boost::shared_ptr< Lease4Collection > Lease4CollectionPtr
A shared pointer to the collection of IPv4 leases.
Definition lease.h:523
boost::shared_ptr< Pkt4 > Pkt4Ptr
A pointer to Pkt4 object.
Definition pkt4.h:556
boost::shared_ptr< Lease6 > Lease6Ptr
Pointer to a Lease6 structure.
Definition lease.h:528
boost::shared_ptr< Lease > LeasePtr
Pointer to the lease object.
Definition lease.h:25
boost::shared_ptr< NetworkState > NetworkStatePtr
Pointer to the NetworkState object.
boost::shared_ptr< Lease6Collection > Lease6CollectionPtr
A shared pointer to the collection of IPv6 leases.
Definition lease.h:696
boost::shared_ptr< Pkt6 > Pkt6Ptr
A pointer to Pkt6 packet.
Definition pkt6.h:31
boost::shared_ptr< Lease4 > Lease4Ptr
Pointer to a Lease4 structure.
Definition lease.h:315
boost::shared_ptr< CommunicationState > CommunicationStatePtr
Type of the pointer to the CommunicationState object.
HARelationshipMapper< HAService > HAServiceMapper
Type of an object mapping HAService to relationships.
Definition ha_service.h:42
boost::shared_ptr< HAServiceMapper > HAServiceMapperPtr
Pointer to an object mapping HAService to relationships.
Definition ha_service.h:45
boost::shared_ptr< HAConfig > HAConfigPtr
Pointer to the High Availability configuration structure.
Definition ha_config.h:37
HAServerType
Lists possible server types for which HA service is created.
boost::shared_ptr< HAService > HAServicePtr
Pointer to the HAService class.
boost::shared_ptr< ParkingLotHandle > ParkingLotHandlePtr
Pointer to the parking lot handle.
boost::shared_ptr< HttpClient > HttpClientPtr
Defines a pointer to an HttpClient instance.
boost::shared_ptr< HttpResponse > HttpResponsePtr
Pointer to the HttpResponse object.
Definition response.h:81
Defines the logger used by the top-level component of kea-lfc.
This file defines the class StateModel.