1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
|
// Copyright (C) 2015-2016 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <asiolink/io_address.h>
#include <dhcp/docsis3_option_defs.h>
#include <dhcp/option6_addrlst.h>
#include <dhcp/option_int.h>
#include <dhcp/option_vendor.h>
#include <dhcp/tests/iface_mgr_test_config.h>
#include <dhcp6/tests/dhcp6_test_utils.h>
#include <dhcp6/tests/dhcp6_client.h>
#include <boost/algorithm/string/join.hpp>
#include <boost/bind.hpp>
#include <boost/function.hpp>
#include <boost/lexical_cast.hpp>
#include <list>
#include <sstream>
using namespace isc;
using namespace isc::asiolink;
using namespace isc::dhcp;
using namespace isc::dhcp::test;
namespace {
/// @brief Set of JSON configurations used by the Host reservation unit tests.
///
/// - Configuration 0:
/// Single subnet with two reservations, one with a hostname, one without
///
/// - Configuration 1:
/// Multiple reservations using different host identifiers.
///
/// - Configuration 2:
/// Same as configuration 1 but 'host-reservation-identifiers' specified
/// in non-default order.
///
/// - Configuration 3:
/// - Used to test that host specific options override pool specific,
/// subnet specific and global options.
///
/// - Configuration 4:
/// - Used to test that client receives options solely specified in a
/// host scope.
///
/// - Configuration 5:
/// - Used to test that host specific vendor options override globally
/// specified vendor options.
const char* CONFIGS[] = {
// Configuration 0:
"{ "
"\"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"valid-lifetime\": 4000, "
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": [ "
" { "
" \"subnet\": \"2001:db8:1::/48\", "
" \"pools\": [ { \"pool\": \"2001:db8:1:1::/64\" } ],"
" \"interface\" : \"eth0\" , "
" \"reservations\": ["
" {"
" \"duid\": \"01:02:03:04\","
" \"ip-addresses\": [ \"2001:db8:1:1::babe\" ],"
" \"hostname\": \"alice\""
" },"
" {"
" \"duid\": \"01:02:03:05\","
" \"ip-addresses\": [ \"2001:db8:1:1::babf\" ]"
" } ]"
" } ]"
"}",
// Configuration 1:
"{ "
"\"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"valid-lifetime\": 4000, "
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"mac-sources\": [ \"ipv6-link-local\" ], "
"\"subnet6\": [ "
" { "
" \"subnet\": \"2001:db8:1::/48\", "
" \"pools\": [ { \"pool\": \"2001:db8:1::/64\" } ],"
" \"interface\" : \"eth0\" , "
" \"reservations\": ["
" {"
" \"hw-address\": \"38:60:77:d5:ff:ee\","
" \"ip-addresses\": [ \"2001:db8:1::1\" ]"
" },"
" {"
" \"duid\": \"01:02:03:05\","
" \"ip-addresses\": [ \"2001:db8:1::2\" ]"
" } ]"
" } ]"
"}",
// Configuration 2:
"{ "
"\"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"host-reservation-identifiers\": [ \"duid\", \"hw-address\" ],"
"\"valid-lifetime\": 4000, "
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"mac-sources\": [ \"ipv6-link-local\" ], "
"\"subnet6\": [ "
" { "
" \"subnet\": \"2001:db8:1::/48\", "
" \"pools\": [ { \"pool\": \"2001:db8:1::/64\" } ],"
" \"interface\" : \"eth0\" , "
" \"reservations\": ["
" {"
" \"hw-address\": \"38:60:77:d5:ff:ee\","
" \"ip-addresses\": [ \"2001:db8:1::1\" ]"
" },"
" {"
" \"duid\": \"01:02:03:05\","
" \"ip-addresses\": [ \"2001:db8:1::2\" ]"
" } ]"
" } ]"
"}",
// Configuration 3:
"{ "
"\"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"host-reservation-identifiers\": [ \"duid\" ],"
"\"valid-lifetime\": 4000, "
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"option-data\": [ {"
" \"name\": \"nisp-servers\","
" \"data\": \"3000:3::123\""
"} ],"
"\"subnet6\": [ "
" { "
" \"subnet\": \"2001:db8:1::/48\", "
" \"pools\": [ {"
" \"pool\": \"2001:db8:1::/64\","
" \"option-data\": [ {"
" \"name\": \"dns-servers\","
" \"data\": \"3000:2::111\""
" } ]"
" } ],"
" \"interface\" : \"eth0\","
" \"option-data\": [ {"
" \"name\": \"dns-servers\","
" \"data\": \"3000:2::123\""
" },"
" {"
" \"name\": \"nis-servers\","
" \"data\": \"3000:2::123\""
" },"
" {"
" \"name\": \"sntp-servers\","
" \"data\": \"3000:2::123\""
" } ],"
" \"reservations\": ["
" {"
" \"duid\": \"01:02:03:05\","
" \"ip-addresses\": [ \"2001:db8:1::2\" ],"
" \"option-data\": [ {"
" \"name\": \"dns-servers\","
" \"data\": \"3000:1::234\""
" },"
" {"
" \"name\": \"nis-servers\","
" \"data\": \"3000:1::234\""
" } ]"
" } ]"
" } ]"
"}",
// Configuration 4:
"{ "
"\"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"host-reservation-identifiers\": [ \"duid\" ],"
"\"valid-lifetime\": 4000, "
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": [ "
" { "
" \"subnet\": \"2001:db8:1::/48\", "
" \"pools\": [ { \"pool\": \"2001:db8:1::/64\" } ],"
" \"interface\" : \"eth0\","
" \"reservations\": ["
" {"
" \"duid\": \"01:02:03:05\","
" \"ip-addresses\": [ \"2001:db8:1::2\" ],"
" \"option-data\": [ {"
" \"name\": \"dns-servers\","
" \"data\": \"3000:1::234\""
" },"
" {"
" \"name\": \"nis-servers\","
" \"data\": \"3000:1::234\""
" } ]"
" } ]"
" } ]"
"}",
// Configuration 5:
"{ "
"\"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"host-reservation-identifiers\": [ \"duid\" ],"
"\"valid-lifetime\": 4000, "
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"option-data\": [ {"
" \"name\": \"vendor-opts\","
" \"data\": 4491"
"},"
"{"
" \"name\": \"tftp-servers\","
" \"space\": \"vendor-4491\","
" \"data\": \"3000:3::123\""
"} ],"
"\"subnet6\": [ "
" { "
" \"subnet\": \"2001:db8:1::/48\", "
" \"pools\": [ { \"pool\": \"2001:db8:1::/64\" } ],"
" \"interface\" : \"eth0\","
" \"reservations\": ["
" {"
" \"duid\": \"01:02:03:05\","
" \"ip-addresses\": [ \"2001:db8:1::2\" ],"
" \"option-data\": [ {"
" \"name\": \"vendor-opts\","
" \"data\": 4491"
" },"
" {"
" \"name\": \"tftp-servers\","
" \"space\": \"vendor-4491\","
" \"data\": \"3000:1::234\""
" } ]"
" } ]"
" } ]"
"}"
};
/// @brief Base class representing leases and hints conveyed within IAs.
///
/// This is a base class for @ref Reservation and @ref Hint classes.
class IAResource {
public:
/// @brief Constructor.
///
/// Creates a resource instance from a string. The string is provided in
/// one of the following formats:
/// - "2001:db8:1::1" for addresses.
/// - "2001:db8::/64" for prefixes.
/// - "::/0" to mark lease or hint as unspecified (empty).
IAResource(const std::string& resource);
/// @brief Checks if resource is unspecified.
///
/// @return true if resource is unspecified.
bool isEmpty() const;
/// @brief Checks if resource is a prefix.
///
/// @return true if resource is a prefix.
bool isPrefix() const;
/// @brief Returns prefix or address (depending on resource type).
const IOAddress& getPrefix() const;
/// @brief Returns prefix length.
uint8_t getPrefixLen() const;
/// @brief Returns textual representation of the resource.
std::string toText() const;
/// @brief Operator converting resource to string.
operator std::string() const;
private:
/// @brief Holds prefix or address (depending on resource type).
IOAddress prefix_;
/// @brief Holds prefix length (for prefixes).
uint8_t prefix_len_;
};
IAResource::IAResource(const std::string& resource)
: prefix_(IOAddress::IPV6_ZERO_ADDRESS()), prefix_len_(0) {
// Check if resource is a prefix, i.e. search for slash.
size_t slash_pos = resource.find("/");
if ((slash_pos != std::string::npos) && (slash_pos < resource.size() - 1)) {
prefix_len_ = boost::lexical_cast<unsigned int>(resource.substr(slash_pos + 1));
}
prefix_ = IOAddress(resource.substr(0, slash_pos));
}
bool
IAResource::isEmpty() const {
return (prefix_.isV6Zero() && (prefix_len_ == 0));
}
bool
IAResource::isPrefix() const {
return (!isEmpty() && (prefix_len_ > 0));
}
const IOAddress&
IAResource::getPrefix() const {
return (prefix_);
}
uint8_t
IAResource::getPrefixLen() const {
return (prefix_len_);
}
std::string
IAResource::toText() const {
std::ostringstream s;
s << "\"" << prefix_;
if (prefix_len_ > 0) {
s << "/" << static_cast<int>(prefix_len_);
}
s << "\"";
return (s.str());
}
IAResource::operator std::string() const {
return (toText());
}
/// @brief Address or prefix reservation.
class Reservation : public IAResource {
public:
/// @brief Constructor
///
/// @param resource Resource string as for @ref IAResource constructor.
Reservation(const std::string& resource)
: IAResource(resource) {
}
/// @brief Convenience function returning unspecified resource.
static const Reservation& UNSPEC();
};
const Reservation& Reservation::UNSPEC() {
static Reservation unspec("::/0");
return (unspec);
}
/// @brief Address or prefix hint.
class Hint : public IAResource {
public:
/// @brief Constructor.
///
/// Includes IAID of an IA in which hint should be placed.
///
/// @param iaid IAID of IA in which hint should be placed.
/// @param resource Resource string as for @ref IAResource constructor.
Hint(const IAID& iaid, const std::string& resource)
: IAResource(resource), iaid_(iaid) {
}
/// @brief Returns IAID.
const IAID& getIAID() const;
/// @brief Convenience function returning unspecified hint.
static const Hint& UNSPEC();
private:
/// @brief Holds IAID as 32-bit unsigned integer.
IAID iaid_;
};
const IAID&
Hint::getIAID() const {
return (iaid_);
}
const Hint& Hint::UNSPEC() {
static Hint unspec(IAID(0), "::/0");
return (unspec);
}
/// @brief Test fixture class for testing host reservations
class HostTest : public Dhcpv6SrvTest {
public:
/// @brief Constructor.
///
/// Sets up fake interfaces.
HostTest()
: Dhcpv6SrvTest(),
iface_mgr_test_config_(true),
client_(),
do_solicit_(boost::bind(&Dhcp6Client::doSolicit, &client_, true)),
do_solicit_request_(boost::bind(&Dhcp6Client::doSARR, &client_)) {
}
/// @brief Checks that specified option contains a desired address.
///
/// The option must cast to the @ref Option6AddrLst type. The function
/// expects that this option contains at least one address and checks
/// first address for equality with @ref expected_addr.
///
/// @param option_type Option type.
/// @param expected_addr Desired address.
/// @param config Configuration obtained from the server.
void verifyAddressOption(const uint16_t option_type,
const std::string& expected_addr,
const Dhcp6Client::Configuration& config) const {
Option6AddrLstPtr opt = boost::dynamic_pointer_cast<
Option6AddrLst>(config.findOption(option_type));
ASSERT_TRUE(opt) << "option " << option_type << " not found or it "
"is of incorrect type";
Option6AddrLst::AddressContainer addrs = opt->getAddresses();
ASSERT_GE(addrs.size(), 1) << "test failed for option type " << option_type;
EXPECT_EQ(expected_addr, addrs[0].toText())
<< "test failed for option type " << option_type;
}
/// @brief Verifies that the reservation is retrieved by the server
/// using one of the host identifiers.
///
/// @param client Reference to a client to be used in the test.
/// The client should be preconfigured to insert a specific identifier
/// into the message, e.g. DUID, HW address etc.
/// @param config_index Index of the configuration to use in the CONFIGS
/// table.
/// @param exp_ip_address Expected IPv6 address in the returned
/// reservation.
void testReservationByIdentifier(Dhcp6Client& client,
const unsigned int config_index,
const std::string& exp_ip_address) {
configure(CONFIGS[config_index], *client.getServer());
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(1, subnets->size());
// Configure client to request IA_NA and append IA_NA option
// to the client's message.
client.requestAddress(1234, IOAddress("2001:db8:1:1::dead:beef"));
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Verify that the client we got the reserved address
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client = client.getLease(0);
EXPECT_EQ(exp_ip_address, lease_client.addr_.toText());
}
/// @brief Initiate exchange with DHCPv6 server.
///
/// This method initiates DHCPv6 message exchange between a specified
/// client a the server. The msg_type is used to indicate what kind
/// of exchange should be initiated. If the message type is a Renew
/// or Rebind, the 4-way handshake is made first. If the message type
/// is a Request, the Solicit-Advertise is done prior to this.
///
/// @param msg_type Message type to be sent to the server.
/// @param client Reference to a client to be used to initiate the
/// exchange with the server.
void doExchange(const uint16_t msg_type, Dhcp6Client& client);
/// @brief Verifies that host specific options override subnet specific
/// options.
///
/// Overriden options are requested with Option Request option.
///
/// @param msg_type DHCPv6 message type to be sent to the server. If the
/// message type is Renew or Rebind, the 4-way exchange is made prior to
/// sending a Renew or Rebind. For a Request case, the Solicit-Advertise
/// is also performed.
void testOverrideRequestedOptions(const uint16_t msg_type);
/// @brief Verifies that client receives options when they are solely
/// defined in the host scope (and not in the global, subnet or pool
/// scope).
///
/// @param msg_type DHCPv6 message type to be sent to the server. If the
/// message type is Renew or Rebind, the 4-way exchange is made prior to
/// sending a Renew or Rebind. For a Request case, the Solicit-Advertise
/// is also performed.
void testHostOnlyOptions(const uint16_t msg_type);
/// @brief Verifies that host specific vendor options override vendor
/// options defined in the global scope.
///
/// @param msg_type DHCPv6 message type to be sent to the server. If the
/// message type is Renew or Rebind, the 4-way exchange is made prior to
/// sending a Renew or Rebind. For a Request case, the Solicit-Advertise
/// is also performed.
void testOverrideVendorOptions(const uint16_t msg_type);
/// @brief Checks if the client obtained lease for specified reservation.
///
/// @param r Reservation.
/// @param [out] address_count This value is incremented if the client
/// obtained the address lease.
/// @param [out] prefix_count This value is incremented if the client
/// obtained the prefix lease.
void testLeaseForIA(const Reservation& r, size_t& address_count,
size_t& prefix_count);
/// @brief Checks if the client obtined lease for specified hint.
///
/// The hint belongs to a specific IA (identified by IAID) and is expected
/// to be returned in this IA by the server.
///
/// @param h Hint.
void testLeaseForIA(const Hint& h);
/// @brief A generic test for assigning multiple reservations to a single
/// client sending multiple IAs.
///
/// This test creates a server configuration which includes one subnet,
/// address pool of "2001:db8:1::1 - 2001:db8:1::10" and the prefix pool
/// of 3001::/32, with delegated prefix length of 64. The configuration
/// may include between 0 and 6 reservations for a client with DUID of
/// "01:02:03:04".
///
/// The test performs an exchange with a server, typically 4-way exchange
/// or Solicit-Advertise. The client's message includes 3 IA_NAs (with
/// IAIDs in range of 1..3) and 3 IA_PDs (with IAIDs in range of 4..6).
///
/// It is possible to specify hints for selected IAs. The IA is in such
/// case identified by the IAID.
///
/// The test expects that the server returns 6 leases. It checks if those
/// leases contain all reserved addresses and prefixes specified as
/// arguments of the test. If the number of IAs is greater than the
/// number of reservations it checks that for the remaining IAs the
/// leases from dynamic pools are assigned.
///
/// The strict_iaid_check flag controls whether the test should verify
/// that the address or prefix specified as a hint is assigned by the
/// server to the IA in which the hint was placed by the client.
///
/// @param client_operation Dhcp6Client function to be executed to
/// perform an exchange with the server.
/// @param r1 Reservation 1. Default value is "unspecified", in which
/// case the reservation will not be created.
/// @param r2 Reservation 2.
/// @param r3 Reservation 3.
/// @param r4 Reservation 4.
/// @param r5 Reservation 5.
/// @param r6 Reservation 6.
/// @param strict_iaid_check Indicates if the test should check if the
/// hints sent by the client have been allocated by the server to the
/// particular IAs. Default value is NO (no checks).
/// @param h1 Hint 1. Default value is "unspecified", in which case the
/// hint will not be included.
/// @param h2 Hint 2.
/// @param h3 Hint 3.
/// @param h4 Hint 4.
/// @param h5 Hint 5.
/// @param h6 Hint 6.
void testMultipleIAs(const boost::function<void ()>& client_operation,
const Reservation& r1 = Reservation::UNSPEC(),
const Reservation& r2 = Reservation::UNSPEC(),
const Reservation& r3 = Reservation::UNSPEC(),
const Reservation& r4 = Reservation::UNSPEC(),
const Reservation& r5 = Reservation::UNSPEC(),
const Reservation& r6 = Reservation::UNSPEC(),
const StrictIAIDChecking& strict_iaid_check =
StrictIAIDChecking::NO(),
const Hint& h1 = Hint::UNSPEC(),
const Hint& h2 = Hint::UNSPEC(),
const Hint& h3 = Hint::UNSPEC(),
const Hint& h4 = Hint::UNSPEC(),
const Hint& h5 = Hint::UNSPEC(),
const Hint& h6 = Hint::UNSPEC());
/// @brief Checks if specified reservation is for address or prefix and
/// stores reservation in the textual format on one of the lists.
///
/// @param [out] address_list Reference to a list containing address
/// reservations.
/// @param [out] prefix_list Reference to a list containing prefix
/// reservations.
static void storeReservation(const Reservation& r,
std::list<std::string>& address_list,
std::list<std::string>& prefix_list);
/// @brief Creates configuration for testing processing multiple IAs.
///
/// This method creates a server configuration which includes one subnet,
/// address pool of "2001:db8:1::1 - 2001:db8:1::10" and the prefix pool
/// of 3001::/32, with delegated prefix length of 64. The configuration
/// may include between 0 and 6 reservations for a client with DUID of
/// "01:02:03:04".
///
/// @param r1 Reservation 1. Default value is "unspecified" in which case
/// the reservation will not be included in the configuration.
/// @param r2 Reservation 2.
/// @param r3 Reservation 3.
/// @param r4 Reservation 4.
/// @param r5 Reservation 5.
/// @param r6 Reservation 6.
///
/// @return Text containing server configuration in JSON format.
std::string configString(const DUID& duid,
const Reservation& r1 = Reservation::UNSPEC(),
const Reservation& r2 = Reservation::UNSPEC(),
const Reservation& r3 = Reservation::UNSPEC(),
const Reservation& r4 = Reservation::UNSPEC(),
const Reservation& r5 = Reservation::UNSPEC(),
const Reservation& r6 = Reservation::UNSPEC()) const;
/// @brief Configures client to include hint.
///
/// @param client Reference to a client.
/// @param hint Const reference to an object holding the hint.
static void requestIA(Dhcp6Client& client, const Hint& hint);
/// @brief Configures client to include 6 IAs without hints.
///
/// This method configures the client to include 3 IA_NAs and
/// 3 IA_PDs.
///
/// @param client Reference to a client.
static void requestEmptyIAs(Dhcp6Client& client);
/// @brief Interface Manager's fake configuration control.
IfaceMgrTestConfig iface_mgr_test_config_;
/// @brief Instance of the common DHCPv6 client.
Dhcp6Client client_;
/// @brief Pointer to the Dhcp6Client::doSolicit method.
boost::function<void() > do_solicit_;
/// @brief Pointer to the Dhcp6Client::doSARR method.
boost::function<void() > do_solicit_request_;
};
void
HostTest::doExchange(const uint16_t msg_type, Dhcp6Client& client) {
switch (msg_type) {
case DHCPV6_INFORMATION_REQUEST:
ASSERT_NO_THROW(client.doInfRequest());
break;
case DHCPV6_REQUEST:
ASSERT_NO_THROW(client.doSARR());
break;
case DHCPV6_SOLICIT:
ASSERT_NO_THROW(client.doSolicit());
break;
case DHCPV6_RENEW:
ASSERT_NO_THROW(client.doSARR());
ASSERT_NO_THROW(client.doRenew());
break;
case DHCPV6_REBIND:
ASSERT_NO_THROW(client.doSARR());
ASSERT_NO_THROW(client.doRebind());
break;
default:
;
}
// Make sure that the server has responded with a Reply.
ASSERT_TRUE(client.getContext().response_);
ASSERT_EQ(DHCPV6_REPLY, client.getContext().response_->getType());
}
void
HostTest::testOverrideRequestedOptions(const uint16_t msg_type) {
Dhcp6Client client;
// Reservation has been made for a client with this DUID.
client.setDUID("01:02:03:05");
// Request all options specified in the configuration.
client.requestOption(D6O_NAME_SERVERS);
client.requestOption(D6O_NIS_SERVERS);
client.requestOption(D6O_NISP_SERVERS);
client.requestOption(D6O_SNTP_SERVERS);
configure(CONFIGS[3], *client.getServer());
ASSERT_NO_FATAL_FAILURE(doExchange(msg_type, client));
{
SCOPED_TRACE("host specific dns-servers");
// Host specific DNS server should be used.
verifyAddressOption(D6O_NAME_SERVERS, "3000:1::234", client.config_);
}
{
SCOPED_TRACE("host specific nis-servers");
// Host specific NIS server should be used.
verifyAddressOption(D6O_NIS_SERVERS, "3000:1::234", client.config_);
}
{
SCOPED_TRACE("subnet specific sntp-servers");
// Subnet specific SNTP server should be used as it is not specified
// in a host scope.
verifyAddressOption(D6O_SNTP_SERVERS, "3000:2::123", client.config_);
}
{
SCOPED_TRACE("global nisp-servers");
// Globally specified NISP server should be used as it is not
// specified in a host scope.
verifyAddressOption(D6O_NISP_SERVERS, "3000:3::123", client.config_);
}
}
void
HostTest::testLeaseForIA(const Reservation& r, size_t& address_count,
size_t& prefix_count) {
if (r.isPrefix()) {
++prefix_count;
EXPECT_TRUE(client_.hasLeaseForPrefix(r.getPrefix(),
r.getPrefixLen(),
IAID(3 + prefix_count)));
} else if (!r.isEmpty()) {
++address_count;
EXPECT_TRUE(client_.hasLeaseForAddress(r.getPrefix(),
IAID(address_count)));
}
}
void
HostTest::testLeaseForIA(const Hint& h) {
if (h.isPrefix()) {
EXPECT_TRUE(client_.hasLeaseForPrefix(h.getPrefix(), h.getPrefixLen(),
h.getIAID()))
<< "there is no lease for prefix " << h.toText()
<< " and IAID = " << h.getIAID();
} else if (!h.isEmpty()) {
EXPECT_TRUE(client_.hasLeaseForAddress(h.getPrefix(), h.getIAID()))
<< "there is no lease for address " << h.toText()
<< " and IAID = " << h.getIAID();
}
}
void
HostTest::testMultipleIAs(const boost::function<void ()>& client_operation,
const Reservation& r1, const Reservation& r2,
const Reservation& r3, const Reservation& r4,
const Reservation& r5, const Reservation& r6,
const StrictIAIDChecking& strict_iaid_check,
const Hint& h1, const Hint& h2 ,
const Hint& h3, const Hint& h4,
const Hint& h5, const Hint& h6) {
client_.setDUID("01:02:03:04");
/// Create configuration with 0 to 6 reservations.
const std::string c = configString(*client_.getDuid(), r1, r2, r3,
r4, r5, r6);
ASSERT_NO_THROW(configure(c, *client_.getServer()));
// First includes all IAs. They are initially empty.
requestEmptyIAs(client_);
// For each specified hint, include it in the respective IA. Hints
// which are "unspecified" will not be included.
requestIA(client_, h1);
requestIA(client_, h2);
requestIA(client_, h3);
requestIA(client_, h4);
requestIA(client_, h5);
requestIA(client_, h6);
// Send Solicit and require that the client saves received configuration
// so as we can test that advertised configuration is correct.
ASSERT_NO_THROW(client_operation());
ASSERT_EQ(6, client_.getLeaseNum());
// Count reserved addresses and prefixes assigned from reservations.
size_t address_count = 0;
size_t prefix_count = 0;
testLeaseForIA(r1, address_count, prefix_count);
testLeaseForIA(r2, address_count, prefix_count);
testLeaseForIA(r3, address_count, prefix_count);
testLeaseForIA(r4, address_count, prefix_count);
testLeaseForIA(r5, address_count, prefix_count);
testLeaseForIA(r6, address_count, prefix_count);
// Get all addresses assigned from the dynamic pool (not reserved).
std::vector<Lease6> leases =
client_.getLeasesByAddressRange(IOAddress("2001:db8:1::1"),
IOAddress("2001:db8:1::10"));
// There are 3 IA_NAs and for a few we have assigned reserved addresses.
// The remaining ones should be assigned from the dynamic pool.
ASSERT_EQ(3 - address_count, leases.size());
// Get all prefixes assigned from the dynamic pool (not reserved).
leases = client_.getLeasesByPrefixPool(IOAddress("3001::"), 32, 64);
ASSERT_EQ(3 - prefix_count, leases.size());
// Check that the hints have been allocated to respective IAs.
if (strict_iaid_check) {
testLeaseForIA(h1);
testLeaseForIA(h2);
testLeaseForIA(h3);
testLeaseForIA(h4);
testLeaseForIA(h5);
testLeaseForIA(h6);
}
}
void
HostTest::storeReservation(const Reservation& r,
std::list<std::string>& address_list,
std::list<std::string>& prefix_list) {
if (!r.isEmpty()) {
if (r.isPrefix()) {
prefix_list.push_back(r);
} else {
address_list.push_back(r);
}
}
}
std::string
HostTest::configString(const DUID& duid,
const Reservation& r1, const Reservation& r2,
const Reservation& r3, const Reservation& r4,
const Reservation& r5, const Reservation& r6) const {
std::list<std::string> address_list;
std::list<std::string> prefix_list;
storeReservation(r1, address_list, prefix_list);
storeReservation(r2, address_list, prefix_list);
storeReservation(r3, address_list, prefix_list);
storeReservation(r4, address_list, prefix_list);
storeReservation(r5, address_list, prefix_list);
storeReservation(r6, address_list, prefix_list);
std::ostringstream s;
s << "{ "
"\"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"valid-lifetime\": 4000, "
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": [ "
" { "
" \"subnet\": \"2001:db8:1::/48\", "
" \"pools\": [ { \"pool\": \"2001:db8:1::1 - 2001:db8:1::10\" } ],"
" \"pd-pools\": [ { \"prefix\": \"3001::\", \"prefix-len\": 32,"
" \"delegated-len\": 64 } ],"
" \"interface\" : \"eth0\"";
// Create reservations.
if (!address_list.empty() || !prefix_list.empty()) {
s << ","
" \"reservations\": ["
" {"
" \"duid\": ";
s << "\"" << duid.toText() << "\",";
if (!address_list.empty()) {
s << " \"ip-addresses\": [ "
<< boost::algorithm::join(address_list, ", ")
<< "]";
}
if (!prefix_list.empty()) {
if (!address_list.empty()) {
s << ", ";
}
s << " \"prefixes\": [ "
<< boost::algorithm::join(prefix_list, ", ")
<< "]";
}
s << " } ]";
}
s << " } ]"
"}";
return (s.str());
}
void
HostTest::requestIA(Dhcp6Client& client, const Hint& hint) {
if ((hint.getIAID() != 0) && !hint.isEmpty()) {
if (hint.isPrefix()) {
client.requestPrefix(hint.getIAID(), hint.getPrefixLen(),
hint.getPrefix());
} else {
client.requestAddress(hint.getIAID(), hint.getPrefix());
}
}
}
void
HostTest::testHostOnlyOptions(const uint16_t msg_type) {
Dhcp6Client client;
client.setDUID("01:02:03:05");
client.requestOption(D6O_NAME_SERVERS);
client.requestOption(D6O_NIS_SERVERS);
configure(CONFIGS[3], *client.getServer());
ASSERT_NO_FATAL_FAILURE(doExchange(msg_type, client));
{
SCOPED_TRACE("host specific dns-servers");
// DNS servers are specified only in a host scope.
verifyAddressOption(D6O_NAME_SERVERS, "3000:1::234", client.config_);
}
{
SCOPED_TRACE("host specific nis-servers");
// NIS servers are specified only in a host scope.
verifyAddressOption(D6O_NIS_SERVERS, "3000:1::234", client.config_);
}
}
void
HostTest::testOverrideVendorOptions(const uint16_t msg_type) {
Dhcp6Client client;
client.setDUID("01:02:03:05");
// Client needs to include Vendor Specific Information option
// with ORO suboption, which the server will use to determine
// which suboptions should be returned to the client.
OptionVendorPtr opt_vendor(new OptionVendor(Option::V6,
VENDOR_ID_CABLE_LABS));
// Include ORO with TFTP servers suboption code being requested.
opt_vendor->addOption(OptionPtr(new OptionUint16(Option::V6, DOCSIS3_V6_ORO,
DOCSIS3_V6_TFTP_SERVERS)));
client.addExtraOption(opt_vendor);
configure(CONFIGS[5], *client.getServer());
ASSERT_NO_FATAL_FAILURE(doExchange(msg_type, client));
// Vendor Specific Information option should be returned by the server.
OptionVendorPtr vendor_opt = boost::dynamic_pointer_cast<
OptionVendor>(client.config_.findOption(D6O_VENDOR_OPTS));
ASSERT_TRUE(vendor_opt);
// TFTP server suboption should be returned because it was requested
// with Option Request suboption.
Option6AddrLstPtr tftp = boost::dynamic_pointer_cast<
Option6AddrLst>(vendor_opt->getOption(DOCSIS3_V6_TFTP_SERVERS));
ASSERT_TRUE(tftp);
// Address specified in the host scope should be used.
Option6AddrLst::AddressContainer addrs = tftp->getAddresses();
ASSERT_EQ(addrs.size(), 1);
EXPECT_EQ("3000:1::234", addrs[0].toText());
}
void
HostTest::requestEmptyIAs(Dhcp6Client& client) {
// Create IAs with IAIDs between 1 and 6.
client.requestAddress(1);
client.requestAddress(2);
client.requestAddress(3);
client.requestPrefix(4);
client.requestPrefix(5);
client.requestPrefix(6);
}
// Test basic SARR scenarios against a server configured with one subnet
// containing two reservations. One reservation with a hostname, one
// without a hostname. Scenarios:
//
// - Verify that a client when matched to a host reservation with a hostname
// gets that reservation and the lease hostname matches the reserved hostname
//
// - Verify that a client when matched to a host reservation without a hostname
// gets that reservation and the lease hostname is blank
//
// - Verify that a client that does not match a host reservation gets a dynamic
// lease and the hostname for the lease is blank.
//
TEST_F(HostTest, basicSarrs) {
Dhcp6Client client;
configure(CONFIGS[0], *client.getServer());
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(1, subnets->size());
// Configure client to request IA_NA and append IA_NA option
// to the client's message.
client.setDUID("01:02:03:04");
client.requestAddress(1234, IOAddress("2001:db8:1:1::dead:beef"));
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Verify that the client we got the reserved address
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client = client.getLease(0);
EXPECT_EQ("2001:db8:1:1::babe", lease_client.addr_.toText());
// Check that the server recorded the lease.
// and lease has reserved hostname
Lease6Ptr lease_server = checkLease(lease_client);
ASSERT_TRUE(lease_server);
EXPECT_EQ("alice", lease_server->hostname_);
// Now redo the client, adding one to the DUID
client.clearConfig();
client.modifyDUID();
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Verify that the client we got the reserved address
ASSERT_EQ(1, client.getLeaseNum());
lease_client = client.getLease(0);
EXPECT_EQ("2001:db8:1:1::babf", lease_client.addr_.toText());
// Check that the server recorded the lease.
// and that the server lease has NO hostname
lease_server = checkLease(lease_client);
ASSERT_TRUE(lease_server);
EXPECT_EQ("", lease_server->hostname_);
// Now redo the client with yet another DUID and verify that
// we get a dynamic address.
client.clearConfig();
client.modifyDUID();
client.clearRequestedIAs();
client.requestAddress(1234);
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Verify that the client got a dynamic address
ASSERT_EQ(1, client.getLeaseNum());
lease_client = client.getLease(0);
EXPECT_EQ("2001:db8:1:1::", lease_client.addr_.toText());
// Check that the server recorded the lease.
// and that the server lease has NO hostname
lease_server = checkLease(lease_client);
ASSERT_TRUE(lease_server);
EXPECT_EQ("", lease_server->hostname_);
}
// Test basic SARR and renew situation with a client that matches a host
// reservation
TEST_F(HostTest, sarrAndRenew) {
Dhcp6Client client;
configure(CONFIGS[0], *client.getServer());
// Configure client to request IA_NA.
client.requestAddress();
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(1, subnets->size());
// Configure client to request IA_NA and aAppend IA_NA option
// to the client's message.
client.setDUID("01:02:03:04");
client.requestAddress(1234, IOAddress("2001:db8:1:1::dead:beef"));
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Now play with time
client.fastFwdTime(1000);
// Verify that the client we got the reserved address
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client = client.getLease(0);
EXPECT_EQ("2001:db8:1:1::babe", lease_client.addr_.toText());
// Do not send the hint while renewing.
client.clearRequestedIAs();
// Send Renew message to the server.
ASSERT_NO_THROW(client.doRenew());
// Verify that we got an extended lease back
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client2 = client.getLease(0);
EXPECT_EQ("2001:db8:1:1::babe", lease_client2.addr_.toText());
// 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 and that we have the reserved host name.
Lease6Ptr lease_server2 = checkLease(lease_client2);
EXPECT_TRUE(lease_server2);
EXPECT_EQ("alice", lease_server2->hostname_);
}
// Test basic SARR and rebind situation with a client that matches a host
// reservation.
TEST_F(HostTest, sarrAndRebind) {
Dhcp6Client client;
configure(CONFIGS[0], *client.getServer());
// Configure client to request IA_NA.
client.requestAddress();
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(1, subnets->size());
// Configure client to request IA_NA and aAppend IA_NA option
// to the client's message.
client.setDUID("01:02:03:04");
client.requestAddress(1234, IOAddress("2001:db8:1:1::dead:beef"));
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Now play with time
client.fastFwdTime(1000);
// Verify that the client we got the reserved address
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client = client.getLease(0);
EXPECT_EQ("2001:db8:1:1::babe", lease_client.addr_.toText());
// Do not send the hint while renewing.
client.clearRequestedIAs();
// Send Rebind message to the server.
ASSERT_NO_THROW(client.doRebind());
// Verify that we got an extended lease back
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client2 = client.getLease(0);
EXPECT_EQ("2001:db8:1:1::babe", lease_client2.addr_.toText());
// 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 and that we have the reserved host name.
Lease6Ptr lease_server2 = checkLease(lease_client2);
EXPECT_TRUE(lease_server2);
EXPECT_EQ("alice", lease_server2->hostname_);
}
// This test verifies that the host reservation by DUID is found by the
// server.
TEST_F(HostTest, reservationByDUID) {
Dhcp6Client client;
// Set DUID matching the one used to create host reservations.
client.setDUID("01:02:03:05");
// Run the actual test.
testReservationByIdentifier(client, 1, "2001:db8:1::2");
}
// This test verifies that the host reservation by HW address is found
// by the server.
TEST_F(HostTest, reservationByHWAddress) {
Dhcp6Client client;
// Set link local address for the client which the server will
// use to decode the HW address as 38:60:77:d5:ff:ee. This
// decoded address will be used to search for host reservations.
client.setLinkLocal(IOAddress("fe80::3a60:77ff:fed5:ffee"));
// Run the actual test.
testReservationByIdentifier(client, 1, "2001:db8:1::1");
}
// This test verifies that order in which host identifiers are used to
// retrieve host reservations can be controlled.
TEST_F(HostTest, hostIdentifiersOrder) {
Dhcp6Client client;
// Set DUID matching the one used to create host reservations.
client.setDUID("01:02:03:05");
// Set link local address for the client which the server will
// use to decode the HW address as 38:60:77:d5:ff:ee. This
// decoded address will be used to search for host reservations.
client.setLinkLocal(IOAddress("fe80::3a60:77ff:fed5:ffee"));
testReservationByIdentifier(client, 2, "2001:db8:1::2");
}
// This test checks that host specific options override subnet specific
// and pool specific options. Overridden options are requested with Option
// Request option (Information-request case).
TEST_F(HostTest, overrideRequestedOptionsInformationRequest) {
testOverrideRequestedOptions(DHCPV6_INFORMATION_REQUEST);
}
// This test checks that host specific options override subnet specific
// and pool specific options. Overridden options are requested with Option
// Request option (Request case).
TEST_F(HostTest, overrideRequestedOptionsRequest) {
testOverrideRequestedOptions(DHCPV6_REQUEST);
}
// This test checks that host specific options override subnet specific
// and pool specific options. Overridden options are requested with Option
// Request option (Renew case).
TEST_F(HostTest, overrideRequestedOptionsRenew) {
testOverrideRequestedOptions(DHCPV6_RENEW);
}
// This test checks that host specific options override subnet specific
// and pool specific options. Overridden options are requested with Option
// Request option (Rebind case).
TEST_F(HostTest, overrideRequestedOptionsRebind) {
testOverrideRequestedOptions(DHCPV6_REBIND);
}
// This test checks that client receives options when they are
// solely defined in the host scope and not in the global or subnet
// scope (Information-request case).
TEST_F(HostTest, testHostOnlyOptionsInformationRequest) {
testHostOnlyOptions(DHCPV6_INFORMATION_REQUEST);
}
// This test checks that client receives options when they are
// solely defined in the host scope and not in the global or subnet
// scope (Request case).
TEST_F(HostTest, testHostOnlyOptionsRequest) {
testHostOnlyOptions(DHCPV6_REQUEST);
}
// This test checks that client receives options when they are
// solely defined in the host scope and not in the global or subnet
// scope (Renew case).
TEST_F(HostTest, testHostOnlyOptionsRenew) {
testHostOnlyOptions(DHCPV6_RENEW);
}
// This test checks that client receives options when they are
// solely defined in the host scope and not in the global or subnet
// scope (Rebind case).
TEST_F(HostTest, testHostOnlyOptionsRebind) {
testHostOnlyOptions(DHCPV6_REBIND);
}
// This test checks that host specific vendor options override vendor
// options defined in the global scope (Request case).
TEST_F(HostTest, overrideVendorOptionsRequest) {
testOverrideVendorOptions(DHCPV6_REQUEST);
}
// This test checks that host specific vendor options override vendor
// options defined in the global scope (Renew case).
TEST_F(HostTest, overrideVendorOptionsRenew) {
testOverrideVendorOptions(DHCPV6_RENEW);
}
// This test checks that host specific vendor options override vendor
// options defined in the global scope (Rebind case).
TEST_F(HostTest, overrideVendorOptionsRebind) {
testOverrideVendorOptions(DHCPV6_REBIND);
}
// In this test the client sends Solicit with 3 IA_NAs and 3 IA_PDs
// without hints and the server should return those IAs with 3 reserved
// addresses and 3 reserved prefixes.
TEST_F(HostTest, multipleIAsSolicit) {
testMultipleIAs(do_solicit_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("2001:db8:1:1::3"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"),
Reservation("3000:1:3::/64"));
}
// In this test the client performs 4-way exchange, sending 3 IA_NAs
// and 3 IA_PDs without hints. The server should return those IAs
// with 3 reserved addresses and 3 reserved prefixes.
TEST_F(HostTest, multipleIAsRequest) {
testMultipleIAs(do_solicit_request_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("2001:db8:1:1::3"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"),
Reservation("3000:1:3::/64"));
}
// In this test the client sends Solicit with 3 IA_NAs and 3 IA_PDs
// without hints. The server has 2 reservations for addresses and
// 2 reservations for prefixes for this client. The server should
// assign reserved addresses and prefixes to the client, and return
// them in 2 IA_NAs and 2 IA_PDs. For the remaining IA_NA and IA_PD
// the server should allocate address and prefix from a dynamic pools.
TEST_F(HostTest, staticAndDynamicIAs) {
testMultipleIAs(do_solicit_,
Reservation("2001:db8:1:1::2"),
Reservation("2001:db8:1:1::3"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:3::/64"));
}
// In this test the client sends Solicit with 3 IA_NAs and 3 IA_PDs.
// The client includes an address hint for IAID = 1, a prefix length
// hint for the IAID = 5, and the prefix hint for IAID = 6. The hints
// match the reserved resources and should be allocated for the client.
TEST_F(HostTest, multipleIAsHintsForReservations) {
testMultipleIAs(do_solicit_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("2001:db8:1:1::3"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"),
Reservation("3000:1:3::/64"),
StrictIAIDChecking::NO(),
Hint(IAID(1), "2001:db8:1:1::2"),
Hint(IAID(5), "::/64"),
Hint(IAID(6), "3000:1:1::/64"));
}
// In this test the client sends Solicit with 3 IA_NAs and 3 IA_PDs.
// The client includes one address hint for IAID = 1 and one
// prefix hint for IAID = 6. The hints point to an address and prefix
// from the dynamic pools, but because the server has reservations
// for other addresses and prefixes outside the pool, the address
// and prefix specified as hint should not be allocated. Instead
// the server should allocate reserved leases.
TEST_F(HostTest, multipleIAsHintsInPool) {
testMultipleIAs(do_solicit_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("2001:db8:1:1::3"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"),
Reservation("3000:1:3::/64"),
StrictIAIDChecking::NO(),
Hint(IAID(1), "2001:db8:1::2"),
Hint(IAID(6), "3001::/64"));
}
// In this test, the client sends Solicit with 3 IA_NAs and 3 IA_PDs.
// The client includes one address hint for which the client has
// reservation, one prefix hint for which the client has reservation,
// one hint for an address from the dynamic pool and one hint for a
// prefix from a dynamic pool. The server has reservations for 2
// addresses and 2 prefixes. The server should allocate reserved
// leases and address and prefix from a dynamic pool, which client
// included as hints.
TEST_F(HostTest, staticAndDynamicIAsHints) {
testMultipleIAs(do_solicit_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::3"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"),
Reservation::UNSPEC(),
Reservation::UNSPEC(),
StrictIAIDChecking::NO(),
Hint(IAID(1), "2001:db8:1::2"),
Hint(IAID(3), "2001:db8:1:1::1"),
Hint(IAID(5), "3001::/64"),
Hint(IAID(6), "3000::/64"));
}
// In this test, the client sends Solicit with 3 IA_NAs and 3 IA_PDs.
// The server has reservation for two addresses and two prefixes for
// this client. The client includes address hint in the third IA_NA
// and in the third IA_PD. The server should offer 2 addresses in the
// first two IA_NAs and 2 prefixes in the two IA_PDs. The server should
// respect hints provided within the 3rd IA_NA and 3rd IA_PD. The server
// wouldn't respect hints if they were provided within 1st or 2nd IA of
// a given type, because the server always tries to allocate the
// reserved leases in the first place.
TEST_F(HostTest, staticAndDynamicIAsHintsStrictIAIDCheck) {
testMultipleIAs(do_solicit_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"),
Reservation::UNSPEC(),
Reservation::UNSPEC(),
StrictIAIDChecking::YES(),
Hint(IAID(3), "2001:db8:1::5"),
Hint(IAID(6), "3001:0:0:10::/64"));
}
// In this test, the client performs 4-way exchange and includes 3 IA_NAs
// and 3 IA_PDs. The client provides no hints. The server has 3 address
// reservations and 3 prefix reservations for this client and allocates them
// as a result of 4-way exchange. The client then sends a Renew and the server
// should renew all leases allocated for the client during the 4-way exchange.
TEST_F(HostTest, multipleIAsRenew) {
// 4-way exchange
testMultipleIAs(do_solicit_request_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("2001:db8:1:1::3"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"),
Reservation("3000:1:3::/64"));
// Renew
ASSERT_NO_THROW(client_.doRenew());
// Make sure that the client still has the same leases.
ASSERT_EQ(6, client_.getLeaseNum());
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::1")));
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::2")));
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::3")));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:1::"), 64));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:2::"), 64));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:3::"), 64));
}
// In this test, the client performs 4-way exchange and includes 3 IA_NAs
// and IA_PDs. The server has 3 address and 3 prefix reservations for the
// client and allocates them all. Once the 4-way exchange is complete,
// the client sends Solicit in which it specifies hints for all IAs. The
// hints are for the reserved addresses but some of them are included in
// different IAs than they are assigned to. The server should ignore hints
// and respond with currently assigned leases.
TEST_F(HostTest, multipleIAsSolicitAfterAcquisition) {
// 4-way exchange
testMultipleIAs(do_solicit_request_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("2001:db8:1:1::3"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"),
Reservation("3000:1:3::/64"));
client_.clearRequestedIAs();
// Specify hints.
// "2001:db8:1:1::1" is allocated for IAID = 1 but we specify it as
// a hint for IAID = 3 and so on.
requestIA(client_, Hint(IAID(3), "2001:db8:1:1::1"));
requestIA(client_, Hint(IAID(2), "2001:db8:1:1::2"));
requestIA(client_, Hint(IAID(1), "2001:db8:1:1::3"));
requestIA(client_, Hint(IAID(6), "3000:1:1::/64"));
requestIA(client_, Hint(IAID(5), "3000:1:2::/64"));
requestIA(client_, Hint(IAID(4), "3000:1:3::/64"));
// Send Solicit with hints as specified above.
ASSERT_NO_THROW(do_solicit_());
// Make sure that the client still has the same leases and the leases
// should be assigned to the same IAs.
ASSERT_EQ(6, client_.getLeaseNum());
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::1"),
IAID(1)));
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::2"),
IAID(2)));
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::3"),
IAID(3)));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:1::"), 64,
IAID(4)));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:2::"), 64,
IAID(5)));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:3::"), 64,
IAID(6)));
}
// In this test, the client performs 4-way exchange and includes 3 IA_NAs and
// 3 IA_PDs and includes no hints. The server has reservations for 2 addresses
// and 2 prefixes for this client. The server allocates reserved leases and
// an additional address and prefix from the dynamic pools. The server is
// reconfigured to add 3rd address and 3rd prefix reservation for the client.
// The client sends a Renew and the server should renew existing leases and
// allocate newly reserved address and prefix, replacing the previously
// allocated dynamic leases. For both dynamically allocated leases, the
// server should return IAs with zero lifetimes.
TEST_F(HostTest, appendReservationDuringRenew) {
// 4-way exchange to acquire 4 reserved leases and 2 dynamic leases.
testMultipleIAs(do_solicit_request_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"));
// The server must have not lease for the address and prefix for which
// we will later make reservations, because these are outside of the
// dynamic pool.
ASSERT_FALSE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::3")));
ASSERT_FALSE(client_.hasLeaseForPrefix(IOAddress("3000:1:3::"), 64));
// Retrieve leases from the dynamic pools and store them so as we can
// later check that they were returned with zero lifetimes when the
// reservations are added.
std::vector<Lease6> leases =
client_.getLeasesByAddressRange(IOAddress("2001:db8:1::1"),
IOAddress("2001:db8:1::10"));
ASSERT_EQ(1, leases.size());
IOAddress dynamic_address_lease = leases[0].addr_;
leases = client_.getLeasesByPrefixPool(IOAddress("3001::"), 32, 64);
ASSERT_EQ(1, leases.size());
IOAddress dynamic_prefix_lease = leases[0].addr_;
// Add two additional reservations.
std::string c = configString(*client_.getDuid(),
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("2001:db8:1:1::3"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"),
Reservation("3000:1:3::/64"));
ASSERT_NO_THROW(configure(c, *client_.getServer()));
// Client renews and includes all leases it currently has in the IAs.
ASSERT_NO_THROW(client_.doRenew());
// The expectation is that the server allocated two new reserved leases to
// the client and removed leases allocated from the dynamic pools. The
// number if leases in the server configuration should include those that
// are returned with zero lifetimes. Hence, the total number of leases
// should be equal to 6 + 2 = 8.
ASSERT_EQ(8, client_.getLeaseNum());
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::1")));
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::2")));
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::3")));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:1::"), 64));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:2::"), 64));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:3::"), 64));
// Make sure that the replaced leases have been returned with zero liftimes.
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForAddress(dynamic_address_lease));
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForPrefix(dynamic_prefix_lease, 64));
// Now let's test the scenario when all reservations are removed for this
// client.
c = configString(*client_.getDuid());
ASSERT_NO_THROW(configure(c, *client_.getServer()));
// An attempt to renew should result in removing all allocated leases,
// because these leases are no longer reserved and they don't belong to the
// dynamic pools.
ASSERT_NO_THROW(client_.doRenew());
// The total number of leases should include removed leases and newly
// allocated once, i.e. 6 + 6 = 12.
ASSERT_EQ(12, client_.getLeaseNum());
// All removed leases should be returned with zero liftimes.
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForAddress(IOAddress("2001:db8:1:1::1")));
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForAddress(IOAddress("2001:db8:1:1::2")));
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForAddress(IOAddress("2001:db8:1:1::3")));
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForPrefix(IOAddress("3000:1:1::"), 64));
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForPrefix(IOAddress("3000:1:2::"), 64));
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForPrefix(IOAddress("3000:1:3::"), 64));
// Make sure that all address leases are within the dynamic pool range.
leases = client_.getLeasesByAddressRange(IOAddress("2001:db8:1::1"),
IOAddress("2001:db8:1::10"));
EXPECT_EQ(3, leases.size());
// Make sure that all prefix leases are also within the dynamic pool range.
leases = client_.getLeasesByPrefixPool(IOAddress("3001::"), 32, 64);
EXPECT_EQ(3, leases.size());
}
// In this test, the client performs 4-way exchange and includes 3 IA_NAs
// and 3 IA_PDs. Initially, the server has 2 address reservations and
// 2 prefix reservations for this client. The server allocates the 2
// reserved addresses to the first 2 IA_NAs and 2 reserved prefixes to the
// first two IA_PDs. The server is reconfigured and 2 new reservations are
// inserted: new address reservation before existing address reservations
// and prefix reservation before existing prefix reservations.
// The server should detect that leases already exist for reserved addresses
// and prefixes and it should not remove existing leases. Instead, it should
// replace dynamically allocated leases with newly added reservations
TEST_F(HostTest, insertReservationDuringRenew) {
// 4-way exchange to acquire 4 reserved leases and 2 dynamic leases.
testMultipleIAs(do_solicit_request_,
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"));
// The server must have not lease for the address and prefix for which
// we will later make reservations, because these are outside of the
// dynamic pool.
ASSERT_FALSE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::3")));
ASSERT_FALSE(client_.hasLeaseForPrefix(IOAddress("3000:1:3::"), 64));
// Retrieve leases from the dynamic pools and store them so as we can
// later check that they were returned with zero lifetimes when the
// reservations are added.
std::vector<Lease6> leases =
client_.getLeasesByAddressRange(IOAddress("2001:db8:1::1"),
IOAddress("2001:db8:1::10"));
ASSERT_EQ(1, leases.size());
IOAddress dynamic_address_lease = leases[0].addr_;
leases = client_.getLeasesByPrefixPool(IOAddress("3001::"), 32, 64);
ASSERT_EQ(1, leases.size());
IOAddress dynamic_prefix_lease = leases[0].addr_;
// Add two additional reservations.
std::string c = configString(*client_.getDuid(),
Reservation("2001:db8:1:1::3"),
Reservation("2001:db8:1:1::1"),
Reservation("2001:db8:1:1::2"),
Reservation("3000:1:3::/64"),
Reservation("3000:1:1::/64"),
Reservation("3000:1:2::/64"));
ASSERT_NO_THROW(configure(c, *client_.getServer()));
// Client renews and includes all leases it currently has in the IAs.
ASSERT_NO_THROW(client_.doRenew());
// The expectation is that the server allocated two new reserved leases to
// the client and removed leases allocated from the dynamic pools. The
// number if leases in the server configuration should include those that
// are returned with zero lifetimes. Hence, the total number of leases
// should be equal to 6 + 2 = 8.
ASSERT_EQ(8, client_.getLeaseNum());
// Even though the new reservations have been added before existing
// reservations, the server should assign them to the IAs with
// IAID = 3 (for address) and IAID = 6 (for prefix).
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::1"),
IAID(1)));
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::2"),
IAID(2)));
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1:1::3"),
IAID(3)));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:1::"), 64,
IAID(4)));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:2::"), 64,
IAID(5)));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3000:1:3::"), 64,
IAID(6)));
// Make sure that the replaced leases have been returned with zero liftimes.
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForAddress(dynamic_address_lease));
EXPECT_TRUE(client_.hasLeaseWithZeroLifetimeForPrefix(dynamic_prefix_lease, 64));
}
// In this test there are two clients. One client obtains two leases: one
// for a prefix, another one for an address. The server is reconfigured
// to make 4 reservations to a different client. Two of those reservations
// are for the prefix and the address assigned to the first client. The
// second client performs 4-way exchange and the server detects that two
// reserved leases are not available because they are in use by another
// client. The server assigns available address and prefix and an address
// and prefix from dynamic pool. The first client renews and the server
// detects that the renewed leases are reserved for another client. As
// a result, the client obtains an address and prefix from the dynamic
// pools. The second client renews and it obtains all reserved
// addresses and prefixes.
TEST_F(HostTest, multipleIAsConflict) {
Dhcp6Client client;
client.setDUID("01:02:03:05");
// Create configuration without any reservations.
std::string c = configString(*client_.getDuid());
ASSERT_NO_THROW(configure(c, *client_.getServer()));
// First client performs 4-way exchange and obtains an address and
// prefix indicated in hints.
requestIA(client, Hint(IAID(1), "2001:db8:1::1"));
requestIA(client, Hint(IAID(2), "3001:0:0:10::/64"));
ASSERT_NO_THROW(client.doSARR());
// Make sure the client has obtained requested leases.
ASSERT_TRUE(client.hasLeaseForAddress(IOAddress("2001:db8:1::1"), IAID(1)));
ASSERT_TRUE(client.hasLeaseForPrefix(IOAddress("3001:0:0:10::"), 64,
IAID(2)));
// Reconfigure the server to make reservations for the second client.
// The reservations include a prefix and address acquired by the
// first client in the previous transaction.
c = configString(*client_.getDuid(),
Reservation("2001:db8:1::1"),
Reservation("2001:db8:1::2"),
Reservation("3001:0:0:9::/64"),
Reservation("3001:0:0:10::/64"));
ASSERT_NO_THROW(configure(c, *client_.getServer()));
// Configure the second client to send two IA_NAs and two IA_PDs with
// IAIDs from 1 to 4.
client_.requestAddress(1);
client_.requestAddress(2);
client_.requestPrefix(3);
client_.requestPrefix(4);
// Perform 4-way exchange.
ASSERT_NO_THROW(do_solicit_request_());
// The client should have obtained 4 leases: two prefixes and two addresses.
ASSERT_EQ(4, client_.getLeaseNum());
// The address "2001:db8:1::2" is reserved and available so the
// server should have assigned it.
ASSERT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1::2"),
IAID(1)));
// The address "2001:db8:1::1" was hijacked by another client so it
// must not be assigned to thsi client.
ASSERT_FALSE(client_.hasLeaseForAddress(IOAddress("2001:db8:1::1")));
// This client should have got an address from the dynamic pool excluding
// two addresses already assigned, i.e. excluding "2001:db8:1::1" and
// "2001:db8:1::2".
ASSERT_TRUE(client_.hasLeaseForAddressRange(IOAddress("2001:db8:1::3"),
IOAddress("2001:db8:1::10")));
// Same story with prefixes.
ASSERT_TRUE(client_.hasLeaseForPrefix(IOAddress("3001:0:0:9::"), 64,
IAID(3)));
ASSERT_FALSE(client_.hasLeaseForPrefix(IOAddress("3001:0:0:10::"), 64));
// Now that the reservations have been made, the first client should get
// non-reserved leases upon renewal. The server detects that the leases
// are reserved for someone else.
ASSERT_NO_THROW(client.doRenew());
// For those leases, the first client should get 0 lifetimes.
ASSERT_TRUE(client.hasLeaseWithZeroLifetimeForAddress(IOAddress("2001:db8:1::1")));
ASSERT_TRUE(client.hasLeaseWithZeroLifetimeForPrefix(IOAddress("3001:0:0:10::"), 64));
// The total number of leases should be 4 - two leases with zero lifetimes
// and two leases with address and prefix from the dynamic pools, which
// replace previously assigned leases. We don't care too much what those
// leases are, though.
EXPECT_EQ(4, client.getLeaseNum());
// The second client renews and the server should be now able to assign
// all reserved leases to this client.
ASSERT_NO_THROW(client_.doRenew());
// Client requests 4 leases, but there are additional two with zero
// lifetimes to indicate that the client should not use the address
// and prefix from the dynamic pools anymore.
ASSERT_EQ(6, client_.getLeaseNum());
// Check that the client has all reserved leases.
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1::2"),
IAID(1)));
EXPECT_TRUE(client_.hasLeaseForAddress(IOAddress("2001:db8:1::1"),
IAID(2)));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3001:0:0:9::"), 64,
IAID(3)));
EXPECT_TRUE(client_.hasLeaseForPrefix(IOAddress("3001:0:0:10::"), 64,
IAID(4)));
}
} // end of anonymous namespace
|