123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- // Copyright (C) 2012 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 <asiolink/io_address.h>
- #include <dhcp/duid.h>
- #include <dhcpsrv/alloc_engine.h>
- #include <dhcpsrv/cfgmgr.h>
- #include <dhcpsrv/lease_mgr.h>
- #include <dhcpsrv/lease_mgr_factory.h>
- #include <dhcpsrv/memfile_lease_mgr.h>
- #include <dhcpsrv/tests/test_utils.h>
- #include <boost/shared_ptr.hpp>
- #include <boost/scoped_ptr.hpp>
- #include <gtest/gtest.h>
- #include <iostream>
- #include <sstream>
- #include <map>
- #include <time.h>
- using namespace std;
- using namespace isc;
- using namespace isc::asiolink;
- using namespace isc::dhcp;
- using namespace isc::dhcp::test;
- namespace {
- class NakedAllocEngine : public AllocEngine {
- public:
- NakedAllocEngine(AllocEngine::AllocType engine_type, unsigned int attempts)
- :AllocEngine(engine_type, attempts) {
- }
- using AllocEngine::Allocator;
- using AllocEngine::IterativeAllocator;
- };
- // empty class for now, but may be extended once Addr6 becomes bigger
- class AllocEngineTest : public ::testing::Test {
- public:
- AllocEngineTest() {
- duid_ = boost::shared_ptr<DUID>(new DUID(vector<uint8_t>(8, 0x42)));
- iaid_ = 42;
- // instantiate cfg_mgr
- CfgMgr& cfg_mgr = CfgMgr::instance();
- subnet_ = Subnet6Ptr(new Subnet6(IOAddress("2001:db8:1::"), 56, 1, 2, 3, 4));
- pool_ = Pool6Ptr(new Pool6(Pool6::TYPE_IA, IOAddress("2001:db8:1::10"),
- IOAddress("2001:db8:1::20")));
- subnet_->addPool6(pool_);
- cfg_mgr.addSubnet6(subnet_);
- factory_.create("type=memfile");
- }
- void checkLease6(const Lease6Ptr& lease) {
- // that is belongs to the right subnet
- EXPECT_EQ(lease->subnet_id_, subnet_->getID());
- EXPECT_TRUE(subnet_->inRange(lease->addr_));
- EXPECT_TRUE(subnet_->inPool(lease->addr_));
- // that it have proper parameters
- EXPECT_EQ(iaid_, lease->iaid_);
- EXPECT_EQ(subnet_->getValid(), lease->valid_lft_);
- EXPECT_EQ(subnet_->getPreferred(), lease->preferred_lft_);
- EXPECT_EQ(subnet_->getT1(), lease->t1_);
- EXPECT_EQ(subnet_->getT2(), lease->t2_);
- EXPECT_EQ(0, lease->prefixlen_); // this is IA_NA, not IA_PD
- EXPECT_TRUE(false == lease->fqdn_fwd_);
- EXPECT_TRUE(false == lease->fqdn_rev_);
- EXPECT_TRUE(*lease->duid_ == *duid_);
- // @todo: check cltt
- }
- ~AllocEngineTest() {
- factory_.destroy();
- }
- DuidPtr duid_;
- uint32_t iaid_;
- Subnet6Ptr subnet_;
- Pool6Ptr pool_;
- LeaseMgrFactory factory_;
- };
- // This test checks if the Allocation Engine can be instantiated and that it
- // parses parameters string properly.
- TEST_F(AllocEngineTest, constructor) {
- boost::scoped_ptr<AllocEngine> x;
- // Hashed and random allocators are not supported yet
- ASSERT_THROW(x.reset(new AllocEngine(AllocEngine::ALLOC_HASHED, 5)), NotImplemented);
- ASSERT_THROW(x.reset(new AllocEngine(AllocEngine::ALLOC_RANDOM, 5)), NotImplemented);
- ASSERT_NO_THROW(x.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- }
- // This test checks if the simple allocation can succeed
- TEST_F(AllocEngineTest, simpleAlloc) {
- boost::scoped_ptr<AllocEngine> engine;
- ASSERT_NO_THROW(engine.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- ASSERT_TRUE(engine);
- Lease6Ptr lease = engine->allocateAddress6(subnet_, duid_, iaid_, IOAddress("::"),
- false);
- // check that we got a lease
- ASSERT_TRUE(lease);
- // do all checks on the lease
- checkLease6(lease);
- // Check that the lease is indeed in LeaseMgr
- Lease6Ptr from_mgr = LeaseMgrFactory::instance().getLease6(lease->addr_);
- ASSERT_TRUE(from_mgr);
- // Now check that the lease in LeaseMgr has the same parameters
- detailCompareLease(lease, from_mgr);
- }
- // This test checks if the fake allocation (for SOLICIT) can succeed
- TEST_F(AllocEngineTest, fakeAlloc) {
- boost::scoped_ptr<AllocEngine> engine;
- ASSERT_NO_THROW(engine.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- ASSERT_TRUE(engine);
- Lease6Ptr lease = engine->allocateAddress6(subnet_, duid_, iaid_, IOAddress("::"),
- true);
- // check that we got a lease
- ASSERT_TRUE(lease);
- // do all checks on the lease
- checkLease6(lease);
- // Check that the lease is NOT in LeaseMgr
- Lease6Ptr from_mgr = LeaseMgrFactory::instance().getLease6(lease->addr_);
- ASSERT_FALSE(from_mgr);
- }
- // This test checks if the allocation with a hint that is valid (in range,
- // in pool and free) can succeed
- TEST_F(AllocEngineTest, allocWithValidHint) {
- boost::scoped_ptr<AllocEngine> engine;
- ASSERT_NO_THROW(engine.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- ASSERT_TRUE(engine);
- Lease6Ptr lease = engine->allocateAddress6(subnet_, duid_, iaid_,
- IOAddress("2001:db8:1::15"),
- false);
- // check that we got a lease
- ASSERT_TRUE(lease);
- // we should get what we asked for
- EXPECT_EQ(lease->addr_.toText(), "2001:db8:1::15");
- // do all checks on the lease
- checkLease6(lease);
- // Check that the lease is indeed in LeaseMgr
- Lease6Ptr from_mgr = LeaseMgrFactory::instance().getLease6(lease->addr_);
- ASSERT_TRUE(from_mgr);
- // Now check that the lease in LeaseMgr has the same parameters
- detailCompareLease(lease, from_mgr);
- }
- // This test checks if the allocation with a hint that is in range,
- // in pool, but is currently used) can succeed
- TEST_F(AllocEngineTest, allocWithUsedHint) {
- boost::scoped_ptr<AllocEngine> engine;
- ASSERT_NO_THROW(engine.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- ASSERT_TRUE(engine);
- // let's create a lease and put it in the LeaseMgr
- DuidPtr duid2 = boost::shared_ptr<DUID>(new DUID(vector<uint8_t>(8, 0xff)));
- Lease6Ptr used(new Lease6(Lease6::LEASE_IA_NA, IOAddress("2001:db8:1::1f"),
- duid2, 1, 2, 3, 4, 5, subnet_->getID()));
- ASSERT_TRUE(LeaseMgrFactory::instance().addLease(used));
- // another client comes in and request an address that is in pool, but
- // unfortunately it is used already. The same address must not be allocated
- // twice.
- Lease6Ptr lease = engine->allocateAddress6(subnet_, duid_, iaid_,
- IOAddress("2001:db8:1::1f"),
- false);
- // check that we got a lease
- ASSERT_TRUE(lease);
- // allocated address must be different
- EXPECT_TRUE(used->addr_.toText() != lease->addr_.toText());
- // we should NOT get what we asked for, because it is used already
- EXPECT_TRUE(lease->addr_.toText() != "2001:db8:1::1f");
- // do all checks on the lease
- checkLease6(lease);
- // Check that the lease is indeed in LeaseMgr
- Lease6Ptr from_mgr = LeaseMgrFactory::instance().getLease6(lease->addr_);
- ASSERT_TRUE(from_mgr);
- // Now check that the lease in LeaseMgr has the same parameters
- detailCompareLease(lease, from_mgr);
- }
- // This test checks if the allocation with a hint that is out the blue
- // can succeed. The invalid hint should be ignored completely.
- TEST_F(AllocEngineTest, allocBogusHint) {
- boost::scoped_ptr<AllocEngine> engine;
- ASSERT_NO_THROW(engine.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- ASSERT_TRUE(engine);
- // Client would like to get a 3000::abc lease, which does not belong to any
- // supported lease. Allocation engine should ignore it and carry on
- // with the normal allocation
- Lease6Ptr lease = engine->allocateAddress6(subnet_, duid_, iaid_,
- IOAddress("3000::abc"),
- false);
- // check that we got a lease
- ASSERT_TRUE(lease);
- // we should NOT get what we asked for, because it is used already
- EXPECT_TRUE(lease->addr_.toText() != "3000::abc");
- // do all checks on the lease
- checkLease6(lease);
- // Check that the lease is indeed in LeaseMgr
- Lease6Ptr from_mgr = LeaseMgrFactory::instance().getLease6(lease->addr_);
- ASSERT_TRUE(from_mgr);
- // Now check that the lease in LeaseMgr has the same parameters
- detailCompareLease(lease, from_mgr);
- }
- // This test verifies that the allocator picks addresses that belong to the
- // pool
- TEST_F(AllocEngineTest, IterativeAllocator) {
- boost::scoped_ptr<NakedAllocEngine::Allocator>
- alloc(new NakedAllocEngine::IterativeAllocator());
- for (int i = 0; i < 1000; ++i) {
- IOAddress candidate = alloc->pickAddress(subnet_, duid_, IOAddress("::"));
- EXPECT_TRUE(subnet_->inPool(candidate));
- }
- }
- // This test verifies that the iterative allocator really walks over all addresses
- // in all pools in specified subnet. It also must not pick the same address twice
- // unless it runs out of pool space and must start over.
- TEST_F(AllocEngineTest, IterativeAllocator_manyPools) {
- NakedAllocEngine::IterativeAllocator* alloc = new NakedAllocEngine::IterativeAllocator();
- // let's start from 2, as there is 2001:db8:1::10 - 2001:db8:1::20 pool already.
- for (int i = 2; i < 10; ++i) {
- stringstream min, max;
- min << "2001:db8:1::" << hex << i*16 + 1;
- max << "2001:db8:1::" << hex << i*16 + 9;
- Pool6Ptr pool(new Pool6(Pool6::TYPE_IA, IOAddress(min.str()),
- IOAddress(max.str())));
- // cout << "Adding pool: " << min.str() << "-" << max.str() << endl;
- subnet_->addPool6(pool);
- }
- int total = 17 + 8*9; // first pool (::10 - ::20) has 17 addresses in it,
- // there are 8 extra pools with 9 addresses in each.
- // Let's keep picked addresses here and check their uniqueness.
- std::map<IOAddress, int> generated_addrs;
- int cnt = 0;
- while (++cnt) {
- IOAddress candidate = alloc->pickAddress(subnet_, duid_, IOAddress("::"));
- EXPECT_TRUE(subnet_->inPool(candidate));
- // One way to easily verify that the iterative allocator really works is
- // to uncomment the following line and observe its output that it
- // covers all defined subnets.
- // cout << candidate.toText() << endl;
- if (generated_addrs.find(candidate) == generated_addrs.end()) {
- // we haven't had this
- generated_addrs[candidate] = 0;
- } else {
- // we have seen this address before. That should mean that we
- // iterated over all addresses.
- if (generated_addrs.size() == total) {
- // we have exactly the number of address in all pools
- break;
- }
- ADD_FAILURE() << "Too many or not enough unique addresses generated.";
- break;
- }
- if ( cnt>total ) {
- ADD_FAILURE() << "Too many unique addresses generated.";
- break;
- }
- }
- delete alloc;
- }
- // This test checks if really small pools are working
- TEST_F(AllocEngineTest, smallPool) {
- boost::scoped_ptr<AllocEngine> engine;
- ASSERT_NO_THROW(engine.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- ASSERT_TRUE(engine);
- IOAddress addr("2001:db8:1::ad");
- CfgMgr& cfg_mgr = CfgMgr::instance();
- cfg_mgr.deleteSubnets6(); // Get rid of the default test configuration
- // Create configuration similar to other tests, but with a single address pool
- subnet_ = Subnet6Ptr(new Subnet6(IOAddress("2001:db8:1::"), 56, 1, 2, 3, 4));
- pool_ = Pool6Ptr(new Pool6(Pool6::TYPE_IA, addr, addr)); // just a single address
- subnet_->addPool6(pool_);
- cfg_mgr.addSubnet6(subnet_);
- Lease6Ptr lease = engine->allocateAddress6(subnet_, duid_, iaid_, IOAddress("::"),
- false);
- // Check that we got that single lease
- ASSERT_TRUE(lease);
- EXPECT_EQ("2001:db8:1::ad", lease->addr_.toText());
- // do all checks on the lease
- checkLease6(lease);
- // Check that the lease is indeed in LeaseMgr
- Lease6Ptr from_mgr = LeaseMgrFactory::instance().getLease6(lease->addr_);
- ASSERT_TRUE(from_mgr);
- // Now check that the lease in LeaseMgr has the same parameters
- detailCompareLease(lease, from_mgr);
- }
- // This test checks if all addresses in a pool are currently used, the attempt
- // to find out a new lease fails.
- TEST_F(AllocEngineTest, outOfAddresses) {
- boost::scoped_ptr<AllocEngine> engine;
- ASSERT_NO_THROW(engine.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- ASSERT_TRUE(engine);
- IOAddress addr("2001:db8:1::ad");
- CfgMgr& cfg_mgr = CfgMgr::instance();
- cfg_mgr.deleteSubnets6(); // Get rid of the default test configuration
- // Create configuration similar to other tests, but with a single address pool
- subnet_ = Subnet6Ptr(new Subnet6(IOAddress("2001:db8:1::"), 56, 1, 2, 3, 4));
- pool_ = Pool6Ptr(new Pool6(Pool6::TYPE_IA, addr, addr)); // just a single address
- subnet_->addPool6(pool_);
- cfg_mgr.addSubnet6(subnet_);
- // Just a different duid
- DuidPtr other_duid = DuidPtr(new DUID(vector<uint8_t>(12, 0xff)));
- const uint32_t other_iaid = 3568;
- Lease6Ptr lease(new Lease6(Lease6::LEASE_IA_NA, addr, other_duid, other_iaid,
- 501, 502, 503, 504, subnet_->getID(), 0));
- lease->cltt_ = time(NULL) - 10; // Allocated 10 seconds ago
- ASSERT_TRUE(LeaseMgrFactory::instance().addLease(lease));
- // There is just a single address in the pool and allocated it to someone
- // else, so the allocation should fail
- EXPECT_THROW(engine->allocateAddress6(subnet_, duid_, iaid_, IOAddress("::"),false),
- AllocFailed);
- }
- // This test checks if an expired lease can be reused in SOLICIT (fake allocation)
- TEST_F(AllocEngineTest, solicitReuseExpiredLease) {
- boost::scoped_ptr<AllocEngine> engine;
- ASSERT_NO_THROW(engine.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- ASSERT_TRUE(engine);
- IOAddress addr("2001:db8:1::ad");
- CfgMgr& cfg_mgr = CfgMgr::instance();
- cfg_mgr.deleteSubnets6(); // Get rid of the default test configuration
- // Create configuration similar to other tests, but with a single address pool
- subnet_ = Subnet6Ptr(new Subnet6(IOAddress("2001:db8:1::"), 56, 1, 2, 3, 4));
- pool_ = Pool6Ptr(new Pool6(Pool6::TYPE_IA, addr, addr)); // just a single address
- subnet_->addPool6(pool_);
- cfg_mgr.addSubnet6(subnet_);
- // Just a different duid
- DuidPtr other_duid = DuidPtr(new DUID(vector<uint8_t>(12, 0xff)));
- const uint32_t other_iaid = 3568;
- Lease6Ptr lease(new Lease6(Lease6::LEASE_IA_NA, addr, other_duid, other_iaid,
- 501, 502, 503, 504, subnet_->getID(), 0));
- lease->cltt_ = time(NULL) - 500; // Allocated 500 seconds ago
- lease->valid_lft_ = 495; // Lease was valid for 495 seconds
- ASSERT_TRUE(LeaseMgrFactory::instance().addLease(lease));
- // CASE 1: Asking for any address
- lease = engine->allocateAddress6(subnet_, duid_, iaid_, IOAddress("::"),
- true);
- // Check that we got that single lease
- ASSERT_TRUE(lease);
- EXPECT_EQ(addr.toText(), lease->addr_.toText());
- // Do all checks on the lease (if subnet-id, preferred/valid times are ok etc.)
- checkLease6(lease);
- // CASE 2: Asking specifically for this address
- lease = engine->allocateAddress6(subnet_, duid_, iaid_, IOAddress(addr.toText()),
- true);
- // Check that we got that single lease
- ASSERT_TRUE(lease);
- EXPECT_EQ(addr.toText(), lease->addr_.toText());
- }
- // This test checks if an expired lease can be reused in REQUEST (actual allocation)
- TEST_F(AllocEngineTest, requestReuseExpiredLease) {
- boost::scoped_ptr<AllocEngine> engine;
- ASSERT_NO_THROW(engine.reset(new AllocEngine(AllocEngine::ALLOC_ITERATIVE, 100)));
- ASSERT_TRUE(engine);
- IOAddress addr("2001:db8:1::ad");
- CfgMgr& cfg_mgr = CfgMgr::instance();
- cfg_mgr.deleteSubnets6(); // Get rid of the default test configuration
- // Create configuration similar to other tests, but with a single address pool
- subnet_ = Subnet6Ptr(new Subnet6(IOAddress("2001:db8:1::"), 56, 1, 2, 3, 4));
- pool_ = Pool6Ptr(new Pool6(Pool6::TYPE_IA, addr, addr)); // just a single address
- subnet_->addPool6(pool_);
- cfg_mgr.addSubnet6(subnet_);
- // Let's create an expired lease
- DuidPtr other_duid = DuidPtr(new DUID(vector<uint8_t>(12, 0xff)));
- const uint32_t other_iaid = 3568;
- const SubnetID other_subnetid = 999;
- Lease6Ptr lease(new Lease6(Lease6::LEASE_IA_NA, addr, other_duid, other_iaid,
- 501, 502, 503, 504, other_subnetid, 0));
- lease->cltt_ = time(NULL) - 500; // Allocated 500 seconds ago
- lease->valid_lft_ = 495; // Lease was valid for 495 seconds
- ASSERT_TRUE(LeaseMgrFactory::instance().addLease(lease));
- // A client comes along, asking specifically for this address
- lease = engine->allocateAddress6(subnet_, duid_, iaid_,
- IOAddress(addr.toText()), false);
- // Check that he got that single lease
- ASSERT_TRUE(lease);
- EXPECT_EQ(addr.toText(), lease->addr_.toText());
- // Check that the lease is indeed updated in LeaseMgr
- Lease6Ptr from_mgr = LeaseMgrFactory::instance().getLease6(addr);
- ASSERT_TRUE(from_mgr);
- // Now check that the lease in LeaseMgr has the same parameters
- detailCompareLease(lease, from_mgr);
- }
- }; // end of anonymous namespace
|