Kea 2.5.8
base_host_data_source.h
Go to the documentation of this file.
1// Copyright (C) 2014-2023 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 BASE_HOST_DATA_SOURCE_H
8#define BASE_HOST_DATA_SOURCE_H
9
10#include <asiolink/io_address.h>
12#include <dhcpsrv/host.h>
14#include <boost/shared_ptr.hpp>
15
16#include <limits>
17#include <vector>
18
19namespace isc {
20namespace dhcp {
21
23class DuplicateHost : public Exception {
24public:
25 DuplicateHost(const char* file, size_t line, const char* what) :
26 isc::Exception(file, line, what) { };
27};
28
30class HostNotFound : public Exception {
31public:
32 HostNotFound(const char* file, size_t line, const char* what) :
33 isc::Exception(file, line, what) { };
34};
35
38class ReservedAddress : public Exception {
39public:
40 ReservedAddress(const char* file, size_t line, const char* what) :
41 isc::Exception(file, line, what) { };
42};
43
47public:
48 BadHostAddress(const char* file, size_t line, const char* what) :
49 isc::BadValue(file, line, what) { };
50};
51
54public:
55
61 explicit HostPageSize(const size_t page_size) : page_size_(page_size) {
62 if (page_size_ == 0) {
63 isc_throw(OutOfRange, "page size of retrieved hosts must not be 0");
64 }
65 if (page_size_ > std::numeric_limits<uint32_t>::max()) {
66 isc_throw(OutOfRange, "page size of retrieved hosts must not be greate than "
67 << std::numeric_limits<uint32_t>::max());
68 }
69 }
70
71 const size_t page_size_;
72};
73
89public:
90
100 enum IdType {
102 ID_DUID = 1
103 };
104
107
121 virtual ConstHostCollection
122 getAll(const Host::IdentifierType& identifier_type,
123 const uint8_t* identifier_begin,
124 const size_t identifier_len) const = 0;
125
134 virtual ConstHostCollection
135 getAll4(const SubnetID& subnet_id) const = 0;
136
145 virtual ConstHostCollection
146 getAll6(const SubnetID& subnet_id) const = 0;
147
160 virtual ConstHostCollection
161 getAllbyHostname(const std::string& hostname) const = 0;
162
172 virtual ConstHostCollection
173 getAllbyHostname4(const std::string& hostname, const SubnetID& subnet_id) const = 0;
174
184 virtual ConstHostCollection
185 getAllbyHostname6(const std::string& hostname, const SubnetID& subnet_id) const = 0;
186
204 virtual ConstHostCollection
205 getPage4(const SubnetID& subnet_id,
206 size_t& source_index,
207 uint64_t lower_host_id,
208 const HostPageSize& page_size) const = 0;
209
227 virtual ConstHostCollection
228 getPage6(const SubnetID& subnet_id,
229 size_t& source_index,
230 uint64_t lower_host_id,
231 const HostPageSize& page_size) const = 0;
232
249 virtual ConstHostCollection
250 getPage4(size_t& source_index,
251 uint64_t lower_host_id,
252 const HostPageSize& page_size) const = 0;
253
270 virtual ConstHostCollection
271 getPage6(size_t& source_index,
272 uint64_t lower_host_id,
273 const HostPageSize& page_size) const = 0;
274
283 virtual ConstHostCollection
284 getAll4(const asiolink::IOAddress& address) const = 0;
285
296 virtual ConstHostPtr
297 get4(const SubnetID& subnet_id,
298 const Host::IdentifierType& identifier_type,
299 const uint8_t* identifier_begin,
300 const size_t identifier_len) const = 0;
301
318 virtual ConstHostPtr
319 get4(const SubnetID& subnet_id,
320 const asiolink::IOAddress& address) const = 0;
321
345 virtual ConstHostCollection
346 getAll4(const SubnetID& subnet_id,
347 const asiolink::IOAddress& address) const = 0;
348
359 virtual ConstHostPtr
360 get6(const SubnetID& subnet_id,
361 const Host::IdentifierType& identifier_type,
362 const uint8_t* identifier_begin,
363 const size_t identifier_len) const = 0;
364
371 virtual ConstHostPtr
372 get6(const asiolink::IOAddress& prefix, const uint8_t prefix_len) const = 0;
373
381 virtual ConstHostPtr
382 get6(const SubnetID& subnet_id, const asiolink::IOAddress& address) const = 0;
383
407 virtual ConstHostCollection
408 getAll6(const SubnetID& subnet_id,
409 const asiolink::IOAddress& address) const = 0;
410
432 virtual ConstHostCollection
433 getAll6(const asiolink::IOAddress& address) const = 0;
434
445 virtual void add(const HostPtr& host) = 0;
446
455 virtual bool del(const SubnetID& subnet_id, const asiolink::IOAddress& addr) = 0;
456
468 virtual bool del4(const SubnetID& subnet_id,
469 const Host::IdentifierType& identifier_type,
470 const uint8_t* identifier_begin, const size_t identifier_len) = 0;
471
483 virtual bool del6(const SubnetID& subnet_id,
484 const Host::IdentifierType& identifier_type,
485 const uint8_t* identifier_begin, const size_t identifier_len) = 0;
486
494 virtual void update(HostPtr const& host) {
495 bool deleted(false);
496 if (host->getIPv4SubnetID() != SUBNET_ID_UNUSED) {
497 std::vector<uint8_t> const& identifier(host->getIdentifier());
498 deleted = del4(host->getIPv4SubnetID(), host->getIdentifierType(), identifier.data(),
499 identifier.size());
500 } else if (host->getIPv6SubnetID() != SUBNET_ID_UNUSED) {
501 std::vector<uint8_t> const& identifier(host->getIdentifier());
502 deleted = del6(host->getIPv6SubnetID(), host->getIdentifierType(), identifier.data(),
503 identifier.size());
504 } else {
505 isc_throw(HostNotFound, "Mandatory 'subnet-id' parameter missing.");
506 }
507 if (!deleted) {
508 isc_throw(HostNotFound, "Host not updated (not found).");
509 }
510 add(host);
511 }
512
518 virtual std::string getType() const = 0;
519
527 }
528
533 virtual void commit() {};
534
539 virtual void rollback() {};
540
559 virtual bool setIPReservationsUnique(const bool unique) = 0;
560
566 virtual bool isUnusable() {
567 return (false);
568 }
569};
570
572typedef boost::shared_ptr<BaseHostDataSource> HostDataSourcePtr;
573
575typedef std::vector<HostDataSourcePtr> HostDataSourceList;
576
577} // namespace dhcp
578} // namespace isc
579
580#endif // BASE_HOST_DATA_SOURCE_H
A generic exception that is thrown if a parameter given to a method is considered invalid in that con...
This is a base class for exceptions thrown from the DNS library module.
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
A generic exception that is thrown if a parameter given to a method would refer to or modify out-of-r...
std::map< std::string, std::string > ParameterMap
Database configuration parameter map.
Exception thrown when invalid IP address has been specified for Host.
BadHostAddress(const char *file, size_t line, const char *what)
Base interface for the classes implementing simple data source for host reservations.
virtual std::string getType() const =0
Return backend type.
virtual bool isUnusable()
Flag which indicates if the host manager has at least one unusable connection.
virtual ConstHostCollection getAll6(const asiolink::IOAddress &address) const =0
Returns all hosts having a reservation for a specified address or delegated prefix (lease) in all sub...
virtual ConstHostCollection getAllbyHostname6(const std::string &hostname, const SubnetID &subnet_id) const =0
Return all hosts with a hostname in a DHCPv6 subnet.
virtual void add(const HostPtr &host)=0
Adds a new host to the collection.
virtual ConstHostCollection getAll6(const SubnetID &subnet_id) const =0
Return all hosts in a DHCPv6 subnet.
virtual void commit()
Commit Transactions.
virtual ConstHostCollection getAllbyHostname4(const std::string &hostname, const SubnetID &subnet_id) const =0
Return all hosts with a hostname in a DHCPv4 subnet.
virtual bool del(const SubnetID &subnet_id, const asiolink::IOAddress &addr)=0
Attempts to delete hosts by (subnet-id, address)
virtual ConstHostCollection getPage4(const SubnetID &subnet_id, size_t &source_index, uint64_t lower_host_id, const HostPageSize &page_size) const =0
Returns range of hosts in a DHCPv4 subnet.
virtual ConstHostPtr get4(const SubnetID &subnet_id, const asiolink::IOAddress &address) const =0
Returns a host connected to the IPv4 subnet and having a reservation for a specified IPv4 address.
virtual ConstHostPtr get4(const SubnetID &subnet_id, const Host::IdentifierType &identifier_type, const uint8_t *identifier_begin, const size_t identifier_len) const =0
Returns a host connected to the IPv4 subnet.
virtual ConstHostCollection getAll4(const SubnetID &subnet_id, const asiolink::IOAddress &address) const =0
Returns all hosts connected to the IPv4 subnet and having a reservation for a specified address.
virtual bool del6(const SubnetID &subnet_id, const Host::IdentifierType &identifier_type, const uint8_t *identifier_begin, const size_t identifier_len)=0
Attempts to delete a host by (subnet-id6, identifier, identifier-type)
virtual bool setIPReservationsUnique(const bool unique)=0
Controls whether IP reservations are unique or non-unique.
virtual ConstHostPtr get6(const SubnetID &subnet_id, const asiolink::IOAddress &address) const =0
Returns a host connected to the IPv6 subnet and having a reservation for a specified IPv6 address or ...
virtual isc::db::DatabaseConnection::ParameterMap getParameters() const
Return backend parameters.
IdType
Specifies the type of an identifier.
virtual ConstHostCollection getPage6(size_t &source_index, uint64_t lower_host_id, const HostPageSize &page_size) const =0
Returns range of hosts.
virtual ConstHostCollection getAll4(const asiolink::IOAddress &address) const =0
Returns a collection of hosts using the specified IPv4 address.
virtual ConstHostCollection getPage4(size_t &source_index, uint64_t lower_host_id, const HostPageSize &page_size) const =0
Returns range of hosts.
virtual bool del4(const SubnetID &subnet_id, const Host::IdentifierType &identifier_type, const uint8_t *identifier_begin, const size_t identifier_len)=0
Attempts to delete a host by (subnet-id4, identifier, identifier-type)
virtual ConstHostCollection getPage6(const SubnetID &subnet_id, size_t &source_index, uint64_t lower_host_id, const HostPageSize &page_size) const =0
Returns range of hosts in a DHCPv6 subnet.
virtual ConstHostPtr get6(const SubnetID &subnet_id, const Host::IdentifierType &identifier_type, const uint8_t *identifier_begin, const size_t identifier_len) const =0
Returns a host connected to the IPv6 subnet.
virtual ConstHostPtr get6(const asiolink::IOAddress &prefix, const uint8_t prefix_len) const =0
Returns a host using the specified IPv6 prefix.
virtual ConstHostCollection getAllbyHostname(const std::string &hostname) const =0
Return all hosts with a hostname.
virtual void update(HostPtr const &host)
Attempts to update an existing host entry.
virtual ConstHostCollection getAll6(const SubnetID &subnet_id, const asiolink::IOAddress &address) const =0
Returns all hosts connected to the IPv6 subnet and having a reservation for a specified address or de...
virtual ~BaseHostDataSource()
Default destructor implementation.
virtual ConstHostCollection getAll(const Host::IdentifierType &identifier_type, const uint8_t *identifier_begin, const size_t identifier_len) const =0
Return all hosts connected to any subnet for which reservations have been made using a specified iden...
virtual void rollback()
Rollback Transactions.
virtual ConstHostCollection getAll4(const SubnetID &subnet_id) const =0
Return all hosts in a DHCPv4 subnet.
Exception thrown when the duplicate Host object is detected.
DuplicateHost(const char *file, size_t line, const char *what)
Exception thrown when a Host object is expected, but none are found.
HostNotFound(const char *file, size_t line, const char *what)
Wraps value holding size of the page with host reservations.
const size_t page_size_
Holds page size.
HostPageSize(const size_t page_size)
Constructor.
IdentifierType
Type of the host identifier.
Definition: host.h:307
Exception thrown when an address is already reserved by a Host object (DuplicateHost is same identity...
ReservedAddress(const char *file, size_t line, const char *what)
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
boost::shared_ptr< BaseHostDataSource > HostDataSourcePtr
HostDataSource pointer.
boost::shared_ptr< Host > HostPtr
Pointer to the Host object.
Definition: host.h:807
std::vector< ConstHostPtr > ConstHostCollection
Collection of the const Host objects.
Definition: host.h:813
std::vector< HostDataSourcePtr > HostDataSourceList
HostDataSource list.
uint32_t SubnetID
Defines unique IPv4 or IPv6 subnet identifier.
Definition: subnet_id.h:25
boost::shared_ptr< const Host > ConstHostPtr
Const pointer to the Host object.
Definition: host.h:810
Defines the logger used by the top-level component of kea-lfc.