123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- // Copyright (C) 2014-2015 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #include <config.h>
- #include <dhcpsrv/cfg_hosts.h>
- #include <dhcpsrv/hosts_log.h>
- #include <exceptions/exceptions.h>
- #include <ostream>
- using namespace isc::asiolink;
- namespace isc {
- namespace dhcp {
- ConstHostCollection
- CfgHosts::getAll(const HWAddrPtr& hwaddr, const DuidPtr& duid) const {
- // Do not issue logging message here because it will be logged by
- // the getAllInternal method.
- ConstHostCollection collection;
- getAllInternal<ConstHostCollection>(hwaddr, duid, collection);
- return (collection);
- }
- HostCollection
- CfgHosts::getAll(const HWAddrPtr& hwaddr, const DuidPtr& duid) {
- // Do not issue logging message here because it will be logged by
- // the getAllInternal method.
- HostCollection collection;
- getAllInternal<HostCollection>(hwaddr, duid, collection);
- return (collection);
- }
- ConstHostCollection
- CfgHosts::getAll4(const IOAddress& address) const {
- // Do not issue logging message here because it will be logged by
- // the getAllInternal4 method.
- ConstHostCollection collection;
- getAllInternal4<ConstHostCollection>(address, collection);
- return (collection);
- }
- HostCollection
- CfgHosts::getAll4(const IOAddress& address) {
- // Do not issue logging message here because it will be logged by
- // the getAllInternal4 method.
- HostCollection collection;
- getAllInternal4<HostCollection>(address, collection);
- return (collection);
- }
- ConstHostCollection
- CfgHosts::getAll6(const IOAddress& address) const {
- // Do not issue logging message here because it will be logged by
- // the getAllInternal6 method.
- ConstHostCollection collection;
- getAllInternal6<ConstHostCollection>(address, collection);
- return (collection);
- }
- HostCollection
- CfgHosts::getAll6(const IOAddress& address) {
- // Do not issue logging message here because it will be logged by
- // the getAllInternal6 method.
- HostCollection collection;
- getAllInternal6<HostCollection>(address, collection);
- return (collection);
- }
- template<typename Storage>
- void
- CfgHosts::getAllInternal(const std::vector<uint8_t>& identifier,
- const Host::IdentifierType& identifier_type,
- Storage& storage) const {
- // We will need to transform the identifier into the textual format.
- // Until we do it, we mark it as invalid.
- std::string identifier_text = "(invalid)";
- if (!identifier.empty()) {
- try {
- // Use Host object to find the textual form of the identifier.
- // This may throw exception if the identifier is invalid.
- Host host(&identifier[0], identifier.size(), identifier_type,
- SubnetID(0), SubnetID(0), IOAddress::IPV4_ZERO_ADDRESS());
- identifier_text = host.getIdentifierAsText();
- } catch (...) {
- // Suppress exception and keep using (invalid) as an
- // identifier. We will log that the identifier is
- // invalid and return.
- }
- }
- // This will log that we're invoking this function with the specified
- // identifier. The identifier may also be marked as (invalid) if it
- // had 0 length or its type is unsupported.
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_IDENTIFIER)
- .arg(identifier_text);
- // Do nothing if the identifier specified is invalid.
- if (identifier_text == "(invalid)") {
- return;
- }
- // Use the identifier and identifier type as a composite key.
- const HostContainerIndex0& idx = hosts_.get<0>();
- boost::tuple<const std::vector<uint8_t>, const Host::IdentifierType> t =
- boost::make_tuple(identifier, identifier_type);
- // Append each Host object to the storage.
- for (HostContainerIndex0::iterator host = idx.lower_bound(t); host != idx.upper_bound(t);
- ++host) {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
- HOSTS_CFG_GET_ALL_IDENTIFIER_HOST)
- .arg(identifier_text)
- .arg((*host)->toText());
- storage.push_back(*host);
- }
- // Log how many hosts have been found.
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_IDENTIFIER_COUNT)
- .arg(identifier_text)
- .arg(storage.size());
- }
- template<typename Storage>
- void
- CfgHosts::getAllInternal(const HWAddrPtr& hwaddr, const DuidPtr& duid,
- Storage& storage) const {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_HWADDR_DUID)
- .arg(hwaddr ? hwaddr->toText() : "(no-hwaddr)")
- .arg(duid ? duid->toText() : "(no-duid)");
- // Get hosts using HW address.
- if (hwaddr) {
- getAllInternal<Storage>(hwaddr->hwaddr_, Host::IDENT_HWADDR, storage);
- }
- // Get hosts using DUID.
- if (duid) {
- getAllInternal<Storage>(duid->getDuid(), Host::IDENT_DUID, storage);
- }
- }
- template<typename Storage>
- void
- CfgHosts::getAllInternal4(const IOAddress& address, Storage& storage) const {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_ADDRESS4)
- .arg(address.toText());
- // Must not specify address other than IPv4.
- if (!address.isV4()) {
- isc_throw(BadHostAddress, "must specify an IPv4 address when searching"
- " for a host, specified address was " << address);
- }
- // Search for the Host using the reserved IPv4 address as a key.
- const HostContainerIndex1& idx = hosts_.get<1>();
- HostContainerIndex1Range r = idx.equal_range(address);
- // Append each Host object to the storage.
- for (HostContainerIndex1::iterator host = r.first; host != r.second;
- ++host) {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
- HOSTS_CFG_GET_ALL_ADDRESS4_HOST)
- .arg(address.toText())
- .arg((*host)->toText());
- storage.push_back(*host);
- }
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_ADDRESS4_COUNT)
- .arg(address.toText())
- .arg(storage.size());
- }
- template<typename Storage>
- void
- CfgHosts::getAllInternal6(const IOAddress& address, Storage& storage) const {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_ADDRESS6)
- .arg(address.toText());
- // Must not specify address other than IPv6.
- if (!address.isV6()) {
- isc_throw(BadHostAddress, "must specify an IPv6 address when searching"
- " for a host, specified address was " << address);
- }
- // Search for the Host using the reserved IPv6 address as a key.
- const HostContainerIndex1& idx = hosts_.get<1>();
- HostContainerIndex1Range r = idx.equal_range(address);
- // Append each Host object to the storage.
- for (HostContainerIndex1::iterator host = r.first; host != r.second;
- ++host) {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
- HOSTS_CFG_GET_ALL_ADDRESS6_HOST)
- .arg(address.toText())
- .arg((*host)->toText());
- storage.push_back(*host);
- }
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_ADDRESS6_COUNT)
- .arg(address.toText())
- .arg(storage.size());
- }
- ConstHostPtr
- CfgHosts::get4(const SubnetID& subnet_id, const HWAddrPtr& hwaddr,
- const DuidPtr& duid) const {
- // Do not log here because getHostInternal logs.
- // The false value indicates that it is an IPv4 subnet.
- return (getHostInternal(subnet_id, false, hwaddr, duid));
- }
- HostPtr
- CfgHosts::get4(const SubnetID& subnet_id, const HWAddrPtr& hwaddr,
- const DuidPtr& duid) {
- // Do not log here because getHostInternal logs.
- // The false value indicates that it is an IPv4 subnet.
- return (getHostInternal(subnet_id, false, hwaddr, duid));
- }
- ConstHostPtr
- CfgHosts::get4(const SubnetID& subnet_id, const IOAddress& address) const {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS4)
- .arg(subnet_id).arg(address.toText());
- ConstHostCollection hosts = getAll4(address);
- for (ConstHostCollection::const_iterator host = hosts.begin();
- host != hosts.end(); ++host) {
- if ((*host)->getIPv4SubnetID() == subnet_id) {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
- HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS4_HOST)
- .arg(subnet_id)
- .arg(address.toText())
- .arg((*host)->toText());
- return (*host);
- }
- }
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS4_NULL)
- .arg(subnet_id).arg(address.toText());
- return (ConstHostPtr());
- }
- ConstHostPtr
- CfgHosts::get6(const SubnetID& subnet_id, const DuidPtr& duid,
- const HWAddrPtr& hwaddr) const {
- // Do not log here because getHostInternal logs.
- // The true value indicates that it is an IPv6 subnet.
- return (getHostInternal(subnet_id, true, hwaddr, duid));
- }
- HostPtr
- CfgHosts::get6(const SubnetID& subnet_id, const DuidPtr& duid,
- const HWAddrPtr& hwaddr) {
- // Do not log here because getHostInternal logs.
- // The true value indicates that it is an IPv6 subnet.
- return (getHostInternal(subnet_id, true, hwaddr, duid));
- }
- ConstHostPtr
- CfgHosts::get6(const IOAddress&, const uint8_t) const {
- isc_throw(isc::NotImplemented,
- "get6(prefix, len) const is not implemented");
- }
- HostPtr
- CfgHosts::get6(const IOAddress&, const uint8_t) {
- isc_throw(isc::NotImplemented, "get6(prefix, len) is not implemented");
- }
- ConstHostPtr
- CfgHosts::get6(const SubnetID& subnet_id,
- const asiolink::IOAddress& address) const {
- // Do not log here because getHostInternal6 logs.
- return (getHostInternal6<ConstHostPtr, ConstHostCollection>(subnet_id, address));
- }
- HostPtr
- CfgHosts::get6(const SubnetID& subnet_id,
- const asiolink::IOAddress& address) {
- // Do not log here because getHostInternal6 logs.
- return (getHostInternal6<HostPtr, HostCollection>(subnet_id, address));
- }
- template<typename ReturnType, typename Storage>
- ReturnType
- CfgHosts::getHostInternal6(const SubnetID& subnet_id,
- const asiolink::IOAddress& address) const {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS6)
- .arg(subnet_id).arg(address.toText());
- Storage storage;
- getAllInternal6<Storage>(subnet_id, address, storage);
- switch (storage.size()) {
- case 0:
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
- HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS6_NULL)
- .arg(subnet_id)
- .arg(address.toText());
- return (HostPtr());
- case 1:
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
- HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS6_HOST)
- .arg(subnet_id)
- .arg(address.toText())
- .arg((*storage.begin())->toText());
- return (*storage.begin());
- default:
- isc_throw(DuplicateHost, "more than one reservation found"
- " for the host belonging to the subnet with id '"
- << subnet_id << "' and using the address '"
- << address.toText() << "'");
- }
- }
- template<typename Storage>
- void
- CfgHosts::getAllInternal6(const SubnetID& subnet_id,
- const asiolink::IOAddress& address,
- Storage& storage) const {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_SUBNET_ID_ADDRESS6)
- .arg(subnet_id).arg(address.toText());
- // Must not specify address other than IPv6.
- if (!address.isV6()) {
- isc_throw(BadHostAddress, "must specify an IPv6 address when searching"
- " for a host, specified address was " << address);
- }
- // Let's get all reservations that match subnet_id, address.
- const HostContainer6Index1& idx = hosts6_.get<1>();
- HostContainer6Index1Range r = make_pair(idx.lower_bound(boost::make_tuple(subnet_id, address)),
- idx.upper_bound(boost::make_tuple(subnet_id, address)));
- // For each IPv6 reservation, add the host to the results list. Fortunately,
- // in all sane cases, there will be only one such host. (Each host can have
- // multiple addresses reserved, but for each (address, subnet_id) there should
- // be at most one host reserving it).
- for(HostContainer6Index1::iterator resrv = r.first; resrv != r.second; ++resrv) {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
- HOSTS_CFG_GET_ALL_SUBNET_ID_ADDRESS6_HOST)
- .arg(subnet_id)
- .arg(address.toText())
- .arg(resrv->host_);
- storage.push_back(resrv->host_);
- }
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
- HOSTS_CFG_GET_ALL_SUBNET_ID_ADDRESS6_COUNT)
- .arg(subnet_id)
- .arg(address.toText())
- .arg(storage.size());
- }
- HostPtr
- CfgHosts::getHostInternal(const SubnetID& subnet_id, const bool subnet6,
- const HWAddrPtr& hwaddr, const DuidPtr& duid) const {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ONE_SUBNET_ID_HWADDR_DUID)
- .arg(subnet6 ? "IPv6" : "IPv4")
- .arg(subnet_id)
- .arg(hwaddr ? hwaddr->toText() : "(no-hwaddr)")
- .arg(duid ? duid->toText() : "(no-duid)");
- // Get all hosts for the HW address and DUID. This may return multiple hosts
- // for different subnets, but the number of hosts returned should be low
- // because one host presumably doesn't show up in many subnets.
- HostCollection hosts;
- getAllInternal<HostCollection>(hwaddr, duid, hosts);
- HostPtr host;
- // Iterate over the returned hosts and select those for which the
- // subnet id matches.
- for (HostCollection::const_iterator host_it = hosts.begin();
- host_it != hosts.end(); ++host_it) {
- // Check if this is IPv4 subnet or IPv6 subnet.
- SubnetID host_subnet_id = subnet6 ? (*host_it)->getIPv6SubnetID() :
- (*host_it)->getIPv4SubnetID();
- if (subnet_id == host_subnet_id) {
- // If this is the first occurrence of the host for this subnet,
- // remember it. But, if we find that this is second @c Host object
- // for the same client, it is a misconfiguration. Most likely,
- // the administrator has specified one reservation for a HW
- // address and another one for the DUID, which gives an ambiguous
- // result, and we don't know which reservation we should choose.
- // Therefore, throw an exception.
- if (!host) {
- host = *host_it;
- } else {
- isc_throw(DuplicateHost, "more than one reservation found"
- " for the host belonging to the subnet with id '"
- << subnet_id << "' and using the HW address '"
- << (hwaddr ? hwaddr->toText(false) : "(null)")
- << "' and DUID '"
- << (duid ? duid->toText() : "(null)")
- << "'");
- }
- }
- }
- if (host) {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
- HOSTS_CFG_GET_ONE_SUBNET_ID_HWADDR_DUID)
- .arg(subnet_id)
- .arg(hwaddr ? hwaddr->toText() : "(no-hwaddr)")
- .arg(duid ? duid->toText() : "(no-duid)")
- .arg(host->toText());
- } else {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
- HOSTS_CFG_GET_ONE_SUBNET_ID_HWADDR_DUID_NULL)
- .arg(subnet_id)
- .arg(hwaddr ? hwaddr->toText() : "(no-hwaddr)")
- .arg(duid ? duid->toText() : "(no-duid)");
- }
- return (host);
- }
- void
- CfgHosts::add(const HostPtr& host) {
- LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_ADD_HOST)
- .arg(host ? host->toText() : "(no-host)");
- // Sanity check that the host is non-null.
- if (!host) {
- isc_throw(BadValue, "specified host object must not be NULL when it"
- " is added to the configuration");
- }
- // At least one subnet ID must be non-zero
- if (host->getIPv4SubnetID() == 0 && host->getIPv6SubnetID() == 0) {
- isc_throw(BadValue, "must not use both IPv4 and IPv6 subnet ids of"
- " 0 when adding new host reservation");
- }
- add4(host);
- add6(host);
- }
- void
- CfgHosts::add4(const HostPtr& host) {
- /// @todo This may need further sanity checks.
- HWAddrPtr hwaddr = host->getHWAddress();
- DuidPtr duid = host->getDuid();
- // There should be at least one resource reserved: hostname, IPv4
- // address, IPv6 address or prefix.
- if (host->getHostname().empty() &&
- (host->getIPv4Reservation().isV4Zero()) &&
- (!host->hasIPv6Reservation())) {
- std::ostringstream s;
- if (hwaddr) {
- s << "for DUID: " << hwaddr->toText();
- } else if (duid) {
- s << "for HW address: " << duid->toText();
- }
- isc_throw(BadValue, "specified reservation " << s
- << " must include at least one resource, i.e. "
- "hostname, IPv4 address or IPv6 address/prefix");
- }
- // Check for duplicates for the specified IPv4 subnet.
- if ((host->getIPv4SubnetID() > 0) &&
- get4(host->getIPv4SubnetID(), hwaddr, duid)) {
- isc_throw(DuplicateHost, "failed to add new host using the HW"
- " address '" << (hwaddr ? hwaddr->toText(false) : "(null)")
- << " and DUID '" << (duid ? duid->toText() : "(null)")
- << "' to the IPv4 subnet id '" << host->getIPv4SubnetID()
- << "' as this host has already been added");
- // Check for duplicates for the specified IPv6 subnet.
- } else if (host->getIPv6SubnetID() &&
- get6(host->getIPv6SubnetID(), duid, hwaddr)) {
- isc_throw(DuplicateHost, "failed to add new host using the HW"
- " address '" << (hwaddr ? hwaddr->toText(false) : "(null)")
- << " and DUID '" << (duid ? duid->toText() : "(null)")
- << "' to the IPv6 subnet id '" << host->getIPv6SubnetID()
- << "' as this host has already been added");
- }
- // Check if the address is already reserved for the specified IPv4 subnet.
- if (!host->getIPv4Reservation().isV4Zero() &&
- (host->getIPv4SubnetID() > 0) &&
- get4(host->getIPv4SubnetID(), host->getIPv4Reservation())) {
- isc_throw(ReservedAddress, "failed to add new host using the HW"
- " address '" << (hwaddr ? hwaddr->toText(false) : "(null)")
- << " and DUID '" << (duid ? duid->toText() : "(null)")
- << "' to the IPv4 subnet id '" << host->getIPv4SubnetID()
- << "' for the address " << host->getIPv4Reservation()
- << ": There's already a reservation for this address");
- }
- /// @todo This may need further sanity checks.
- // This is a new instance - add it.
- hosts_.insert(host);
- }
- void
- CfgHosts::add6(const HostPtr& host) {
- /// @todo This may need further sanity checks.
- HWAddrPtr hwaddr = host->getHWAddress();
- DuidPtr duid = host->getDuid();
- // Get all reservations for this host.
- IPv6ResrvRange reservations = host->getIPv6Reservations();
- // Check if there are any IPv6 reservations.
- if (std::distance(reservations.first, reservations.second) == 0) {
- // If there aren't, we don't need to add this to hosts6_, which is used
- // for getting hosts by their IPv6 address reservations.
- return;
- }
- // Now for each reservation, insert corresponding (address, host) tuple.
- for (IPv6ResrvIterator it = reservations.first; it != reservations.second;
- ++it) {
- // If there's an entry for this (subnet-id, address), reject it.
- if (get6(host->getIPv6SubnetID(), it->second.getPrefix())) {
- isc_throw(DuplicateHost, "failed to add address reservation for "
- << "host using the HW address '"
- << (hwaddr ? hwaddr->toText(false) : "(null)")
- << " and DUID '" << (duid ? duid->toText() : "(null)")
- << "' to the IPv6 subnet id '" << host->getIPv6SubnetID()
- << "' for address/prefix " << it->second.getPrefix()
- << ": There's already reservation for this address/prefix");
- }
- hosts6_.insert(HostResrv6Tuple(it->second, host));
- }
- }
- } // end of namespace isc::dhcp
- } // end of namespace isc
|