123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752 |
- // Copyright (C) 2014 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 <cc/data.h>
- #include <dhcp/tests/iface_mgr_test_config.h>
- #include <dhcp6/config_parser.h>
- #include <dhcp6/tests/dhcp6_test_utils.h>
- #include <dhcp6/tests/dhcp6_client.h>
- using namespace isc;
- using namespace isc::asiolink;
- using namespace isc::data;
- using namespace isc::dhcp;
- using namespace isc::dhcp::test;
- using namespace isc::test;
- namespace {
- /// @brief Set of JSON configurations used throughout the Rebind tests.
- ///
- /// - Configuration 0:
- /// - only addresses (no prefixes)
- /// - 2 subnets with 2001:db8:1::/64 and 2001:db8:2::64
- /// - 1 subnet for eth0 and 1 subnet for eth1
- ///
- /// - Configuration 1:
- /// - similar to Configuration 0 but different subnets
- /// - pools configured: 2001:db8:3::/64 and 2001:db8:4::/64
- ///
- /// - Configuration 2:
- /// - similar to Configuration 0 and Configuration 1
- /// - pools configured: 3000:1::/64 and 3000:2::/64
- /// - this specific configuration is used by tests using relays
- ///
- /// - Configuration 3:
- /// - similar to Configuration 2 but with different subnets
- /// - pools configured: 3000:3::/64 and 3000:4::/64
- /// - this specific configuration is used by tests using relays
- ///
- /// - Configuration 5:
- /// - only prefixes (no addresses)
- /// - 2 subnets: 2001:db8:1::/40 and 2001:db8:2::/40
- /// - 2 prefix pools: 2001:db8:1::/72 and 2001:db8:2::/72
- /// - 1 subnet for eth0 and 1 subnet for eth1
- /// - this specific configuration is used by tests which don't use relays
- ///
- /// - Configuration 6:
- /// - similar to Configuration 5 but with different subnets
- /// - 2 subnets: 2001:db8:3::/40 and 2001:db8:4::/40
- /// - 2 prefix pools: 2001:db8:3::/72 and 2001:db8:4::/72
- /// - delegated length /80
- /// - this specific configuration is used by tests which don't use relays
- const char* REBIND_CONFIGS[] = {
- // Configuration 0
- "{ \"interfaces\": [ \"all\" ],"
- "\"preferred-lifetime\": 3000,"
- "\"rebind-timer\": 2000, "
- "\"renew-timer\": 1000, "
- "\"subnet6\": [ { "
- " \"pool\": [ \"2001:db8:1::/64\" ],"
- " \"subnet\": \"2001:db8:1::/48\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth0\""
- " },"
- " {"
- " \"pool\": [ \"2001:db8:2::/64\" ],"
- " \"subnet\": \"2001:db8:2::/48\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth1\""
- " } ],"
- "\"valid-lifetime\": 4000 }",
- // Configuration 1
- "{ \"interfaces\": [ \"all\" ],"
- "\"preferred-lifetime\": 3000,"
- "\"rebind-timer\": 2000, "
- "\"renew-timer\": 1000, "
- "\"subnet6\": [ { "
- " \"pool\": [ \"2001:db8:3::/64\" ],"
- " \"subnet\": \"2001:db8:3::/48\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth1\""
- " },"
- " {"
- " \"pool\": [ \"2001:db8:4::/64\" ],"
- " \"subnet\": \"2001:db8:4::/48\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth0\""
- " } ],"
- "\"valid-lifetime\": 4000 }",
- // Configuration 2
- "{ \"interfaces\": [ \"all\" ],"
- "\"preferred-lifetime\": 3000,"
- "\"rebind-timer\": 2000, "
- "\"renew-timer\": 1000, "
- "\"subnet6\": [ { "
- " \"pool\": [ \"3000:1::/64\" ],"
- " \"subnet\": \"3000:1::/48\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth0\""
- " },"
- " {"
- " \"pool\": [ \"3000:2::/64\" ],"
- " \"subnet\": \"3000:2::/48\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth1\""
- " } ],"
- "\"valid-lifetime\": 4000 }",
- // Configuration 3
- "{ \"interfaces\": [ \"all\" ],"
- "\"preferred-lifetime\": 3000,"
- "\"rebind-timer\": 2000, "
- "\"renew-timer\": 1000, "
- "\"subnet6\": [ { "
- " \"pool\": [ \"3000:3::/64\" ],"
- " \"subnet\": \"3000:3::/48\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth1\""
- " },"
- " {"
- " \"pool\": [ \"3000:4::/64\" ],"
- " \"subnet\": \"3000:4::/48\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth0\""
- " } ],"
- "\"valid-lifetime\": 4000 }",
- // Configuration 4
- "{ \"interfaces\": [ \"all\" ],"
- "\"preferred-lifetime\": 3000,"
- "\"rebind-timer\": 2000, "
- "\"renew-timer\": 1000, "
- "\"subnet6\": [ { "
- " \"pd-pools\": ["
- " { \"prefix\": \"2001:db8:1:01::\", "
- " \"prefix-len\": 72, "
- " \"delegated-len\": 80"
- " } ],"
- " \"subnet\": \"2001:db8:1::/40\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth0\""
- " },"
- " {"
- " \"pd-pools\": ["
- " { \"prefix\": \"2001:db8:2:01::\", "
- " \"prefix-len\": 72, "
- " \"delegated-len\": 80"
- " } ],"
- " \"subnet\": \"2001:db8:2::/40\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth1\""
- " } ],"
- "\"valid-lifetime\": 4000 }",
- // Configuration 5
- "{ \"interfaces\": [ \"all\" ],"
- "\"preferred-lifetime\": 3000,"
- "\"rebind-timer\": 2000, "
- "\"renew-timer\": 1000, "
- "\"subnet6\": [ { "
- " \"pd-pools\": ["
- " { \"prefix\": \"2001:db8:3:01::\", "
- " \"prefix-len\": 72, "
- " \"delegated-len\": 80"
- " } ],"
- " \"subnet\": \"2001:db8:3::/40\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth1\""
- " },"
- " {"
- " \"pd-pools\": ["
- " { \"prefix\": \"2001:db8:4:01::\", "
- " \"prefix-len\": 72, "
- " \"delegated-len\": 80"
- " } ],"
- " \"subnet\": \"2001:db8:4::/40\", "
- " \"interface-id\": \"\","
- " \"interface\": \"eth0\""
- " } ],"
- "\"valid-lifetime\": 4000 }",
- };
- /// @brief Test fixture class for testing Rebind.
- class RebindTest : public Dhcpv6SrvTest {
- public:
- /// @brief Constructor.
- ///
- /// Sets up fake interfaces.
- RebindTest()
- : Dhcpv6SrvTest(),
- iface_mgr_test_config_(true) {
- }
- /// @brief Configure the DHCPv6 server using the JSON string.
- ///
- /// @param config New configuration in JSON format.
- /// @param srv Server to be configured.
- void configure(const std::string& config, NakedDhcpv6Srv& srv);
- /// @brief Make 4-way exchange to obtain a lease.
- ///
- /// @param config_index Index of the configuration held in @c REBIND_CONFIGS
- /// to use to configure the server.
- /// @param subnets_num Number of subnets being created with the specified
- /// configuration.
- /// @param client Object representing a test DHCPv6 client to use.
- void requestLease(const int config_index, const int subnets_num,
- Dhcp6Client& client);
- /// @brief Interface Manager's fake configuration control.
- IfaceMgrTestConfig iface_mgr_test_config_;
- };
- void
- RebindTest::configure(const std::string& config, NakedDhcpv6Srv& srv) {
- ElementPtr json = Element::fromJSON(config);
- ConstElementPtr status;
- // Configure the server and make sure the config is accepted
- EXPECT_NO_THROW(status = configureDhcp6Server(srv, json));
- ASSERT_TRUE(status);
- int rcode;
- ConstElementPtr comment = config::parseAnswer(rcode, status);
- ASSERT_EQ(0, rcode);
- }
- void
- RebindTest::requestLease(const int config_index, const int subnets_num,
- Dhcp6Client& client) {
- // Check that the index is in the configuration table.
- ASSERT_LT(config_index, sizeof(REBIND_CONFIGS)/sizeof(REBIND_CONFIGS[0]));
- // Configure the server.
- configure(REBIND_CONFIGS[config_index], *client.getServer());
- // Make sure we ended-up having expected number of subnets configured.
- const Subnet6Collection* subnets = CfgMgr::instance().getSubnets6();
- ASSERT_EQ(subnets_num, subnets->size());
- // Do the actual 4-way exchange.
- ASSERT_NO_THROW(client.doSARR());
- // Simulate aging of leases, by moving their cltt_ back by 1000s.
- client.fastFwdTime(1000);
- // Make sure that we have obtained a lease that belongs to one of the
- // subnets.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client = client.getLease(0);
- ASSERT_TRUE(CfgMgr::instance().getSubnet6(lease_client.addr_,
- ClientClasses()));
- // Check that the client's lease matches the information on the server
- // side.
- Lease6Ptr lease_server = checkLease(lease_client);
- ASSERT_TRUE(lease_server);
- // And that status code was OK.
- EXPECT_EQ(STATUS_Success, client.getStatusCode(0));
- }
- // Test that directly connected client's Rebind message is processed and Reply
- // message is sent back.
- TEST_F(RebindTest, directClient) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(0, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Send Rebind message to the server.
- ASSERT_NO_THROW(client.doRebind());
- // The client should still have one lease which belong to one of the
- // subnets.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- ASSERT_TRUE(CfgMgr::instance().getSubnet6(lease_client2.addr_,
- ClientClasses()));
- // The client's lease should have been extended. The client will
- // update the cltt to current time when the lease gets extended.
- ASSERT_GE(lease_client2.cltt_ - lease_client.cltt_, 1000);
- // Make sure, that the client's lease matches the lease held by the
- // server.
- Lease6Ptr lease_server2 = checkLease(lease_client2);
- EXPECT_TRUE(lease_server2);
- }
- // Test that server doesn't extend the lease when the configuration has changed
- // such that the existing subnet is replaced with a different subnet.
- TEST_F(RebindTest, directClientChangingSubnet) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(0, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Reconfigure the server so as the new subnet is served on the
- // client's interface. Note that there will also be a new subnet
- // id assigned to the subnet on this interface.
- configure(REBIND_CONFIGS[1], *client.getServer());
- // Try to rebind, using the address that the client had acquired using
- // previous server configuration.
- ASSERT_NO_THROW(client.doRebind());
- // We are expecting that the server didn't extend the lease because
- // the address that client is using doesn't match the new subnet.
- // But, the client still has an old lease.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- // The current lease should be exactly the same as old lease,
- // because server shouldn't have extended.
- EXPECT_TRUE(lease_client == lease_client2);
- // Make sure, that the lease that client has, is matching the lease
- // in the lease database.
- Lease6Ptr lease_server2 = checkLease(lease_client2);
- EXPECT_TRUE(lease_server2);
- // Client should have received NoBinding status code.
- EXPECT_EQ(STATUS_NoBinding, client.getStatusCode(0));
- }
- // Check that the server doesn't extend the lease for the client when the
- // client sends IAID which doesn't belong to the lease that client has.
- TEST_F(RebindTest, directClientChangingIAID) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(0, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Modify the IAID of the lease record that client stores. By adding
- // one to IAID we guarantee that the IAID will change.
- ++client.config_.leases_[0].lease_.iaid_;
- // Try to Rebind. Note that client will use a different IAID (which
- // is not matching IAID that server retains for the client). Server
- // should not find the lease that client is trying to extend and
- // should return NoBinding.
- ASSERT_NO_THROW(client.doRebind());
- // The lease obtained in 4-way exchange should not change after the Rebind
- // attempt.
- Lease6Ptr lease_server2 = checkLease(lease_client);
- EXPECT_TRUE(lease_server2);
- // The Status code returned to the client, should be NoBinding.
- EXPECT_EQ(STATUS_NoBinding, client.getStatusCode(0));
- }
- // Check that server sends NoBinding when the lease has been lost from
- // the database and client is trying to Rebind it.
- TEST_F(RebindTest, directClientLostLease) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(0, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // The lease has been acquired. Now, let's explicitly remove it from the
- // lease database.
- LeaseMgrFactory::instance().deleteLease(lease_client.addr_);
- // An attempt to Rebind should fail. The lease should not be found by
- // the server and the server should return NoBinding status code.
- ASSERT_NO_THROW(client.doRebind());
- ASSERT_EQ(1, client.getLeaseNum());
- EXPECT_EQ(STATUS_NoBinding, client.getStatusCode(0));
- }
- /// @todo Extend tests for direct client changing address.
- // Check that the client can Rebind existing lease through a relay.
- TEST_F(RebindTest, relayedClient) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Configure DHCPv6 client to simulate sending the message through a relay
- // agent. The default link-addr is 3001:1::1. This address should be used
- // by the server to pick the suitable subnet.
- client.useRelay();
- // Make 4-way exchange to get the lease. Pick the configuration #2 as it
- // specifies the subnet for the relay agent's link address.
- ASSERT_NO_FATAL_FAILURE(requestLease(2, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Send Rebind message to the server.
- ASSERT_NO_THROW(client.doRebind());
- // The client should still have one lease which belongs to one of the
- // subnets.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- ASSERT_TRUE(CfgMgr::instance().getSubnet6(lease_client2.addr_,
- ClientClasses()));
- // The client's lease should have been extended. The client will
- // update the cltt to current time when the lease gets extended.
- ASSERT_GE(lease_client2.cltt_ - lease_client.cltt_, 1000);
- // Make sure, that the client's lease matches the lease held by the
- // server.
- Lease6Ptr lease_server2 = checkLease(lease_client2);
- EXPECT_TRUE(lease_server2);
- }
- // Check that the lease is not extended for the relayed client when the
- // configuration has changed such that the subnet that client is using
- // doesn't exist anymore.
- TEST_F(RebindTest, relayedClientChangingSubnet) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Configure DHCPv6 client to simulate sending the message through a relay
- // agent. The default link-addr is 3001:1::1. This address should be used
- // by the server to pick the suitable subnet.
- client.useRelay();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(2, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Reconfigure the server so as the new subnet is served on the
- // client's interface. Note that there will also be a new subnet
- // id assigned to the subnet on this interface.
- configure(REBIND_CONFIGS[3], *client.getServer());
- // Update relay link address to match the new subnet.
- client.relay_link_addr_ = IOAddress("3001:4::1");
- // Try to rebind, using the address that the client had acquired using
- // previous server configuration.
- ASSERT_NO_THROW(client.doRebind());
- // We are expecting that the server didn't extend the lease because
- // the address that client is using doesn't match the new subnet.
- // But, the client still has an old lease.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- // The current lease should be exactly the same as old lease,
- // because server shouldn't have extended.
- EXPECT_TRUE(lease_client == lease_client2);
- // Make sure, that the lease that client has, is matching the lease
- // in the lease database.
- Lease6Ptr lease_server2 = checkLease(lease_client2);
- EXPECT_TRUE(lease_server2);
- // Client should have received NoBinding status code.
- EXPECT_EQ(STATUS_NoBinding, client.getStatusCode(0));
- }
- // Check that the lease is not extended for the relayed client when the IAID in
- // the Rebind message doesn't match the one recorded for the client.
- TEST_F(RebindTest, relayedClientChangingIAID) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Configure DHCPv6 client to simulate sending the message through a relay
- // agent. The default link-addr is 3001:1::1. This address should be used
- // by the server to pick the suitable subnet.
- client.useRelay();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(2, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Modify the IAID of the lease record that client stores. By adding
- // one to IAID we guarantee that the IAID will change.
- ++client.config_.leases_[0].lease_.iaid_;
- // Try to Rebind. Note that client will use a different IAID (which
- // is not matching IAID that server retains for the client). Server
- // should not find the lease that client is trying to extend and
- // should return NoBinding.
- ASSERT_NO_THROW(client.doRebind());
- // The lease obtained in 4-way exchange should not change after the Rebind
- // attempt.
- Lease6Ptr lease_server2 = checkLease(lease_client);
- EXPECT_TRUE(lease_server2);
- // The Status code returned to the client, should be NoBinding.
- EXPECT_EQ(STATUS_NoBinding, client.getStatusCode(0));
- }
- // Check that the relayed client receives NoBinding when the lease that he
- // is Rebinding has been lost from the database.
- TEST_F(RebindTest, relayedClientLostLease) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Configure DHCPv6 client to simulate sending the message through a relay
- // agent. The default link-addr is 3001:1::1. This address should be used
- // by the server to pick the suitable subnet.
- client.useRelay();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(2, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // The lease has been acquired. Now, let's explicitly remove it from the
- // lease database.
- LeaseMgrFactory::instance().deleteLease(lease_client.addr_);
- // An attempt to Rebind should fail. The lease should not be found by
- // the server and the server should return NoBinding status code.
- ASSERT_NO_THROW(client.doRebind());
- ASSERT_EQ(1, client.getLeaseNum());
- EXPECT_EQ(STATUS_NoBinding, client.getStatusCode(0));
- }
- // Check that relayed client receives the IA with lifetimes of 0, when
- // client is tgrying to Rebind using an address it doesn't have.
- TEST_F(RebindTest, relayedClientChangingAddress) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(2, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Modify the address of the lease record that client stores. The server
- // should check that the address is invalid (hasn't been allocated for
- // the particular IAID).
- client.config_.leases_[0].lease_.addr_ = IOAddress("3000::100");
- // Try to Rebind. The client will use correct IAID but will specify a
- // wrong address. The server will discover that the client has a binding
- // but the address will not match.
- ASSERT_NO_THROW(client.doRebind());
- // Make sure that the server has discarded client's message. In such case,
- // the message sent back to the client should be NULL.
- EXPECT_TRUE(client.getContext().response_)
- << "The server discarded the Rebind message, while it should have"
- " sent a response indicating that the client should stop using the"
- " lease, by setting lifetime values to 0.";
- // Get the client's lease.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- // The lifetimes should be set to 0, as an explicit notification to the
- // client to stop using invalid prefix.
- EXPECT_EQ(0, lease_client2.valid_lft_);
- EXPECT_EQ(0, lease_client2.preferred_lft_);
- // Check that server still has the same lease.
- Lease6Ptr lease_server = checkLease(lease_client);
- EXPECT_TRUE(lease_server);
- // Make sure that the lease in the data base hasn't been addected.
- EXPECT_NE(0, lease_server->valid_lft_);
- EXPECT_NE(0, lease_server->preferred_lft_);
- }
- // Check that the server extends the lease for the client having a prefix.
- TEST_F(RebindTest, directClientPD) {
- Dhcp6Client client;
- // Configure client to request IA_PD.
- client.usePD();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(4, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Send Rebind message to the server.
- ASSERT_NO_THROW(client.doRebind());
- // The client should still have one lease which belong to one of the
- // subnets.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- ASSERT_TRUE(CfgMgr::instance().getSubnet6(lease_client2.addr_,
- ClientClasses()));
- // The client's lease should have been extended. The client will
- // update the cltt to current time when the lease gets extended.
- ASSERT_GE(lease_client2.cltt_ - lease_client.cltt_, 1000);
- // Make sure, that the client's lease matches the lease held by the
- // server.
- Lease6Ptr lease_server2 = checkLease(lease_client2);
- EXPECT_TRUE(lease_server2);
- }
- // Check that the prefix lifetime is not extended for the client in case
- // the configuration has been changed such, that the subnet he is using
- // doesn't exist anymore.
- TEST_F(RebindTest, directClientPDChangingSubnet) {
- Dhcp6Client client;
- // Configure client to request IA_PD.
- client.usePD();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(4, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Reconfigure the server so as the new subnet is served on the
- // client's interface. Note that there will also be a new subnet
- // id assigned to the subnet on this interface.
- configure(REBIND_CONFIGS[5], *client.getServer());
- // Try to rebind, using the address that the client had acquired using
- // previous server configuration.
- ASSERT_NO_THROW(client.doRebind());
- // Make sure that the server has discarded client's message. In such case,
- // the message sent back to the client should be NULL.
- EXPECT_FALSE(client.getContext().response_)
- << "The server responded to the Rebind message, while it should have"
- " discarded it because there is no binding for the client.";
- // We are expecting that the server didn't extend the lease because
- // the address that client is using doesn't match the new subnet.
- // But, the client still has an old lease.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- // The current lease should be exactly the same as old lease,
- // because server shouldn't have extended.
- EXPECT_TRUE(lease_client == lease_client2);
- // Make sure, that the lease that client has, is matching the lease
- // in the lease database.
- Lease6Ptr lease_server2 = checkLease(lease_client2);
- EXPECT_TRUE(lease_server2);
- }
- // Check that the prefix lifetime is not extended for the client when the
- // IAID used in the Rebind is not matching the one recorded by the server
- // for the particular client.
- TEST_F(RebindTest, directClientPDChangingIAID) {
- Dhcp6Client client;
- // Configure client to request IA_PD.
- client.usePD();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(4, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Modify the IAID of the lease record that client stores. By adding
- // one to IAID we guarantee that the IAID will change.
- ++client.config_.leases_[0].lease_.iaid_;
- // Try to Rebind. Note that client will use a different IAID (which
- // is not matching IAID that server retains for the client). This is
- // a condition described in RFC3633, section 12.2 as the server finds
- // no binding for the client. It is an indication that some other
- // server has probably allocated the lease for the client. Hence, our
- // server should discard the message.
- ASSERT_NO_THROW(client.doRebind());
- // Make sure that the server has discarded client's message. In such case,
- // the message sent back to the client should be NULL.
- EXPECT_FALSE(client.getContext().response_)
- << "The server responded to the Rebind message, while it should have"
- " discarded it because there is no binding for the client.";
- // Check that server still has the same lease.
- Lease6Ptr lease_server = checkLease(lease_client);
- EXPECT_TRUE(lease_server);
- }
- // Check that the prefix lifetime is not extended for the client when the
- // prefix used in Rebind message doesn't match the one that client has.
- TEST_F(RebindTest, directClientPDChangingPrefix) {
- Dhcp6Client client;
- // Configure client to request IA_PD.
- client.usePD();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(4, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Modify the Prefix of the lease record that client stores. The server
- // should check that the prefix is invalid (hasn't been allocated for
- // the particular IAID).
- ASSERT_NE(client.config_.leases_[0].lease_.addr_,
- IOAddress("2001:db8:1:10::"));
- client.config_.leases_[0].lease_.addr_ = IOAddress("2001:db8:1:10::");
- // Try to Rebind. The client will use correct IAID but will specify a
- // wrong prefix. The server will discover that the client has a binding
- // but the prefix will not match. According to the RFC3633, section 12.2.
- // the server has to return the lease with lifetimes set to 0, when there
- // is a binding for the client but the prefix doesn't match.
- ASSERT_NO_THROW(client.doRebind());
- // Make sure that the server has discarded client's message. In such case,
- // the message sent back to the client should be NULL.
- EXPECT_TRUE(client.getContext().response_)
- << "The server discarded the Rebind message, while it should have"
- " sent a response indicating that the client should stop using the"
- " lease, by setting lifetime values to 0.";
- // Get the client's lease.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- // The lifetimes should be set to 0, as an explicit notification to the
- // client to stop using invalid prefix.
- EXPECT_EQ(0, lease_client2.valid_lft_);
- EXPECT_EQ(0, lease_client2.preferred_lft_);
- // Check that server still has the same lease.
- Lease6Ptr lease_server = checkLease(lease_client);
- ASSERT_TRUE(lease_server);
- // Make sure that the lease in the data base hasn't been addected.
- EXPECT_NE(0, lease_server->valid_lft_);
- EXPECT_NE(0, lease_server->preferred_lft_);
- }
- /// @todo Extend PD tests for relayed messages.
- /// @todo Extend PD tests to cover same prefix buyt different length.
- // This test checks that the Rebind message is discarded by the server if it
- // has been sent to unicast address (RFC3315, section 15).
- TEST_F(RebindTest, unicast) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Make 4-way exchange to get the lease.
- ASSERT_NO_FATAL_FAILURE(requestLease(0, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Set the unicast destination address for the Rebind message.
- // The Rebind should be discarded when sent to unicast address,
- // according to section 15 of RFC3315.
- client.setDestAddress(IOAddress("2001:db8:1::1"));
- // Send the Rebind message to a unicast address.
- ASSERT_NO_THROW(client.doRebind());
- // The client's lease should remain with no change (shouldn't be extended)
- // because server is supposed to drop the message sent to a unicast address.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- ASSERT_TRUE(lease_client2 == lease_client);
- // Check that server still has the lease.
- Lease6Ptr lease_server2 = checkLease(lease_client2);
- EXPECT_TRUE(lease_server2);
- // Make sure that the server has discarded client's message. In such case,
- // the message sent back to the client should be NULL.
- EXPECT_FALSE(client.getContext().response_);
- }
- // This test checks that the relayed Rebind message is processed by the server
- // when sent to unicast address.
- TEST_F(RebindTest, relayedUnicast) {
- Dhcp6Client client;
- // Configure client to request IA_NA.
- client.useNA();
- // Configure DHCPv6 client to simulate sending the message through a relay
- // agent. The default link-addr is 3001:1::1. This address should be used
- // by the server to pick the suitable subnet.
- client.useRelay();
- // Make 4-way exchange to get the lease. Pick the configuration #2 as it
- // specifies the subnet for the relay agent's link address.
- ASSERT_NO_FATAL_FAILURE(requestLease(2, 2, client));
- // Keep the client's lease for future reference.
- Lease6 lease_client = client.getLease(0);
- // Set the unicast destination address.
- client.setDestAddress(IOAddress("2001:db8:1::1"));
- // Send Rebind message to the server.
- ASSERT_NO_THROW(client.doRebind());
- // The client should still have one lease which belongs to one of the
- // subnets.
- ASSERT_EQ(1, client.getLeaseNum());
- Lease6 lease_client2 = client.getLease(0);
- ASSERT_TRUE(CfgMgr::instance().getSubnet6(lease_client2.addr_,
- ClientClasses()));
- // The client's lease should have been extended. The client will
- // update the cltt to current time when the lease gets extended.
- ASSERT_GE(lease_client2.cltt_ - lease_client.cltt_, 1000);
- // Make sure, that the client's lease matches the lease held by the
- // server.
- Lease6Ptr lease_server2 = checkLease(lease_client2);
- EXPECT_TRUE(lease_server2);
- }
- } // end of anonymous namespace
|