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 | // Copyright (C) 2014-2024 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 <dhcp/testutils/iface_mgr_test_config.h>
#include <dhcp/option6_client_fqdn.h>
#include <dhcp/option6_pdexclude.h>
#include <dhcp6/tests/dhcp6_test_utils.h>
#include <dhcp6/tests/dhcp6_client.h>
#include <dhcpsrv/cfgmgr.h>
#include <dhcpsrv/d2_client_mgr.h>
#include <asiolink/io_address.h>
#include <stats/stats_mgr.h>
#include <set><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <vector><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
using namespace isc;
using namespace isc::asiolink;
using namespace isc::dhcp;
using namespace isc::dhcp::test;
using namespace isc::stats;
namespace {
/// @brief Set of JSON configurations used by the SARR unit tests.
///
/// - Configuration 0:
/// - one subnet 3000::/32 used on eth0 interface
/// - prefixes of length 64, delegated from the pool: 2001:db8:3::/48
/// - the delegated prefix was intentionally selected to not match the
/// subnet prefix, to test that the delegated prefix doesn't need to
/// match the subnet prefix
///
/// - Configuration 1:
/// - two subnets 2001:db8:1::/48 and 2001:db8:2::/48
/// - first subnet assigned to interface eth0, another one assigned to eth1
/// - one pool for subnet in a range of 2001:db8:X::1 - 2001:db8:X::10,
/// where X is 1 or 2
/// - enables Rapid Commit for the first subnet and disables for the second
/// one
/// - DNS updates enabled
///
/// - Configuration 2:
/// - single subnet 3000::/32,
/// - two options specified in the subnet scope,
/// - one option specified at the global scope,
/// - two address pools: 3000::10-3000::20, 3000::40-3000::50,
/// - two prefix pools: 2001:db8:3::/64 and 2001:db8:4::/64,
/// - an option with unique value specified for each pool, so as it is
/// possible to test that pool specific options can be assigned.
///
/// - Configuration 3:
/// - one subnet 3000::/32 used on eth0 interface
/// - prefixes of length 64, delegated from the pool: 2001:db8:3::/48
/// - Excluded Prefix specified (RFC 6603).
///
/// - Configuration 4:
/// - Simple configuration with a single subnet
/// - Two host reservations, one out of the pool, another one in pool
/// - The reservations-in-subnet and reservations-out-of-pool flags are set to
/// true to test that only out of pool reservations are honored.
///
/// - Configuration 5:
/// - Selects random allocator for addresses.
/// - One subnet with three distinct pools.
/// - Random allocator enabled globally for addresses.
/// - Iterative allocator for prefix delegation.
///
/// - Configuration 6:
/// - Selects random allocator for delegated prefixes.
/// - One subnet with three distinct pools.
/// - Random allocator enabled globally for delegated prefixes.
/// - Iterative allocator for address allocation.
///
/// - Configation 7:
/// - Cache max age and threshold.
///
/// - Configuration 8 (derived from 3):
/// - one subnet 3000::/32 used on eth0 interface
/// - prefixes of length 64, delegated from the pool: 2001:db8:3::/48
/// - Excluded Prefix specified (RFC 6603).
/// - Reservation (which has precedence over the pool) with excluded prefix.
///
const char* CONFIGS[] = {
// Configuration 0
"{ \"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": [ { "
" \"id\": 1, "
" \"pd-pools\": ["
" { \"prefix\": \"2001:db8:3::\", "
" \"prefix-len\": 48, "
" \"delegated-len\": 64"
" } ],"
" \"subnet\": \"3000::/32\", "
" \"interface-id\": \"\","
" \"interface\": \"eth0\""
" } ],"
"\"valid-lifetime\": 4000 }",
// Configuration 1
"{ \"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": [ { "
" \"id\": 1, "
" \"pools\": [ { \"pool\": \"2001:db8:1::1 - 2001:db8:1::10\" } ],"
" \"subnet\": \"2001:db8:1::/48\", "
" \"interface\": \"eth0\","
" \"rapid-commit\": true"
" },"
" {"
" \"id\": 2, "
" \"pools\": [ { \"pool\": \"2001:db8:2::1 - 2001:db8:2::10\" } ],"
" \"subnet\": \"2001:db8:2::/48\", "
" \"interface\": \"eth1\","
" \"rapid-commit\": false"
" } ],"
"\"valid-lifetime\": 4000,"
" \"ddns-qualifying-suffix\": \"example.com\", "
" \"dhcp-ddns\": {"
" \"enable-updates\": true }"
"}",
// Configuration 2
"{ \"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"option-data\": [ {"
" \"name\": \"dns-servers\","
" \"data\": \"3000:1::234\""
"},"
"{"
" \"name\": \"sntp-servers\","
" \"data\": \"3000:2::1\""
"} ],"
"\"subnet6\": [ { "
" \"id\": 1, "
" \"option-data\": [ {"
" \"name\": \"dns-servers\","
" \"data\": \"3000:1::567\""
" },"
" {"
" \"name\": \"sntp-servers\","
" \"data\": \"3000:2::1\""
" } ],"
" \"pools\": [ { "
" \"pool\": \"3000::10 - 3000::20\","
" \"option-data\": [ {"
" \"name\": \"sntp-servers\","
" \"data\": \"3000:2::2\""
" } ]"
" },"
" {"
" \"pool\": \"3000::40 - 3000::50\","
" \"option-data\": [ {"
" \"name\": \"nisp-servers\","
" \"data\": \"3000:2::3\""
" } ]"
" } ],"
" \"pd-pools\": [ { "
" \"prefix\": \"2001:db8:3::\","
" \"prefix-len\": 64,"
" \"delegated-len\": 64,"
" \"option-data\": [ {"
" \"name\": \"dns-servers\","
" \"data\": \"3000:1::678\""
" } ]"
" },"
" {"
" \"prefix\": \"2001:db8:4::\","
" \"prefix-len\": 64,"
" \"delegated-len\": 64,"
" \"option-data\": [ {"
" \"name\": \"nis-servers\","
" \"data\": \"3000:1::789\""
" } ]"
" } ],"
" \"subnet\": \"3000::/32\", "
" \"interface\": \"eth0\""
" } ],"
"\"valid-lifetime\": 4000"
"}",
// Configuration 3
"{ \"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": [ { "
" \"id\": 1, "
" \"pd-pools\": ["
" { \"prefix\": \"2001:db8:3::\", "
" \"prefix-len\": 48, "
" \"delegated-len\": 64,"
" \"excluded-prefix\": \"2001:db8:3::1000\","
" \"excluded-prefix-len\": 120"
" } ],"
" \"subnet\": \"3000::/32\", "
" \"interface-id\": \"\","
" \"interface\": \"eth0\""
" } ],"
"\"valid-lifetime\": 4000"
"}",
// Configuration 4
"{ \"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": [ { "
" \"id\": 1, "
" \"pools\": [ { \"pool\": \"2001:db8:1::1 - 2001:db8:1::10\" } ],"
" \"subnet\": \"2001:db8:1::/48\", "
" \"interface\": \"eth0\", "
" \"reservations-global\": false,"
" \"reservations-in-subnet\": true,"
" \"reservations-out-of-pool\": true,"
" \"reservations\": [ "
" {"
" \"duid\": \"aa:bb:cc:dd:ee:ff\","
" \"ip-addresses\": [\"2001:db8:1::20\"]"
" },"
" {"
" \"duid\": \"11:22:33:44:55:66\","
" \"ip-addresses\": [\"2001:db8:1::5\"]"
" }"
" ]"
"} ]"
"}",
// Configuration 5
"{ \"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"allocator\": \"random\","
"\"pd-allocator\": \"iterative\","
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": ["
" {"
" \"pools\": ["
" {"
" \"pool\": \"3000::20 - 3000::60\""
" }"
" ],"
" \"pd-pools\": ["
" {"
" \"prefix\": \"2001:db8:3::\", "
" \"prefix-len\": 48, "
" \"delegated-len\": 64"
" }"
" ],"
" \"id\": 1, "
" \"subnet\": \"3000::/32\", "
" \"interface\": \"eth0\""
" }"
"],"
"\"valid-lifetime\": 4000 }",
// Configuration 6
"{ \"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"allocator\": \"iterative\","
"\"pd-allocator\": \"random\","
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": ["
" {"
" \"pools\": ["
" {"
" \"pool\": \"3000::20 - 3000::60\""
" }"
" ],"
" \"pd-pools\": ["
" {"
" \"prefix\": \"2001:db8:3::\", "
" \"prefix-len\": 48, "
" \"delegated-len\": 64"
" }"
" ],"
" \"id\": 1, "
" \"subnet\": \"3000::/32\", "
" \"interface\": \"eth0\""
" }"
"],"
"\"valid-lifetime\": 4000 }",
// Configuration 7
R"({
"cache-max-age": 600,
"cache-threshold": .50,
"interfaces-config": {
"interfaces": [ "*" ]
},
"dhcp-ddns": {
"enable-updates": true
},
"ddns-send-updates": true,
"ddns-update-on-renew": true,
"subnet6": [
{
"id": 1,
"interface": "eth0",
"pools": [
{
"pool": "2001:db8::10 - 2001:db8::20"
},
],
"pd-pools": [
{
"prefix": "2001:db8:1::",
"prefix-len": 64,
"delegated-len": 96
},
],
"subnet": "2001:db8::/32"
},
{
"id": 2,
"subnet": "3001:db8::/32"
}
],
"valid-lifetime": 600
})",
// Configuration 8
"{ \"interfaces-config\": {"
" \"interfaces\": [ \"*\" ]"
"},"
"\"preferred-lifetime\": 3000,"
"\"rebind-timer\": 2000, "
"\"renew-timer\": 1000, "
"\"subnet6\": [ { "
" \"id\": 1, "
" \"pd-pools\": ["
" { \"prefix\": \"2001:db8:3::\", "
" \"prefix-len\": 48, "
" \"delegated-len\": 64,"
" \"excluded-prefix\": \"2001:db8:3::1000\","
" \"excluded-prefix-len\": 120"
" } ],"
" \"subnet\": \"3000::/32\", "
" \"reservations\": ["
" {"
" \"duid\": \"01:02:03:05\","
" \"prefixes\": [ \"2001:db8:3::/64\" ],"
" \"excluded-prefixes\": [ \"2001:db8:3::2000/120\" ]"
" } ],"
" \"interface-id\": \"\","
" \"interface\": \"eth0\""
" } ],"
"\"valid-lifetime\": 4000"
"}",
};
/// @brief Test fixture class for testing 4-way exchange: Solicit-Advertise,
/// Request-Reply and 2-way exchange: Solicit-Reply.
class SARRTest : public Dhcpv6SrvTest {
public:
/// @brief Constructor.
///
/// Sets up fake interfaces.
SARRTest()
: Dhcpv6SrvTest(),
iface_mgr_test_config_(true) {
// Let's wipe all existing statistics.
isc::stats::StatsMgr::instance().removeAll();
}
/// @brief Destructor.
///
/// Clear the DHCP-DDNS configuration.
virtual ~SARRTest() {
D2ClientConfigPtr cfg(new D2ClientConfig());
CfgMgr::instance().setD2ClientConfig(cfg);
// Let's wipe all existing statistics.
isc::stats::StatsMgr::instance().removeAll();
}
/// @brief Check that server processes correctly a prefix hint sent by the
/// client. This test checks that the server doesn't allocate colliding
/// prefixes as a result of receiving hints from two clients which set the
/// non-significant bytes of the prefix in their hints. The server should
/// zero the non-significant bytes of the hint and allocate the prefix of
/// the correct (configured) length.
void directClientPrefixHint();
/// @brief Check that the server assigns a delegated prefix that is later
/// returned to the client for various prefix hints.
///
/// When the client renews the lease, it sends a prefix hint with the same
/// prefix but with a different prefix length. In another case, the client
/// asks for the same prefix length but different prefix. In both cases,
/// the server should return an existing lease.
void directClientPrefixLengthHintRenewal();
/// @brief This test verifies that the same options can be specified on the
/// global level, subnet level and pool level. The options associated with
/// pools are used when the lease is handed out from these pools.
void optionsInheritance();
/// @brief This test verifies that it is possible to specify an excluded
/// prefix (RFC 6603) and send it back to the client requesting prefix
/// delegation using a pool.
///
/// @param request_pdx request pd exclude option.
void directClientExcludedPrefixPool(bool request_pdx);
/// @brief This test verifies that it is possible to specify an excluded
/// prefix (RFC 6603) and send it back to the client requesting prefix
/// delegation using a reservation.
///
/// @param request_pdx request pd exclude option.
void directClientExcludedPrefixHost(bool request_pdx);
/// @brief Check that when the client includes the Rapid Commit option in
/// its Solicit, the server responds with Reply and commits the lease.
void rapidCommitEnable();
/// @brief Check that the server responds with Advertise if the client
/// hasn't included the Rapid Commit option in the Solicit.
void rapidCommitNoOption();
/// @brief Check that when the Rapid Commit support is disabled for the
/// subnet the server replies with an Advertise and ignores the Rapid Commit
/// option sent by the client.
void rapidCommitDisable();
/// @brief This test verifies that regular Solicit/Adv/Request/Reply
/// exchange will result in appropriately set statistics.
void sarrStats();
/// @brief This test verifies that pkt6-receive-drop is increased properly
/// when the client's packet is rejected due to mismatched server-id value.
void pkt6ReceiveDropStat1();
/// @brief This test verifies that pkt6-receive-drop is increased properly
/// when the client's packet is rejected due to being unicast communication.
void pkt6ReceiveDropStat2();
/// @brief This test verifies that pkt6-receive-drop is increased properly
/// when the client's packet is rejected due to having too many client-id
/// options (exactly one is expected).
void pkt6ReceiveDropStat3();
/// @brief This test verifies that in pool reservations are ignored when the
/// reservations-out-of-pool flag is set to true.
void reservationModeOutOfPool();
/// @brief This test verifies that the in-pool reservation can be assigned
/// to a client not owning this reservation when the
/// reservations-out-of-pool flag is set to true.
void reservationIgnoredInOutOfPoolMode();
/// @brief This test verifies that random allocator is used according
/// to the configuration and it allocates random addresses.
void randomAddressAllocation();
/// @brief This test verifies that random allocator is used according
/// to the configuration and it allocates random prefixes.
void randomPrefixAllocation();
/// @brief Checks that features related to lease caching (such as lease reuse statistics) work.
void leaseCaching();
/// @brief Checks the value of a statistic.
///
/// @param name name of statistic to check
/// @param expected_size expected number of statistic samples
/// @param expected_value expected value of the latest statistic sample
void checkStat(string const& name,
size_t const expected_size,
int64_t const expected_value);
/// @brief Interface Manager's fake configuration control.
IfaceMgrTestConfig iface_mgr_test_config_;
};
void
SARRTest::directClientPrefixHint() {
Dhcp6Client client;
// Configure client to request IA_PD.
client.requestPrefix();
configure(CONFIGS[0], *client.getServer());
// Make sure we ended-up having expected number of subnets configured.
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(1, subnets->size());
// Append IAPREFIX option to the client's message.
ASSERT_NO_THROW(client.requestPrefix(5678, 64, asiolink::IOAddress("2001:db8:3:33::33")));
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Server should have assigned a prefix.
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client = client.getLease(0);
// The server should correctly deal with the least significant bytes
// of the hint being set. It should set them to zero and use the
// valid portion of the hint.
EXPECT_EQ("2001:db8:3:33::", lease_client.addr_.toText());
// Server ignores other parts of the IAPREFIX option.
EXPECT_EQ(64, lease_client.prefixlen_);
EXPECT_EQ(3000, lease_client.preferred_lft_);
EXPECT_EQ(4000, lease_client.valid_lft_);
Lease6Ptr lease_server = checkLease(lease_client);
// Check that the server recorded the lease.
ASSERT_TRUE(lease_server);
// Remove existing lease and modify the DUID of the client to simulate
// the case that different client is trying to get the prefix.
client.clearConfig();
client.modifyDUID();
// Use the hint with some least significant bytes set.
client.clearRequestedIAs();
ASSERT_NO_THROW(client.requestPrefix(5678, 64, IOAddress("2001:db8:3:33::34")));
ASSERT_NO_THROW(client.doSARR());
// Server should assign a lease.
ASSERT_EQ(1, client.getLeaseNum());
lease_client = client.getLease(0);
// The hint collides with the existing lease, so the server should not
// assign for the second client.
EXPECT_NE("2001:db8:3:33::", lease_client.addr_.toText());
EXPECT_NE("2001:db8:3:33::34", lease_client.addr_.toText());
// Check that the assigned prefix belongs to the pool.
ASSERT_TRUE(!subnets->empty());
(*subnets->begin())->inPool(Lease::TYPE_PD, lease_client.addr_);
EXPECT_EQ(64, lease_client.prefixlen_);
EXPECT_EQ(3000, lease_client.preferred_lft_);
EXPECT_EQ(4000, lease_client.valid_lft_);
lease_server = checkLease(lease_client);
ASSERT_TRUE(lease_server);
}
TEST_F(SARRTest, directClientPrefixHint) {<--- syntax error
Dhcpv6SrvMTTestGuard guard(*this, false);
directClientPrefixHint();
}
TEST_F(SARRTest, directClientPrefixHintMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
directClientPrefixHint();
}
void
SARRTest::directClientPrefixLengthHintRenewal() {
Dhcp6Client client;
// Configure client to request IA_PD.
client.requestPrefix();
configure(CONFIGS[0], *client.getServer());
// Make sure we ended-up having expected number of subnets configured.
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(1, subnets->size());
// Append IAPREFIX option to the client's message.
ASSERT_NO_THROW(client.requestPrefix(5678, 64, asiolink::IOAddress("2001:db8:3:36::")));
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Server should have assigned a prefix.
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client = client.getLease(0);
// The server should respect the prefix hint.
EXPECT_EQ("2001:db8:3:36::", lease_client.addr_.toText());
// Server ignores other parts of the IAPREFIX option.
EXPECT_EQ(64, lease_client.prefixlen_);
EXPECT_EQ(3000, lease_client.preferred_lft_);
EXPECT_EQ(4000, lease_client.valid_lft_);
Lease6Ptr lease_server = checkLease(lease_client);
// Check that the server recorded the lease.
ASSERT_TRUE(lease_server);
// Request the same prefix with a different length. The server should
// return an existing lease.
client.clearRequestedIAs();
ASSERT_NO_THROW(client.requestPrefix(5678, 80, IOAddress("2001:db8:3:36::")));
ASSERT_NO_THROW(client.doSARR());
ASSERT_EQ(1, client.getLeaseNum());
lease_client = client.getLease(0);
EXPECT_EQ("2001:db8:3:36::", lease_client.addr_.toText());
EXPECT_EQ(64, lease_client.prefixlen_);
// Try to request another prefix. The client should still get the existing
// lease.
client.clearRequestedIAs();
ASSERT_NO_THROW(client.requestPrefix(5678, 64, IOAddress("2001:db8:3:37::")));
ASSERT_NO_THROW(client.doSARR());
ASSERT_EQ(1, client.getLeaseNum());
lease_client = client.getLease(0);
EXPECT_EQ("2001:db8:3:36::", lease_client.addr_.toText());
EXPECT_EQ(64, lease_client.prefixlen_);
}
TEST_F(SARRTest, directClientPrefixLengthHintRenewal) {
Dhcpv6SrvMTTestGuard guard(*this, false);
directClientPrefixLengthHintRenewal();
}
TEST_F(SARRTest, directClientPrefixLengthHintRenewalMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
directClientPrefixLengthHintRenewal();
}
void
SARRTest::optionsInheritance() {
Dhcp6Client client;
// Request a single address and single prefix.
ASSERT_NO_THROW(client.requestPrefix(0xabac, 64, IOAddress("2001:db8:4::")));
ASSERT_NO_THROW(client.requestAddress(0xabca, IOAddress("3000::45")));
// Request two options configured for the pools from which the client may get
// a lease.
client.requestOption(D6O_NAME_SERVERS);
client.requestOption(D6O_NIS_SERVERS);
client.requestOption(D6O_NISP_SERVERS);
client.requestOption(D6O_SNTP_SERVERS);
ASSERT_NO_FATAL_FAILURE(configure(CONFIGS[2], *client.getServer()));
// Make sure we ended-up having expected number of subnets configured.
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(1, subnets->size());
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// We have provided hints so we should get leases appropriate
// for the hints we provided.
ASSERT_TRUE(client.hasLeaseForPrefix(IOAddress("2001:db8:4::"), 64));
ASSERT_TRUE(client.hasLeaseForAddress(IOAddress("3000::45")));
// We shouldn't have leases for the prefix and address which we didn't
// request.
ASSERT_FALSE(client.hasLeaseForPrefix(IOAddress("2001:db8:3::"), 64));
ASSERT_FALSE(client.hasLeaseForAddress(IOAddress("3000::11")));
// We should have received options associated with a prefix pool and
// address pool from which we have requested the leases. We should not
// have received options associated with the remaining pools. Instead,
// we should have received options associated with a subnet.
ASSERT_TRUE(client.hasOptionWithAddress(D6O_NAME_SERVERS, "3000:1::567"));
ASSERT_TRUE(client.hasOptionWithAddress(D6O_NIS_SERVERS, "3000:1::789"));
ASSERT_TRUE(client.hasOptionWithAddress(D6O_NISP_SERVERS, "3000:2::3"));
ASSERT_TRUE(client.hasOptionWithAddress(D6O_SNTP_SERVERS, "3000:2::1"));
// Let's now also request a prefix and an address from the remaining pools.
ASSERT_NO_THROW(client.requestPrefix(0x6806, 64, IOAddress("2001:db8:3::")));
ASSERT_NO_THROW(client.requestAddress(0x6860, IOAddress("3000::11")));
// Perform 4-way exchange again.
ASSERT_NO_THROW(client.doSARR());
// We should now have two prefixes from two distinct pools.
ASSERT_TRUE(client.hasLeaseForPrefix(IOAddress("2001:db8:3::"), 64));
ASSERT_TRUE(client.hasLeaseForPrefix(IOAddress("2001:db8:4::"), 64));
// We should also have two addresses from two distinct pools.
ASSERT_TRUE(client.hasLeaseForAddress(IOAddress("3000::45")));
ASSERT_TRUE(client.hasLeaseForAddress(IOAddress("3000::11")));
// This time, options from all pools should have been assigned.
ASSERT_TRUE(client.hasOptionWithAddress(D6O_NAME_SERVERS, "3000:1::678"));
ASSERT_TRUE(client.hasOptionWithAddress(D6O_NIS_SERVERS, "3000:1::789"));
ASSERT_TRUE(client.hasOptionWithAddress(D6O_NISP_SERVERS, "3000:2::3"));
ASSERT_TRUE(client.hasOptionWithAddress(D6O_SNTP_SERVERS, "3000:2::2"));
}
TEST_F(SARRTest, optionsInheritance) {
Dhcpv6SrvMTTestGuard guard(*this, false);
optionsInheritance();
}
TEST_F(SARRTest, optionsInheritanceMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
optionsInheritance();
}
void
SARRTest::directClientExcludedPrefixPool(bool request_pdx) {
Dhcp6Client client;
// Configure client to request IA_PD.
client.requestPrefix();
// Request pd exclude option when wanted.
if (request_pdx) {
client.requestOption(D6O_PD_EXCLUDE);
}
configure(CONFIGS[3], *client.getServer());
// Make sure we ended-up having expected number of subnets configured.
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(1, subnets->size());
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Server should have assigned a prefix.
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client = client.getLease(0);
EXPECT_EQ(64, lease_client.prefixlen_);
EXPECT_EQ(3000, lease_client.preferred_lft_);
EXPECT_EQ(4000, lease_client.valid_lft_);
Lease6Ptr lease_server = checkLease(lease_client);
// Check that the server recorded the lease.
ASSERT_TRUE(lease_server);
OptionPtr option = client.getContext().response_->getOption(D6O_IA_PD);
ASSERT_TRUE(option);
Option6IAPtr ia = boost::dynamic_pointer_cast<Option6IA>(option);
ASSERT_TRUE(ia);
option = ia->getOption(D6O_IAPREFIX);
ASSERT_TRUE(option);
Option6IAPrefixPtr pd_option = boost::dynamic_pointer_cast<Option6IAPrefix>(option);
ASSERT_TRUE(pd_option);
option = pd_option->getOption(D6O_PD_EXCLUDE);
if (!request_pdx) {
EXPECT_FALSE(option);
return;
}
ASSERT_TRUE(option);
Option6PDExcludePtr pd_exclude = boost::dynamic_pointer_cast<Option6PDExclude>(option);
ASSERT_TRUE(pd_exclude);
EXPECT_EQ("2001:db8:3::1000", pd_exclude->getExcludedPrefix(IOAddress("2001:db8:3::"),
64).toText());
EXPECT_EQ(120, static_cast<unsigned>(pd_exclude->getExcludedPrefixLength()));
}
TEST_F(SARRTest, directClientExcludedPrefixPool) {
Dhcpv6SrvMTTestGuard guard(*this, false);
directClientExcludedPrefixPool(true);
}
TEST_F(SARRTest, directClientExcludedPrefixPoolMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
directClientExcludedPrefixPool(true);
}
TEST_F(SARRTest, directClientExcludedPrefixPoolNoOro) {
Dhcpv6SrvMTTestGuard guard(*this, false);
directClientExcludedPrefixPool(false);
}
TEST_F(SARRTest, directClientExcludedPrefixPoolNoOroMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
directClientExcludedPrefixPool(false);
}
void
SARRTest::directClientExcludedPrefixHost(bool request_pdx) {
Dhcp6Client client;
// Set DUID matching the one used to create host reservations.
client.setDUID("01:02:03:05");
// Configure client to request IA_PD.
client.requestPrefix();
// Request pd exclude option when wanted.
if (request_pdx) {
client.requestOption(D6O_PD_EXCLUDE);
}
configure(CONFIGS[8], *client.getServer());
// Make sure we ended-up having expected number of subnets configured.
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(1, subnets->size());
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Server should have assigned a prefix.
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client = client.getLease(0);
EXPECT_EQ(64, lease_client.prefixlen_);
EXPECT_EQ(3000, lease_client.preferred_lft_);
EXPECT_EQ(4000, lease_client.valid_lft_);
Lease6Ptr lease_server = checkLease(lease_client);
// Check that the server recorded the lease.
ASSERT_TRUE(lease_server);
OptionPtr option = client.getContext().response_->getOption(D6O_IA_PD);
ASSERT_TRUE(option);
Option6IAPtr ia = boost::dynamic_pointer_cast<Option6IA>(option);
ASSERT_TRUE(ia);
option = ia->getOption(D6O_IAPREFIX);
ASSERT_TRUE(option);
Option6IAPrefixPtr pd_option = boost::dynamic_pointer_cast<Option6IAPrefix>(option);
ASSERT_TRUE(pd_option);
option = pd_option->getOption(D6O_PD_EXCLUDE);
if (!request_pdx) {
EXPECT_FALSE(option);
return;
}
ASSERT_TRUE(option);
Option6PDExcludePtr pd_exclude = boost::dynamic_pointer_cast<Option6PDExclude>(option);
ASSERT_TRUE(pd_exclude);
EXPECT_EQ("2001:db8:3::2000", pd_exclude->getExcludedPrefix(IOAddress("2001:db8:3::"),
64).toText());
EXPECT_EQ(120, static_cast<unsigned>(pd_exclude->getExcludedPrefixLength()));
}
TEST_F(SARRTest, directClientExcludedPrefixHost) {
Dhcpv6SrvMTTestGuard guard(*this, false);
directClientExcludedPrefixHost(true);
}
TEST_F(SARRTest, directClientExcludedPrefixHostMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
directClientExcludedPrefixHost(true);
}
TEST_F(SARRTest, directClientExcludedPrefixHostNoOro) {
Dhcpv6SrvMTTestGuard guard(*this, false);
directClientExcludedPrefixHost(false);
}
TEST_F(SARRTest, directClientExcludedPrefixHostNoOroMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
directClientExcludedPrefixHost(false);
}
void
SARRTest::rapidCommitEnable() {
Dhcp6Client client;
// Configure client to request IA_NA
client.requestAddress();
configure(CONFIGS[1], *client.getServer());
ASSERT_NO_THROW(client.getServer()->startD2());
// Make sure we ended-up having expected number of subnets configured.
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(2, subnets->size());
// Perform 2-way exchange.
client.useRapidCommit(true);
// Include FQDN to trigger generation of name change requests.
ASSERT_NO_THROW(client.useFQDN(Option6ClientFqdn::FLAG_S,
"client-name.example.org",
Option6ClientFqdn::FULL));
ASSERT_NO_THROW(client.doSolicit());
// Server should have committed a lease.
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease_client = client.getLease(0);
// Make sure that the address belongs to the subnet configured.
ASSERT_TRUE(CfgMgr::instance().getCurrentCfg()->getCfgSubnets6()->
selectSubnet(lease_client.addr_, ClientClasses()));
// Make sure that the server responded with Reply.
ASSERT_TRUE(client.getContext().response_);
EXPECT_EQ(DHCPV6_REPLY, client.getContext().response_->getType());
// Rapid Commit option should be included.
EXPECT_TRUE(client.getContext().response_->getOption(D6O_RAPID_COMMIT));
// Check that the lease has been committed.
Lease6Ptr lease_server = checkLease(lease_client);
EXPECT_TRUE(lease_server);
// There should be one name change request generated.
EXPECT_EQ(1, CfgMgr::instance().getD2ClientMgr().getQueueSize());
}
TEST_F(SARRTest, rapidCommitEnable) {
Dhcpv6SrvMTTestGuard guard(*this, false);
rapidCommitEnable();
}
TEST_F(SARRTest, rapidCommitEnableMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
rapidCommitEnable();
}
void
SARRTest::rapidCommitNoOption() {
Dhcp6Client client;
// Configure client to request IA_NA
client.requestAddress();
configure(CONFIGS[1], *client.getServer());
ASSERT_NO_THROW(client.getServer()->startD2());
// Make sure we ended-up having expected number of subnets configured.
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(2, subnets->size());
// Include FQDN to test that the server will not create name change
// requests when it sends Advertise (Rapid Commit disabled).
ASSERT_NO_THROW(client.useFQDN(Option6ClientFqdn::FLAG_S,
"client-name.example.org",
Option6ClientFqdn::FULL));
ASSERT_NO_THROW(client.doSolicit());
// There should be no lease because the server should have responded
// with Advertise.
ASSERT_EQ(0, client.getLeaseNum());
// Make sure that the server responded.
ASSERT_TRUE(client.getContext().response_);
EXPECT_EQ(DHCPV6_ADVERTISE, client.getContext().response_->getType());
// Make sure that the Rapid Commit option is not included.
EXPECT_FALSE(client.getContext().response_->getOption(D6O_RAPID_COMMIT));
// There should be no name change request generated.
EXPECT_EQ(0, CfgMgr::instance().getD2ClientMgr().getQueueSize());
}
TEST_F(SARRTest, rapidCommitNoOption) {
Dhcpv6SrvMTTestGuard guard(*this, false);
rapidCommitNoOption();
}
TEST_F(SARRTest, rapidCommitNoOptionMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
rapidCommitNoOption();
}
void
SARRTest::rapidCommitDisable() {
Dhcp6Client client;
// The subnet assigned to eth1 has Rapid Commit disabled.
client.setInterface("eth1");
// Configure client to request IA_NA
client.requestAddress();
configure(CONFIGS[1], *client.getServer());
ASSERT_NO_THROW(client.getServer()->startD2());
// Make sure we ended-up having expected number of subnets configured.
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(2, subnets->size());
// Send Rapid Commit option to the server.
client.useRapidCommit(true);
// Include FQDN to test that the server will not create name change
// requests when it sends Advertise (Rapid Commit disabled).
ASSERT_NO_THROW(client.useFQDN(Option6ClientFqdn::FLAG_S,
"client-name.example.org",
Option6ClientFqdn::FULL));
ASSERT_NO_THROW(client.doSolicit());
// There should be no lease because the server should have responded
// with Advertise.
ASSERT_EQ(0, client.getLeaseNum());
// Make sure that the server responded.
ASSERT_TRUE(client.getContext().response_);
EXPECT_EQ(DHCPV6_ADVERTISE, client.getContext().response_->getType());
// Make sure that the Rapid Commit option is not included.
EXPECT_FALSE(client.getContext().response_->getOption(D6O_RAPID_COMMIT));
// There should be no name change request generated.
EXPECT_EQ(0, CfgMgr::instance().getD2ClientMgr().getQueueSize());
}
TEST_F(SARRTest, rapidCommitDisable) {
Dhcpv6SrvMTTestGuard guard(*this, false);
rapidCommitDisable();
}
TEST_F(SARRTest, rapidCommitDisableMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
rapidCommitDisable();
}
void
SARRTest::sarrStats() {
// Let's use one of the existing configurations and tell the client to
// ask for an address.
Dhcp6Client client;
configure(CONFIGS[1], *client.getServer());
client.setInterface("eth1");
client.requestAddress();
// Make sure we ended-up having expected number of subnets configured.
const Subnet6Collection* subnets = CfgMgr::instance().getCurrentCfg()->
getCfgSubnets6()->getAll();
ASSERT_EQ(2, subnets->size());
// Check that the tested statistics is initially set to 0
using namespace isc::stats;
StatsMgr& mgr = StatsMgr::instance();
ObservationPtr pkt6_rcvd = mgr.getObservation("pkt6-received");
ObservationPtr pkt6_solicit_rcvd = mgr.getObservation("pkt6-solicit-received");
ObservationPtr pkt6_adv_sent = mgr.getObservation("pkt6-advertise-sent");
ObservationPtr pkt6_request_rcvd = mgr.getObservation("pkt6-request-received");
ObservationPtr pkt6_reply_sent = mgr.getObservation("pkt6-reply-sent");
ObservationPtr pkt6_sent = mgr.getObservation("pkt6-sent");
ASSERT_TRUE(pkt6_rcvd);
ASSERT_TRUE(pkt6_solicit_rcvd);
ASSERT_TRUE(pkt6_adv_sent);
ASSERT_TRUE(pkt6_request_rcvd);
ASSERT_TRUE(pkt6_reply_sent);
ASSERT_TRUE(pkt6_sent);
EXPECT_EQ(0, pkt6_rcvd->getInteger().first);
EXPECT_EQ(0, pkt6_solicit_rcvd->getInteger().first);
EXPECT_EQ(0, pkt6_adv_sent->getInteger().first);
EXPECT_EQ(0, pkt6_request_rcvd->getInteger().first);
EXPECT_EQ(0, pkt6_reply_sent->getInteger().first);
EXPECT_EQ(0, pkt6_sent->getInteger().first);
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Server should have assigned a prefix.
ASSERT_EQ(1, client.getLeaseNum());
// All expected statistics must be present now.
pkt6_rcvd = mgr.getObservation("pkt6-received");
pkt6_solicit_rcvd = mgr.getObservation("pkt6-solicit-received");
pkt6_adv_sent = mgr.getObservation("pkt6-advertise-sent");
pkt6_request_rcvd = mgr.getObservation("pkt6-request-received");
pkt6_reply_sent = mgr.getObservation("pkt6-reply-sent");
pkt6_sent = mgr.getObservation("pkt6-sent");
ASSERT_TRUE(pkt6_rcvd);
ASSERT_TRUE(pkt6_solicit_rcvd);
ASSERT_TRUE(pkt6_adv_sent);
ASSERT_TRUE(pkt6_request_rcvd);
ASSERT_TRUE(pkt6_reply_sent);
ASSERT_TRUE(pkt6_sent);
// They also must have expected values.
EXPECT_EQ(2, pkt6_rcvd->getInteger().first);
EXPECT_EQ(1, pkt6_solicit_rcvd->getInteger().first);
EXPECT_EQ(1, pkt6_adv_sent->getInteger().first);
EXPECT_EQ(1, pkt6_request_rcvd->getInteger().first);
EXPECT_EQ(1, pkt6_reply_sent->getInteger().first);
EXPECT_EQ(2, pkt6_sent->getInteger().first);
}
TEST_F(SARRTest, sarrStats) {
Dhcpv6SrvMTTestGuard guard(*this, false);
sarrStats();
}
TEST_F(SARRTest, sarrStatsMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
sarrStats();
}
void
SARRTest::pkt6ReceiveDropStat1() {
// Dummy server-id (0xff repeated 10 times)
std::vector<uint8_t> data(10, 0xff);
OptionPtr bogus_srv_id(new Option(Option::V6, D6O_SERVERID, data));
// Let's use one of the existing configurations and tell the client to
// ask for an address.
Dhcp6Client client;
configure(CONFIGS[1], *client.getServer());
client.setInterface("eth1");
client.requestAddress();
client.doSolicit();
client.useServerId(bogus_srv_id);
client.doRequest();
// Ok, let's check the statistic. pkt6-receive-drop should be set to 1.
using namespace isc::stats;
StatsMgr& mgr = StatsMgr::instance();
ObservationPtr pkt6_recv_drop = mgr.getObservation("pkt6-receive-drop");
ASSERT_TRUE(pkt6_recv_drop);
EXPECT_EQ(1, pkt6_recv_drop->getInteger().first);
}
TEST_F(SARRTest, pkt6ReceiveDropStat1) {
Dhcpv6SrvMTTestGuard guard(*this, false);
pkt6ReceiveDropStat1();
}
TEST_F(SARRTest, pkt6ReceiveDropStat1MultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
pkt6ReceiveDropStat1();
}
void
SARRTest::pkt6ReceiveDropStat2() {
// Let's use one of the existing configurations and tell the client to
// ask for an address.
Dhcp6Client client;
configure(CONFIGS[1], *client.getServer());
client.setInterface("eth1");
client.requestAddress();
client.setDestAddress(asiolink::IOAddress("2001:db8::1")); // Pretend it's unicast
client.doSolicit();
// Ok, let's check the statistic. pkt6-receive-drop should be set to 1.
using namespace isc::stats;
StatsMgr& mgr = StatsMgr::instance();
ObservationPtr pkt6_recv_drop = mgr.getObservation("pkt6-receive-drop");
ASSERT_TRUE(pkt6_recv_drop);
EXPECT_EQ(1, pkt6_recv_drop->getInteger().first);
}
TEST_F(SARRTest, pkt6ReceiveDropStat2) {
Dhcpv6SrvMTTestGuard guard(*this, false);
pkt6ReceiveDropStat2();
}
TEST_F(SARRTest, pkt6ReceiveDropStat2MultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
pkt6ReceiveDropStat2();
}
void
SARRTest::pkt6ReceiveDropStat3() {
// Let's use one of the existing configurations and tell the client to
// ask for an address.
Dhcp6Client client;
configure(CONFIGS[1], *client.getServer());
client.setInterface("eth1");
client.requestAddress();
// Let's send our client-id as server-id. That will result in the
// packet containing the client-id twice. That should cause RFCViolation
// exception.
client.useServerId(client.getClientId());
client.doSolicit();
// Ok, let's check the statistic. pkt6-receive-drop should be set to 1.
using namespace isc::stats;
StatsMgr& mgr = StatsMgr::instance();
ObservationPtr pkt6_recv_drop = mgr.getObservation("pkt6-receive-drop");
ASSERT_TRUE(pkt6_recv_drop);
EXPECT_EQ(1, pkt6_recv_drop->getInteger().first);
}
TEST_F(SARRTest, pkt6ReceiveDropStat3) {
Dhcpv6SrvMTTestGuard guard(*this, false);
pkt6ReceiveDropStat3();
}
TEST_F(SARRTest, pkt6ReceiveDropStat3MultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
pkt6ReceiveDropStat3();
}
void
SARRTest::reservationModeOutOfPool() {
// Create the first client for which we have a reservation out of the
// dynamic pool.
Dhcp6Client client;
configure(CONFIGS[4], *client.getServer());
client.setDUID("aa:bb:cc:dd:ee:ff");
client.setInterface("eth0");
client.requestAddress(1234, IOAddress("2001:db8:1::3"));
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Server should have assigned a prefix.
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease = client.getLease(0);
// Check that the server allocated the reserved address.
ASSERT_EQ("2001:db8:1::20", lease.addr_.toText());
client.clearConfig();
// Create another client which has a reservation within the pool.
// The server should ignore this reservation in the current mode.
client.setDUID("11:22:33:44:55:66");
// This client is requesting a different address than reserved. The
// server should allocate this address to the client.
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Server should have assigned a prefix.
ASSERT_EQ(1, client.getLeaseNum());
lease = client.getLease(0);
// Check that the requested address was assigned.
ASSERT_EQ("2001:db8:1::3", lease.addr_.toText());
}
TEST_F(SARRTest, reservationModeOutOfPool) {
Dhcpv6SrvMTTestGuard guard(*this, false);
reservationModeOutOfPool();
}
TEST_F(SARRTest, reservationModeOutOfPoolMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
reservationModeOutOfPool();
}
void
SARRTest::reservationIgnoredInOutOfPoolMode() {
// Create the first client for which we have a reservation out of the
// dynamic pool.
Dhcp6Client client;
configure(CONFIGS[4], *client.getServer());
client.setDUID("12:34:56:78:9A:BC");
client.setInterface("eth0");
client.requestAddress(1234, IOAddress("2001:db8:1::5"));
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Server should have assigned a prefix.
ASSERT_EQ(1, client.getLeaseNum());
Lease6 lease = client.getLease(0);
// Check that the server allocated the reserved address.
ASSERT_EQ("2001:db8:1::5", lease.addr_.toText());
}
TEST_F(SARRTest, reservationIgnoredInOutOfPoolMode) {
Dhcpv6SrvMTTestGuard guard(*this, false);
reservationIgnoredInOutOfPoolMode();
}
TEST_F(SARRTest, reservationIgnoredInOutOfPoolModeMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
reservationIgnoredInOutOfPoolMode();
}
void
SARRTest::randomAddressAllocation() {
// Create the base client and server configuration.
Dhcp6Client client;
configure(CONFIGS[5], *client.getServer());
// Record what addresses have been allocated and in what order.
std::set<std::string> allocated_na_set;
std::vector<IOAddress> allocated_na_vector;
std::set<std::string> allocated_pd_set;
std::vector<IOAddress> allocated_pd_vector;
// Simulate allocations from different clients.
for (auto i = 0; i < 30; ++i) {
// Create a client from the base client.
Dhcp6Client next_client(client.getServer());
next_client.requestAddress();
next_client.requestPrefix();
// Run 4-way exchange.
ASSERT_NO_THROW(next_client.doSARR());
// We should have one IA_NA and one IA_PD.
auto leases_na = next_client.getLeasesByType(Lease::TYPE_NA);
ASSERT_EQ(1, leases_na.size());
auto leases_pd = next_client.getLeasesByType(Lease::TYPE_PD);
ASSERT_EQ(1, leases_pd.size());
// Remember allocated address and delegated prefix uniqueness
// and order.
allocated_na_set.insert(leases_na[0].toText());
allocated_na_vector.push_back(leases_na[0].addr_);
allocated_pd_set.insert(leases_pd[0].toText());
allocated_pd_vector.push_back(leases_pd[0].addr_);
}
// Make sure that we have 30 distinct allocations for each lease type.
ASSERT_EQ(30, allocated_na_set.size());
ASSERT_EQ(30, allocated_na_vector.size());
ASSERT_EQ(30, allocated_pd_set.size());
ASSERT_EQ(30, allocated_pd_vector.size());
// Make sure that the addresses are not allocated iteratively.
int consecutives = 0;
for (auto i = 1; i < allocated_na_vector.size(); ++i) {
// Record the cases when the previously allocated address is
// lower by 1 (iterative allocation). Some cases like this are
// possible even with the random allocation but they should be
// very rare.
if (IOAddress::increase(allocated_na_vector[i-1]) == allocated_na_vector[i]) {
++consecutives;
}
}
EXPECT_LT(consecutives, 10);
// Make sure that delegated prefixes have been allocated iteratively.
consecutives = 0;
for (auto i = 1; i < allocated_pd_vector.size(); ++i) {
if (IOAddress::subtract(allocated_pd_vector[i], allocated_pd_vector[i-1]) == IOAddress("0:0:0:1::")) {
++consecutives;
}
}
EXPECT_EQ(29, consecutives);
}
TEST_F(SARRTest, randomAddressAllocation) {
Dhcpv6SrvMTTestGuard guard(*this, false);
randomAddressAllocation();
}
TEST_F(SARRTest, randomAddressAllocationMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
randomAddressAllocation();
}
void
SARRTest::randomPrefixAllocation() {
// Create the base client and server configuration.
Dhcp6Client client;
configure(CONFIGS[6], *client.getServer());
// Record what addresses have been allocated and in what order.
std::set<std::string> allocated_na_set;
std::vector<IOAddress> allocated_na_vector;
std::set<std::string> allocated_pd_set;
std::vector<IOAddress> allocated_pd_vector;
// Simulate allocations from different clients.
for (auto i = 0; i < 30; ++i) {
// Create a client from the base client.
Dhcp6Client next_client(client.getServer());
next_client.requestAddress();
next_client.requestPrefix();
// Run 4-way exchange.
ASSERT_NO_THROW(next_client.doSARR());
// We should have one IA_NA and one IA_PD.
auto leases_na = next_client.getLeasesByType(Lease::TYPE_NA);
ASSERT_EQ(1, leases_na.size());
auto leases_pd = next_client.getLeasesByType(Lease::TYPE_PD);
ASSERT_EQ(1, leases_pd.size());
// Remember allocated address and delegated prefix uniqueness
// and order.
allocated_na_set.insert(leases_na[0].toText());
allocated_na_vector.push_back(leases_na[0].addr_);
allocated_pd_set.insert(leases_pd[0].toText());
allocated_pd_vector.push_back(leases_pd[0].addr_);
}
// Make sure that we have 30 distinct allocations for each lease type.
ASSERT_EQ(30, allocated_na_set.size());
ASSERT_EQ(30, allocated_na_vector.size());
ASSERT_EQ(30, allocated_pd_set.size());
ASSERT_EQ(30, allocated_pd_vector.size());
// Make sure that the addresses have been allocated iteratively.
int consecutives = 0;
for (auto i = 1; i < allocated_na_vector.size(); ++i) {
// Record the cases when the previously allocated address is
// lower by 1 (iterative allocation).
if (IOAddress::increase(allocated_na_vector[i-1]) == allocated_na_vector[i]) {
++consecutives;
}
}
// Make sure that addresses have been allocated iteratively.
EXPECT_EQ(29, consecutives);
// Make sure that delegated prefixes have been allocated randomly.
consecutives = 0;
for (auto i = 1; i < allocated_pd_vector.size(); ++i) {
if (IOAddress::subtract(allocated_pd_vector[i], allocated_pd_vector[i-1]) == IOAddress("0:0:0:1::")) {
++consecutives;
}
}
EXPECT_LT(consecutives, 10);
}
TEST_F(SARRTest, randomPrefixAllocation) {
Dhcpv6SrvMTTestGuard guard(*this, false);
randomPrefixAllocation();
}
TEST_F(SARRTest, randomPrefixAllocationMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
randomPrefixAllocation();
}
void
SARRTest::leaseCaching() {
// Configure a DHCP client.
Dhcp6Client client;
// Configure a DHCP server.
configure(CONFIGS[7], *client.getServer());
// Statistics should have default values.
checkStat("v6-ia-na-lease-reuses", 1, 0);
checkStat("subnet[1].v6-ia-na-lease-reuses", 1, 0);
checkStat("subnet[2].v6-ia-na-lease-reuses", 1, 0);
checkStat("v6-ia-pd-lease-reuses", 1, 0);
checkStat("subnet[1].v6-ia-pd-lease-reuses", 1, 0);
checkStat("subnet[2].v6-ia-pd-lease-reuses", 1, 0);
// Append IAADDR and IAPREFIX options to the client's message.
ASSERT_NO_THROW(client.requestAddress(1234, asiolink::IOAddress("2001:db8::10")));
ASSERT_NO_THROW(client.requestPrefix(5678, 32, asiolink::IOAddress("2001:db8:1::")));
// Include FQDN to trigger generation of name change requests.
ASSERT_NO_THROW(client.useFQDN(Option6ClientFqdn::FLAG_S,
"client-name.example.org",
Option6ClientFqdn::FULL));
// Start D2 client mgr and verify the NCR queue is empty.
ASSERT_NO_THROW(client.getServer()->startD2());
auto& d2_mgr = CfgMgr::instance().getD2ClientMgr();
ASSERT_EQ(0, d2_mgr.getQueueSize());
// Perform 4-way exchange.
ASSERT_NO_THROW(client.doSARR());
// Server should have assigned an address and a prefix.
ASSERT_EQ(2, client.getLeaseNum());
// The server should respect the hints.
Lease6 lease_client(client.getLease(0));
EXPECT_EQ("2001:db8::10", lease_client.addr_.toText());
EXPECT_EQ(128, lease_client.prefixlen_);
Lease6Ptr lease_server(checkLease(lease_client));
EXPECT_TRUE(lease_server);
lease_client = client.getLease(1);
EXPECT_EQ("2001:db8:1::", lease_client.addr_.toText());
EXPECT_EQ(96, lease_client.prefixlen_);
lease_server = checkLease(lease_client);
EXPECT_TRUE(lease_server);
// Check statistics.
checkStat("v6-ia-na-lease-reuses", 1, 0);
checkStat("subnet[1].v6-ia-na-lease-reuses", 1, 0);
checkStat("subnet[2].v6-ia-na-lease-reuses", 1, 0);
checkStat("v6-ia-pd-lease-reuses", 1, 0);
checkStat("subnet[1].v6-ia-pd-lease-reuses", 1, 0);
checkStat("subnet[2].v6-ia-pd-lease-reuses", 1, 0);
// There should be a single NCR.
ASSERT_EQ(1, d2_mgr.getQueueSize());
// Clear the NCR queue.
ASSERT_NO_THROW(d2_mgr.runReadyIO());
ASSERT_EQ(0, d2_mgr.getQueueSize());
// Request the same prefix with a different length. The server should
// return an existing lease.
client.clearRequestedIAs();
ASSERT_NO_THROW(client.requestAddress(1234, asiolink::IOAddress("2001:db8::10")));
ASSERT_NO_THROW(client.requestPrefix(5678, 80, IOAddress("2001:db8:1::")));
ASSERT_NO_THROW(client.doSARR());
ASSERT_EQ(2, client.getLeaseNum());
lease_client = client.getLease(0);
EXPECT_EQ("2001:db8::10", lease_client.addr_.toText());
EXPECT_EQ(128, lease_client.prefixlen_);
lease_client = client.getLease(1);
EXPECT_EQ("2001:db8:1::", lease_client.addr_.toText());
EXPECT_EQ(96, lease_client.prefixlen_);
// Check statistics.
checkStat("v6-ia-na-lease-reuses", 2, 1);
checkStat("subnet[1].v6-ia-na-lease-reuses", 2, 1);
checkStat("subnet[2].v6-ia-na-lease-reuses", 1, 0);
checkStat("v6-ia-pd-lease-reuses", 2, 1);
checkStat("subnet[1].v6-ia-pd-lease-reuses", 2, 1);
checkStat("subnet[2].v6-ia-pd-lease-reuses", 1, 0);
// There should be no NCRs queued.
ASSERT_EQ(0, d2_mgr.getQueueSize());
// Try to request another prefix. The client should still get the existing
// lease.
client.clearRequestedIAs();
ASSERT_NO_THROW(client.requestAddress(1234, asiolink::IOAddress("2001:db8::10")));
ASSERT_NO_THROW(client.requestPrefix(5678, 64, IOAddress("2001:db8:2::")));
ASSERT_NO_THROW(client.doRequest());
ASSERT_EQ(2, client.getLeaseNum());
lease_client = client.getLease(0);
EXPECT_EQ("2001:db8::10", lease_client.addr_.toText());
EXPECT_EQ(128, lease_client.prefixlen_);
lease_client = client.getLease(1);
EXPECT_EQ("2001:db8:1::", lease_client.addr_.toText());
EXPECT_EQ(96, lease_client.prefixlen_);
// Check statistics.
checkStat("v6-ia-na-lease-reuses", 3, 2);
checkStat("subnet[1].v6-ia-na-lease-reuses", 3, 2);
checkStat("subnet[2].v6-ia-na-lease-reuses", 1, 0);
checkStat("v6-ia-pd-lease-reuses", 3, 2);
checkStat("subnet[1].v6-ia-pd-lease-reuses", 3, 2);
checkStat("subnet[2].v6-ia-pd-lease-reuses", 1, 0);
// There should be no NCRs queued.
ASSERT_EQ(0, d2_mgr.getQueueSize());
}
TEST_F(SARRTest, leaseCaching) {
Dhcpv6SrvMTTestGuard guard(*this, false);
leaseCaching();
}
TEST_F(SARRTest, leaseCachingMultiThreading) {
Dhcpv6SrvMTTestGuard guard(*this, true);
leaseCaching();
}
/// @brief Checks the value of a statistic.
///
/// @param name name of statistic to check
/// @param expected_size expected number of statistic samples
/// @param expected_value expected value of the latest statistic sample
void SARRTest::checkStat(string const& name,
size_t const expected_size,
int64_t const expected_value) {
ObservationPtr const stats(StatsMgr::instance().getObservation(name));
ASSERT_TRUE(stats) << "no such stat: " << name;
EXPECT_EQ(expected_size, stats->getSize())
<< name << " stat has wrong size: found " << stats->getSize() << ", expected "
<< expected_size;
EXPECT_EQ(expected_value, stats->getInteger().first)
<< name << " stat has wrong value: found " << stats->getInteger().first << ", expected "
<< expected_value;
}
} // end of anonymous namespace
|