Kea  1.9.9-git
cfg_subnets4.h
Go to the documentation of this file.
1 // Copyright (C) 2014-2019 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 CFG_SUBNETS4_H
8 #define CFG_SUBNETS4_H
9 
10 #include <asiolink/io_address.h>
11 #include <cc/cfg_to_element.h>
12 #include <dhcp/pkt4.h>
14 #include <dhcpsrv/subnet.h>
15 #include <dhcpsrv/subnet_id.h>
17 #include <boost/shared_ptr.hpp>
18 #include <string>
19 
20 namespace isc {
21 namespace dhcp {
22 
34 public:
35 
42  void add(const Subnet4Ptr& subnet);
43 
52  Subnet4Ptr replace(const Subnet4Ptr& subnet);
53 
59  void del(const ConstSubnet4Ptr& subnet);
60 
66  void del(const SubnetID& subnet_id);
67 
109  void merge(CfgOptionDefPtr cfg_def, CfgSharedNetworks4Ptr networks,
110  CfgSubnets4& other);
111 
119  const Subnet4Collection* getAll() const {
120  return (&subnets_);
121  }
122 
138  ConstSubnet4Ptr getBySubnetId(const SubnetID& subnet_id) const;
139 
155  ConstSubnet4Ptr getByPrefix(const std::string& subnet_prefix) const;
156 
163  bool hasSubnetWithServerId(const asiolink::IOAddress& server_id) const;
164 
171  static SubnetSelector initSelector(const Pkt4Ptr& query);
172 
220  Subnet4Ptr selectSubnet(const SubnetSelector& selector) const;
221 
228  Subnet4Ptr getSubnet(const SubnetID id) const;
229 
251  const ClientClasses& client_classes
252  = ClientClasses()) const;
253 
275  Subnet4Ptr selectSubnet(const std::string& iface,
276  const ClientClasses& client_classes) const;
277 
297  Subnet4Ptr
298  selectSubnet4o6(const SubnetSelector& selector) const;
299 
307  void updateStatistics();
308 
315  void removeStatistics();
316 
320  virtual isc::data::ElementPtr toElement() const;
321 
322 private:
323 
325  Subnet4Collection subnets_;
326 
327 };
328 
330 
331 typedef boost::shared_ptr<CfgSubnets4> CfgSubnets4Ptr;
333 
335 typedef boost::shared_ptr<const CfgSubnets4> ConstCfgSubnets4Ptr;
336 
338 
339 }
340 }
341 
342 #endif // CFG_SUBNETS4_H
Subnet4Ptr replace(const Subnet4Ptr &subnet)
Replaces subnet in the configuration.
Definition: cfg_subnets4.cc:45
void merge(CfgOptionDefPtr cfg_def, CfgSharedNetworks4Ptr networks, CfgSubnets4 &other)
Merges specified subnet configuration into this configuration.
Definition: cfg_subnets4.cc:88
const Subnet4Collection * getAll() const
Returns pointer to the collection of all IPv4 subnets.
Definition: cfg_subnets4.h:119
static SubnetSelector initSelector(const Pkt4Ptr &query)
Build selector from a client's message.
ConstSubnet4Ptr getByPrefix(const std::string &subnet_prefix) const
Returns const pointer to a subnet which matches the specified prefix in the canonical form...
boost::shared_ptr< Subnet4 > Subnet4Ptr
A pointer to a Subnet4 object.
Definition: subnet.h:522
void add(const Subnet4Ptr &subnet)
Adds new subnet to the configuration.
Definition: cfg_subnets4.cc:27
boost::shared_ptr< Element > ElementPtr
Definition: data.h:20
boost::shared_ptr< CfgOptionDef > CfgOptionDefPtr
Non-const pointer.
boost::shared_ptr< CfgSubnets4 > CfgSubnets4Ptr
Non-const pointer.
Definition: cfg_subnets4.h:332
Subnet4Ptr selectSubnet4o6(const SubnetSelector &selector) const
Attempts to do subnet selection based on DHCP4o6 information.
boost::shared_ptr< const CfgSubnets4 > ConstCfgSubnets4Ptr
Const pointer.
Definition: cfg_subnets4.h:335
Subnet selector used to specify parameters used to select a subnet.
boost::shared_ptr< CfgSharedNetworks4 > CfgSharedNetworks4Ptr
Pointer to the configuration of IPv4 shared networks.
Subnet4Ptr getSubnet(const SubnetID id) const
Returns subnet with specified subnet-id value.
boost::multi_index_container< Subnet4Ptr, boost::multi_index::indexed_by< boost::multi_index::ordered_unique< boost::multi_index::tag< SubnetSubnetIdIndexTag >, boost::multi_index::const_mem_fun< Subnet, SubnetID,&Subnet::getID > >, boost::multi_index::ordered_unique< boost::multi_index::tag< SubnetPrefixIndexTag >, boost::multi_index::const_mem_fun< Subnet, std::string,&Subnet::toText > >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< SubnetServerIdIndexTag >, boost::multi_index::const_mem_fun< Network4, asiolink::IOAddress,&Network4::getServerId > >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< SubnetModificationTimeIndexTag >, boost::multi_index::const_mem_fun< data::BaseStampedElement, boost::posix_time::ptime,&data::BaseStampedElement::getModificationTime > > >> Subnet4Collection
A collection of Subnet4 objects.
Definition: subnet.h:867
Subnet4Ptr selectSubnet(const SubnetSelector &selector) const
Returns a pointer to the selected subnet.
Abstract class for configuration Cfg_* classes.
virtual isc::data::ElementPtr toElement() const
Unparse a configuration object.
boost::shared_ptr< Pkt4 > Pkt4Ptr
A pointer to Pkt4 object.
Definition: pkt4.h:544
Holds subnets configured for the DHCPv4 server.
Definition: cfg_subnets4.h:33
Defines the logger used by the top-level component of kea-dhcp-ddns.
boost::shared_ptr< const Subnet4 > ConstSubnet4Ptr
A const pointer to a Subnet4 object.
Definition: subnet.h:516
ConstSubnet4Ptr getBySubnetId(const SubnetID &subnet_id) const
Returns const pointer to a subnet identified by the specified subnet identifier.
void removeStatistics()
Removes statistics.
bool hasSubnetWithServerId(const asiolink::IOAddress &server_id) const
Checks if specified server identifier has been specified for any subnet.
void del(const ConstSubnet4Ptr &subnet)
Removes subnet from the configuration.
Definition: cfg_subnets4.cc:66
Container for storing client class names.
Definition: classify.h:43
void updateStatistics()
Updates statistics.
uint32_t SubnetID
Unique identifier for a subnet (both v4 and v6)
Definition: lease.h:24