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 | // Copyright (C) 2021-2024 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Kea Hooks Basic
// Commercial End User License Agreement v2.0. See COPYING file in the premium/
// directory.
#include <config.h>
#include <gss_tsig_cfg.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <cc/command_interpreter.h>
#include <managed_key.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <testutils/gtest_utils.h>
#include <testutils/test_to_element.h>
#include <stats/stats_mgr.h>
#include <stats/testutils/stats_test_utils.h>
#include <gtest/gtest.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <limits><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
using namespace std;
using namespace isc;
using namespace isc::asiodns;
using namespace isc::asiolink;
using namespace isc::config;
using namespace isc::d2;
using namespace isc::data;
using namespace isc::gss_tsig;
using namespace isc::stats;
using namespace isc::stats::test;
using namespace isc::test;
namespace {
/// @brief Test structure used to verify configuration parser.
///
/// If any of the int32_t values is -1, the default value is expected.
struct ConfigSet {
/// @brief The global tkey-lifetime value.
int32_t global_tkey_lifetime_;
/// @brief The server tkey-lifetime value.
int32_t server_tkey_lifetime_;
/// @brief The global rekey-interval value.
int32_t global_rekey_;
/// @brief The server rekey-interval value.
int32_t server_rekey_;
/// @brief The global retry-interval value.
int32_t global_retry_;
/// @brief The server renew-interval value.
int32_t server_retry_;
/// @brief The flag which indicates is a server should be added to the
/// configuration.
bool add_server_;
/// @brief The flag which indicates if the parser is expected to throw
/// because of incompatible values.
bool expect_throw_;
/// @brief The exception message to check if an error is detected.
string expected_message_;
};
/// @brief Function which checks if the configured values are accepted.
/// The ConfigSet.add_server_ indicates if a server configuration should be
/// added even if there is no parameter explicitly configured for the server
/// (using the default values). If any of ConfigSet.global_tkey_lifetime_,
/// ConfigSet.server_tkey_lifetime_, ConfigSet.global_rekey_,
/// ConfigSet.server_rekey_, ConfigSet.global_retry_, ConfigSet.server_retry_
/// is -1, then the respective parameter is omitted and the default values are
/// expected. The ConfigSet.expect_throw_ indicates if the parser is expected to
/// throw exception for the respective configuration. If an exception is thrown,
/// the ConfigSet.expected_message_ is verified to match exception message.
/// Tested dependency between parameters:
/// tkey-lifetime > rekey-interval > retry-interval
///
/// x = explicitly set
/// 0 = using default
/// - = does not matter (using default)
///
/// Dependency between tkey-lifetime and rekey-interval:
///
/// 0000-- <- relevant for rekey-interval > retry-interval also
/// x000--
/// 0x00--
/// xx00--
///
/// 00x0-- <- relevant for rekey-interval > retry-interval also
/// x0x0--
/// 0xx0--
/// xxx0-- <- twice (server rekey-interval vs global and server tkey-lifetime)
///
/// 000x-- <- relevant for rekey-interval > retry-interval also
/// x00x--
/// 0x0x--
/// xx0x--
///
/// 00xx-- <- relevant for rekey-interval > retry-interval also
/// 10xx--
/// 0xxx--
/// xxxx--
///
/// Dependency between rekey-interval and retry-interval
///
/// --0000 <- already checked before
/// --x000 <- already checked before
/// --0x00 <- already checked before
/// --xx00 <- already checked before
///
/// --00x0
/// --x0x0
/// --0xx0
/// --xxx0 <- twice (server retry-interval vs global and server rekey-interval)
///
/// --000x
/// --x00x
/// --0x0x
/// --xx0x
///
/// --00xx
/// --x0xx
/// --0xxx
/// --xxxx
///
/// Total 16 + 12 + 2 = 30 cases.
void checkConfig(const ConfigSet& config_set) {
stringstream ss;
ss << "{ \"gss-replay-flag\": true";
ss << ", \"gss-sequence-flag\": false";
ss << ", \"fallback\": false";
if (config_set.global_tkey_lifetime_ != -1) {
ss << ", \"tkey-lifetime\": " << config_set.global_tkey_lifetime_;
}
if (config_set.global_rekey_ != -1) {
ss << ", \"rekey-interval\": " << config_set.global_rekey_;
}
if (config_set.global_retry_ != -1) {
ss << ", \"retry-interval\": " << config_set.global_retry_;
}
if (config_set.add_server_ || (config_set.server_tkey_lifetime_ != -1) ||
(config_set.server_rekey_ != -1) || (config_set.server_retry_ != -1)) {
ss << ", \"servers\": [ { \"id\": \"foo\", ";
ss << "\"ip-address\": \"2001:db8::1\", ";
ss << "\"server-principal\": \"DNS/server.example.org@REALM\"";
if (config_set.server_tkey_lifetime_ != -1) {
ss << ", \"tkey-lifetime\": " << config_set.server_tkey_lifetime_;
}
if (config_set.server_rekey_ != -1) {
ss << ", \"rekey-interval\": " << config_set.server_rekey_;
}
if (config_set.server_retry_ != -1) {
ss << ", \"retry-interval\": " << config_set.server_retry_;
}
ss << " } ]";
}
ss << " }";
string config = ss.str();
ss << " server: " << config_set.add_server_
<< " throw: " << config_set.expect_throw_
<< " global tkey lifetime: " << config_set.global_tkey_lifetime_
<< " server tkey lifetime: " << config_set.server_tkey_lifetime_
<< " global rekey: " << config_set.global_rekey_
<< " server rekey: " << config_set.server_rekey_
<< " global retry: " << config_set.global_retry_
<< " server retry: " << config_set.server_retry_
<< " message: " << config_set.expected_message_;
SCOPED_TRACE(ss.str());
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
GssTsigCfg cfg;
if (config_set.expect_throw_) {
EXPECT_THROW_MSG(cfg.configure(json), BadValue,
config_set.expected_message_);
} else {
EXPECT_NO_THROW(cfg.configure(json));
}
}
/// @brief Check the DNS server.
TEST(GssTsigCfgTest, dnsServer) {<--- syntax error
// Constructor.
DnsServerPtr srv;
string id("bar");
IOAddress addr("192.1.2.3");
ASSERT_NO_THROW(srv.reset(new DnsServer(id, { }, addr)));
ASSERT_TRUE(srv);
EXPECT_EQ(id, srv->getID());
EXPECT_EQ(addr, srv->getIpAddress());
EXPECT_EQ(53, srv->getPort());
// ID.
id = "foo";
ASSERT_NO_THROW(srv->setID(id));
EXPECT_EQ(id, srv->getID());
// Server infos.
EXPECT_TRUE(srv->getServerInfos().empty());
DnsServerInfoPtr info;
ASSERT_NO_THROW(info.reset(new DnsServerInfo("", addr)));
ASSERT_TRUE(info);
srv->addServerInfo(info);
ASSERT_EQ(1, srv->getServerInfos().size());
DnsServerInfoPtr got;
ASSERT_NO_THROW(got = srv->getServerInfos().at(0));
EXPECT_EQ(info, got);
srv->clearServerInfos();
EXPECT_TRUE(srv->getServerInfos().empty());
// DNS server principal.
EXPECT_EQ("", srv->getServerPrincipal());
srv->setServerPrincipal("DNS/example.nil@EXAMPLE.NIL");
EXPECT_EQ("DNS/example.nil@EXAMPLE.NIL", srv->getServerPrincipal());
// GSS-TSIG key suffix.
EXPECT_EQ("", srv->getKeyNameSuffix());
srv->setKeyNameSuffix("foo-example.nil");
EXPECT_EQ("foo-example.nil.", srv->getKeyNameSuffix());
EXPECT_NO_THROW(srv->buildKeyNameSuffix());
EXPECT_EQ("sig-example.nil.", srv->getKeyNameSuffix());
// client/credentials principal.
EXPECT_EQ("", srv->getClientPrincipal());
srv->setClientPrincipal("DHCP/example.nil@EXAMPLE.NIL");
EXPECT_EQ("DHCP/example.nil@EXAMPLE.NIL", srv->getClientPrincipal());
// GSS (anti) replay flag.
EXPECT_TRUE(srv->getGssReplayFlag());
srv->setGssReplayFlag(false);
EXPECT_FALSE(srv->getGssReplayFlag());
// GSS sequence flag.
EXPECT_FALSE(srv->getGssSequenceFlag());
srv->setGssSequenceFlag(true);
EXPECT_TRUE(srv->getGssSequenceFlag());
// TKEY lifetime.
EXPECT_EQ(3600, srv->getKeyLifetime());
srv->setKeyLifetime(7200);
EXPECT_EQ(7200, srv->getKeyLifetime());
// Rekey interval.
EXPECT_EQ(2700, srv->getRekeyInterval());
srv->setRekeyInterval(5400);
EXPECT_EQ(5400, srv->getRekeyInterval());
// Retry interval.
EXPECT_EQ(120, srv->getRetryInterval());
srv->setRetryInterval(240);
EXPECT_EQ(240, srv->getRetryInterval());
// TKEY protocol.
EXPECT_EQ(IOFetch::TCP, srv->getKeyProto());
srv->setKeyProto(IOFetch::UDP);
EXPECT_EQ(IOFetch::UDP, srv->getKeyProto());
// Fallback.
EXPECT_FALSE(srv->getFallback());
srv->setFallback(true);
EXPECT_TRUE(srv->getFallback());
// Port.
DnsServerPtr srv2(new DnsServer(id, { }, addr, 1234));
ASSERT_TRUE(srv2);
EXPECT_EQ(addr, srv2->getIpAddress());
EXPECT_EQ(1234, srv2->getPort());
// TKEY exchange timeout.
EXPECT_EQ(3000, srv->getExchangeTimeout());
srv->setExchangeTimeout(5000);
EXPECT_EQ(5000, srv->getExchangeTimeout());
// User context.
ConstElementPtr user_ctx = srv->getContext();
EXPECT_FALSE(user_ctx);
string user_ctx_str = "{ \"foo\": 123 }";
srv->setContext(Element::fromJSON(user_ctx_str));
user_ctx = srv->getContext();
ASSERT_TRUE(user_ctx);
EXPECT_EQ(user_ctx_str, user_ctx->str());
// toElement.
ElementPtr expected = Element::createMap();
expected->set("id", Element::create(id));
expected->set("user-context", user_ctx);
expected->set("ip-address", Element::create(string("192.1.2.3")));
expected->set("port", Element::create(53));
expected->set("server-principal",
Element::create(string("DNS/example.nil@EXAMPLE.NIL")));
expected->set("key-name-suffix",
Element::create(string("sig-example.nil.")));
expected->set("client-principal",
Element::create(string("DHCP/example.nil@EXAMPLE.NIL")));
expected->set("gss-replay-flag", Element::create(false));
expected->set("gss-sequence-flag", Element::create(true));
expected->set("tkey-lifetime", Element::create(7200));
expected->set("rekey-interval", Element::create(5400));
expected->set("retry-interval", Element::create(240));
expected->set("tkey-protocol", Element::create(string("UDP")));
expected->set("fallback", Element::create(true));
expected->set("exchange-timeout", Element::create(5000));
runToElementTest<DnsServer>(expected, *srv);
// Stats.
id = "foobar";
ASSERT_NO_THROW(srv.reset(new DnsServer(id, { }, addr)));
checkStat(StatsMgr::generateName("server", id, "tkey-sent"), 0);
checkStat(StatsMgr::generateName("server", id, "tkey-success"), 0);
checkStat(StatsMgr::generateName("server", id, "tkey-timeout"), 0);
checkStat(StatsMgr::generateName("server", id, "tkey-error"), 0);
srv.reset();
checkNoStat(StatsMgr::generateName("server", id, "tkey-sent"));
checkNoStat(StatsMgr::generateName("server", id, "tkey-success"));
checkNoStat(StatsMgr::generateName("server", id, "tkey-timeout"));
checkNoStat(StatsMgr::generateName("server", id, "tkey-error"));
}
/// @build Check buildServerInfo with any domain.
TEST(GssTsigCfgTest, buildServerInfo) {
// DnsServer
DnsServerPtr srv;
const string& id("foo");
set<string> domains;
IOAddress addr("192.1.2.3");
ASSERT_NO_THROW(srv.reset(new DnsServer(id, domains, addr)));
ASSERT_TRUE(srv);
// D2 config with two matching servers.
string config = "{\n"
"\"forward-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"foo.example.com.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] },\n"
"\"reverse-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"2.0.192.in-addr.arpa.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] } }\n";
// Parse the D2 config.
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
D2CfgMgr mgr;
ConstElementPtr answer = mgr.simpleParseConfig(json);
int rcode = -1;
ConstElementPtr comment = parseAnswer(rcode, answer);
if (rcode != CONTROL_RESULT_SUCCESS) {
FAIL() << "d2 config parse failed: " << comment->str();
}
D2CfgContextPtr ctx = mgr.getD2CfgContext();
ASSERT_TRUE(ctx);
// Check the buildServerInfo method.
EXPECT_THROW_MSG(srv->buildServerInfo(D2CfgContextPtr()), D2CfgError,
"empty D2 config");
ASSERT_NO_THROW(srv->buildServerInfo(ctx));
const DnsServerInfoStorage& infos = srv->getServerInfos();
ASSERT_EQ(2, infos.size());
DnsServerInfoPtr info1;
ASSERT_NO_THROW(info1 = infos.at(0));
ASSERT_TRUE(info1);
EXPECT_EQ(addr, info1->getIpAddress());
EXPECT_EQ(53, info1->getPort());
DnsServerInfoPtr info2;
ASSERT_NO_THROW(info2 = infos.at(1));
ASSERT_TRUE(info2);
EXPECT_EQ(addr, info2->getIpAddress());
EXPECT_EQ(53, info2->getPort());
EXPECT_NE(info1, info2);
// buildServerInfo can be called only once.
EXPECT_THROW_MSG(srv->buildServerInfo(ctx), D2CfgError,
"server info list is not empty");
}
/// @build Check buildServerInfo with two configured domains.
TEST(GssTsigCfgTest, buildServerInfoTwo) {
// DnsServer
DnsServerPtr srv;
const string& id("foo");
set<string> domains = { "foo.example.com.", "2.0.192.in-addr.arpa." };
IOAddress addr("192.1.2.3");
ASSERT_NO_THROW(srv.reset(new DnsServer(id, domains, addr)));
ASSERT_TRUE(srv);
// D2 config with two matching servers.
string config = "{\n"
"\"forward-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"foo.example.com.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] },\n"
"\"reverse-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"2.0.192.in-addr.arpa.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] } }\n";
// Parse the D2 config.
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
D2CfgMgr mgr;
ConstElementPtr answer = mgr.simpleParseConfig(json);
int rcode = -1;
ConstElementPtr comment = parseAnswer(rcode, answer);
if (rcode != CONTROL_RESULT_SUCCESS) {
FAIL() << "d2 config parse failed: " << comment->str();
}
D2CfgContextPtr ctx = mgr.getD2CfgContext();
ASSERT_TRUE(ctx);
// Check the buildServerInfo method.
ASSERT_NO_THROW(srv->buildServerInfo(ctx));
const DnsServerInfoStorage& infos = srv->getServerInfos();
ASSERT_EQ(2, infos.size());
DnsServerInfoPtr info1;
ASSERT_NO_THROW(info1 = infos.at(0));
ASSERT_TRUE(info1);
EXPECT_EQ(addr, info1->getIpAddress());
EXPECT_EQ(53, info1->getPort());
DnsServerInfoPtr info2;
ASSERT_NO_THROW(info2 = infos.at(1));
ASSERT_TRUE(info2);
EXPECT_EQ(addr, info2->getIpAddress());
EXPECT_EQ(53, info2->getPort());
EXPECT_NE(info1, info2);
}
/// @build Check buildServerInfo with one configured domain.
TEST(GssTsigCfgTest, buildServerInfoOneDomain) {
// DnsServer
DnsServerPtr srv;
const string& id("foo");
set<string> domains = { "foo.example.com." };
IOAddress addr("192.1.2.3");
ASSERT_NO_THROW(srv.reset(new DnsServer(id, domains, addr)));
ASSERT_TRUE(srv);
// D2 config with two matching servers.
string config = "{\n"
"\"forward-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"foo.example.com.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] },\n"
"\"reverse-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"2.0.192.in-addr.arpa.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] } }\n";
// Parse the D2 config.
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
D2CfgMgr mgr;
ConstElementPtr answer = mgr.simpleParseConfig(json);
int rcode = -1;
ConstElementPtr comment = parseAnswer(rcode, answer);
if (rcode != CONTROL_RESULT_SUCCESS) {
FAIL() << "d2 config parse failed: " << comment->str();
}
D2CfgContextPtr ctx = mgr.getD2CfgContext();
ASSERT_TRUE(ctx);
// Check the buildServerInfo method.
ASSERT_NO_THROW(srv->buildServerInfo(ctx));
const DnsServerInfoStorage& infos = srv->getServerInfos();
ASSERT_EQ(1, infos.size());
DnsServerInfoPtr info;
ASSERT_NO_THROW(info = infos.at(0));
ASSERT_TRUE(info);
EXPECT_EQ(addr, info->getIpAddress());
EXPECT_EQ(53, info->getPort());
}
/// @build Check buildServerInfo with no server.
TEST(GssTsigCfgTest, buildServerInfoNoServer) {
// DnsServer
DnsServerPtr srv;
const string& id("foo");
set<string> domains;
IOAddress addr("192.1.2.3");
ASSERT_NO_THROW(srv.reset(new DnsServer(id, domains, addr)));
ASSERT_TRUE(srv);
// D2 config with one not matching server.
string config = "{\n"
"\"forward-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"foo.example.com.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.4\" } ] } ] } }\n";
// Parse the D2 config.
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
D2CfgMgr mgr;
ConstElementPtr answer = mgr.simpleParseConfig(json);
int rcode = -1;
ConstElementPtr comment = parseAnswer(rcode, answer);
if (rcode != CONTROL_RESULT_SUCCESS) {
FAIL() << "d2 config parse failed: " << comment->str();
}
D2CfgContextPtr ctx = mgr.getD2CfgContext();
ASSERT_TRUE(ctx);
EXPECT_THROW_MSG(srv->buildServerInfo(ctx), NotFound,
"server info can't be found");
}
/// @build Check buildServerInfo with no domain.
TEST(GssTsigCfgTest, buildServerInfoNoDomain) {
// DnsServer
DnsServerPtr srv;
const string& id("foo");
set<string> domains = { "foo.example.com.", "bar.example.com." };
IOAddress addr("192.1.2.3");
ASSERT_NO_THROW(srv.reset(new DnsServer(id, domains, addr)));
ASSERT_TRUE(srv);
// D2 config with two matching servers.
string config = "{\n"
"\"forward-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"foo.example.com.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] },\n"
"\"reverse-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"2.0.192.in-addr.arpa.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] } }\n";
// Parse the D2 config.
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
D2CfgMgr mgr;
ConstElementPtr answer = mgr.simpleParseConfig(json);
int rcode = -1;
ConstElementPtr comment = parseAnswer(rcode, answer);
if (rcode != CONTROL_RESULT_SUCCESS) {
FAIL() << "d2 config parse failed: " << comment->str();
}
D2CfgContextPtr ctx = mgr.getD2CfgContext();
ASSERT_TRUE(ctx);
EXPECT_THROW_MSG(srv->buildServerInfo(ctx), NotFound,
"domain 'bar.example.com.' can't be found");
}
/// @brief Check the config.
TEST(GssTsigCfgTest, config) {
// Constructor.
GssTsigCfg cfg;
EXPECT_TRUE(cfg.getServerList().empty());
EXPECT_TRUE(cfg.getServerRevMap().empty());
// Get server.
DnsServerInfoPtr info;
IOAddress addr("192.1.2.3");
ASSERT_NO_THROW(info.reset(new DnsServerInfo("", addr)));
ASSERT_TRUE(info);
EXPECT_FALSE(cfg.getServer(info));
// client key table specification.
EXPECT_EQ("", cfg.getClientKeyTab());
cfg.setClientKeyTab("FILE:/tmp/mykeytab");
EXPECT_EQ("FILE:/tmp/mykeytab", cfg.getClientKeyTab());
// credentials cache specification.
EXPECT_EQ("", cfg.getCredsCache());
cfg.setCredsCache("KCM:");
EXPECT_EQ("KCM:", cfg.getCredsCache());
// maximum tkey lifetime.
EXPECT_EQ(0, cfg.getMaxKeyLifetime());
cfg.setMaxKeyLifetime(12345);
EXPECT_EQ(12345, cfg.getMaxKeyLifetime());
}
/// @brief Check the DNS server containers.
TEST(GssTsigCfgTest, dnsServers) {
GssTsigCfg cfg;
DnsServerPtr srv;
const string& id("foo");
IOAddress addr("192.1.2.3");
ASSERT_NO_THROW(srv.reset(new DnsServer(id, { }, addr)));
ASSERT_TRUE(srv);
// Add 2 equivalent infos.
DnsServerInfoPtr info1;
ASSERT_NO_THROW(info1.reset(new DnsServerInfo("", addr)));
ASSERT_TRUE(info1);
srv->addServerInfo(info1);
DnsServerInfoPtr info2;
ASSERT_NO_THROW(info2.reset(new DnsServerInfo("", addr)));
ASSERT_TRUE(info2);
srv->addServerInfo(info2);
// Check the server list.
cfg.addServer(srv);
EXPECT_EQ(1, cfg.getServerList().size());
EXPECT_EQ(srv, cfg.getServerList().front());
EXPECT_EQ(srv, cfg.getServer(id));
EXPECT_FALSE(cfg.getServer("bar"));
}
/// @brief Build and check the server map.
TEST(GssTsigCfgTest, buildServerRevMap) {
// Add a server.
GssTsigCfg cfg;
DnsServerPtr srv;
const string& id("foo");
IOAddress addr("192.1.2.3");
ASSERT_NO_THROW(srv.reset(new DnsServer(id, { }, addr)));
ASSERT_TRUE(srv);
cfg.addServer(srv);
// D2 config with two matching servers.
string d2_config = "{\n"
"\"forward-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"foo.example.com.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] },\n"
"\"reverse-ddns\": {\n"
" \"ddns-domains\": [ {\n"
" \"name\": \"2.0.192.in-addr.arpa.\",\n"
" \"dns-servers\": [ {\n"
" \"ip-address\": \"192.1.2.3\" } ] } ] } }\n";
// Parse the D2 config.
ConstElementPtr d2_json;
ASSERT_NO_THROW(d2_json = Element::fromJSON(d2_config));
D2CfgMgr mgr;
ConstElementPtr answer = mgr.simpleParseConfig(d2_json);
int rcode = -1;
ConstElementPtr comment = parseAnswer(rcode, answer);
if (rcode != CONTROL_RESULT_SUCCESS) {
FAIL() << "d2 config parse failed: " << comment->str();
}
D2CfgContextPtr ctx = mgr.getD2CfgContext();
ASSERT_TRUE(ctx);
// Build the server reverse map.
EXPECT_THROW(cfg.buildServerRevMap(D2CfgContextPtr()), D2CfgError);
ASSERT_NO_THROW(cfg.buildServerRevMap(ctx));
const DnsServerRevMap& rev_map = cfg.getServerRevMap();
ASSERT_EQ(2, rev_map.size());
for (auto const& it : rev_map) {
DnsServerInfoPtr info = it.first;
ASSERT_TRUE(info);
EXPECT_EQ(addr, info->getIpAddress());
EXPECT_EQ(53, info->getPort());
EXPECT_EQ(srv, it.second);
}
// buildServerRevMap can be called only once.
EXPECT_THROW_MSG(cfg.buildServerRevMap(ctx), D2CfgError,
"server reverse map is not empty");
}
/// @brief Check the configure method.
TEST(GssTsigCfgTest, configure) {
string config = "{\n"
"\"server-principal\": \"DNS/server.example.org@REALM\",\n"
"\"client-principal\": \"DHCP/admin.example.org@REALM\",\n"
"\"client-keytab\": \"FILE:/etc/krb5.keytab\",\n"
"\"credentials-cache\": \"FILE:/etc/ccache\",\n"
"\"gss-replay-flag\": false,\n"
"\"gss-sequence-flag\": true,\n"
"\"rekey-interval\": 5400,\n"
"\"retry-interval\": 240,\n"
"\"tkey-lifetime\": 7200,\n"
"\"tkey-protocol\": \"UDP\",\n"
"\"servers\": [\n"
" {\n"
" \"domain-names\": [ ],\n"
" \"id\": \"foo\",\n"
" \"ip-address\": \"192.0.2.1\",\n"
" \"server-principal\": \"DNS/server1.example.org@REALM\",\n"
" \"client-principal\": \"DHCP/admin1.example.org@REALM\",\n"
" \"gss-replay-flag\": true,\n"
" \"gss-sequence-flag\": false,\n"
" \"rekey-interval\": 64800,\n"
" \"retry-interval\": 2880,\n"
" \"tkey-lifetime\": 86400,\n"
" \"tkey-protocol\": \"UDP\"\n"
" },{\n"
" \"id\": \"bar\",\n"
" \"ip-address\": \"192.0.2.2\",\n"
" \"port\": 5300\n"
" }\n"
"]}\n";
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
GssTsigCfg cfg;
ASSERT_NO_THROW(cfg.configure(json));
EXPECT_EQ("FILE:/etc/krb5.keytab", cfg.getClientKeyTab());
EXPECT_EQ("FILE:/etc/ccache", cfg.getCredsCache());
EXPECT_EQ(86400, cfg.getMaxKeyLifetime());
const DnsServerList& servers = cfg.getServerList();
ASSERT_EQ(2, servers.size());
DnsServerPtr server;
ASSERT_NO_THROW(server = servers.at(0));
ASSERT_TRUE(server);
EXPECT_EQ("foo", server->getID());
EXPECT_EQ("192.0.2.1", server->getIpAddress().toText());
EXPECT_EQ(53, server->getPort());
EXPECT_EQ("DNS/server1.example.org@REALM", server->getServerPrincipal());
EXPECT_EQ("sig-server1.example.org.", server->getKeyNameSuffix());
EXPECT_EQ("DHCP/admin1.example.org@REALM", server->getClientPrincipal());
EXPECT_TRUE(server->getGssReplayFlag());
EXPECT_FALSE(server->getGssSequenceFlag());
EXPECT_EQ(64800, server->getRekeyInterval());
EXPECT_EQ(2880, server->getRetryInterval());
EXPECT_EQ(86400, server->getKeyLifetime());
EXPECT_EQ(IOFetch::UDP, server->getKeyProto());
ASSERT_NO_THROW(server = servers.at(1));
ASSERT_TRUE(server);
EXPECT_EQ("bar", server->getID());
EXPECT_EQ("192.0.2.2", server->getIpAddress().toText());
EXPECT_EQ(5300, server->getPort());
EXPECT_EQ("DNS/server.example.org@REALM", server->getServerPrincipal());
EXPECT_EQ("sig-server.example.org.", server->getKeyNameSuffix());
EXPECT_EQ("DHCP/admin.example.org@REALM", server->getClientPrincipal());
EXPECT_FALSE(server->getGssReplayFlag());
EXPECT_TRUE(server->getGssSequenceFlag());
EXPECT_EQ(5400, server->getRekeyInterval());
EXPECT_EQ(240, server->getRetryInterval());
EXPECT_EQ(7200, server->getKeyLifetime());
EXPECT_EQ(IOFetch::UDP, server->getKeyProto());
}
/// @brief Check configure requires a map.
TEST(GssTsigCfgTest, configureNoMap) {
ElementPtr json;
GssTsigCfg cfg;
EXPECT_THROW_MSG(cfg.configure(json), BadValue,
"gss_tsig parameters entry is mandatory");
json = Element::createList();
EXPECT_THROW_MSG(cfg.configure(json), BadValue,
"gss_tsig parameters entry must be a map");
}
/// @brief Check configure fails on unknown keywords.
TEST(GssTsigCfgTest, configureUnknown) {
string config = "{ \"dns-servers\": [ ] }";
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
GssTsigCfg cfg;
string expected = "gss_tsig spurious 'dns-servers' parameter (<string>:1:2)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"address\": \"192.1.2.3\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server spurious 'address' parameter (<string>:1:17)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
}
/// @brief Check configure fails on parameters without expected types.
TEST(GssTsigCfgTest, configureUnexpectedType) {
string config = "{ \"server-principal\": 100 }";
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
GssTsigCfg cfg;
string expected = "gss_tsig 'server-principal' parameter is not a string";
string location = " (<string>:1:2)";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"client-principal\": 200 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'client-principal' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"client-keytab\": 300 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'client-keytab' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"credentials-cache\": 400 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'credentials-cache' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"gss-replay-flag\": 1 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'gss-replay-flag' parameter is not a boolean";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"gss-sequence-flag\": \"off\" }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'gss-sequence-flag' parameter is not a boolean";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"tkey-lifetime\": \"3600\" }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'tkey-lifetime' parameter is not an integer";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"rekey-interval\": \"2700\" }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'rekey-interval' parameter is not an integer";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"retry-interval\": \"120\" }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'retry-interval' parameter is not an integer";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"tkey-protocol\": 500 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'tkey-protocol' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"user-context\": [ ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'user-context' parameter is not a map";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"comment\": true }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'comment' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": { } }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig 'servers' parameter is not a list";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": 123 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'id' parameter is not a string";
location = " (<string>:1:17)";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"domain-names\": false } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'domain-names' parameter is not a list";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"domain-names\": [ true ] } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'domain-names' list ";
expected += "must contain only strings (<string>:1:49)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"ip-address\": [ ] } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'ip-address' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"port\": \"53\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'port' parameter is not an integer";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
string prefix = "{ \"servers\": [ { \"ip-address\": \"2001:db8::1\",";
config = prefix + " \"server-principal\": 100 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'server-principal' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"client-principal\": 200 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'client-principal' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"gss-replay-flag\": \"on\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'gss-replay-flag' parameter is not a boolean";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"gss-sequence-flag\": 0 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'gss-sequence-flag' parameter ";
expected += "is not a boolean";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"tkey-lifetime\": \"3600\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'tkey-lifetime' parameter is not an integer";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"rekey-interval\": \"2700\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'rekey-interval' parameter is not an integer";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"retry-interval\": \"120\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'retry-interval' parameter is not an integer";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"tkey-protocol\": 500 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'tkey-protocol' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"user-context\": [ ] } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'user-context' parameter is not a map";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"comment\": true } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig server 'comment' parameter is not a string";
expected += location;
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
}
/// @brief Check configure fails on not well formed parameters.
TEST(GssTsigCfgTest, configureBadParameter) {
string config = "{ \"tkey-lifetime\": -1 }";
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
GssTsigCfg cfg;
string expected = "'tkey-lifetime' parameter is out of range ";
expected += "[0..4294967295] (<string>:1:20)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
string prefix = "{ \"servers\": [ { \"id\": \"foo\", ";
prefix += "\"ip-address\": \"2001:db8::1\", ";
prefix += "\"server-principal\": \"DNS/server.example.org@REALM\",";
config = "{ \"tkey-lifetime\": 4294967296 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"tkey-lifetime\": -1 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'tkey-lifetime' parameter is out of range ";
expected += "[0..4294967295] (<string>:1:129)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"tkey-lifetime\": 4294967296 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"rekey-interval\": -1 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'rekey-interval' parameter is out of range ";
expected += "[0..4294967295] (<string>:1:21)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"rekey-interval\": 4294967296 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"rekey-interval\": -1 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'rekey-interval' parameter is out of range ";
expected += "[0..4294967295] (<string>:1:130)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"rekey-interval\": 4294967296 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"retry-interval\": -1 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'retry-interval' parameter is out of range ";
expected += "[0..4294967295] (<string>:1:21)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"retry-interval\": 4294967296 }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"retry-interval\": -1 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'retry-interval' parameter is out of range ";
expected += "[0..4294967295] (<string>:1:130)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"retry-interval\": 4294967296 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"tkey-protocol\": \"udp\" }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'tkey-protocol' parameter must be UDP or TCP (<string>:1:20)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = prefix + " \"tkey-protocol\": \"udp\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'tkey-protocol' parameter must be UDP or TCP (<string>:1:129)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'id' parameter must be not empty in ";
expected += "gss_tsig server entry (<string>:1:17)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"foobar\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig bad server entry: ";
expected += "Failed to convert string to address 'foobar': ";
expected += "Invalid argument (<string>:1:17)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\", ";
config += "\"port\": -1 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig bad server entry: ";
expected += "The 'port' value (-1) is not within expected range: ";
expected += "(0 - 65535) (<string>:1:17)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\", ";
config += "\"port\": 65536 } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig bad server entry: ";
expected += "The 'port' value (65536) is not within expected range: ";
expected += "(0 - 65535) (<string>:1:17)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\", ";
config += "\"server-principal\": \"DNS/@REALM\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig bad server entry: ";
expected += "can't get the GSS-TSIG key name suffix from ";
expected += "the DNS server principal 'DNS/@REALM' (<string>:1:80)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\" } ], ";
config += "\"server-principal\": \"DNS/@REALM\" }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig bad server-principal parameter: ";
expected += "can't get the GSS-TSIG key name suffix from ";
expected += "the DNS server principal 'DNS/@REALM' (<string>:1:84)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\", ";
config += "\"server-principal\": \"DNS/";
config += "012345678901234567890123456789";
config += "012345678901234567890123456789";
config += "012345678901234567890123456789@REALM\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig bad server entry: ";
expected += "check of the GSS-TSIG key name suffix 'sig-";
expected += "012345678901234567890123456789";
expected += "012345678901234567890123456789";
expected += "012345678901234567890123456789' ";
expected += "failed: label is too long in 1234567890.sig-";
expected += "012345678901234567890123456789";
expected += "012345678901234567890123456789";
expected += "012345678901234567890123456789 (<string>:1:80)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\" } ], ";
config += "\"server-principal\": \"DNS/";
config += "012345678901234567890123456789";
config += "012345678901234567890123456789";
config += "012345678901234567890123456789@REALM\" }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "gss_tsig bad server-principal parameter: ";
expected += "check of the GSS-TSIG key name suffix 'sig-";
expected += "012345678901234567890123456789";
expected += "012345678901234567890123456789";
expected += "012345678901234567890123456789' ";
expected += "failed: label is too long in 1234567890.sig-";
expected += "012345678901234567890123456789";
expected += "012345678901234567890123456789";
expected += "012345678901234567890123456789 (<string>:1:84)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
// There are other possible errors from DNS, e.g. too many labels.
}
/// @brief Check configure fails on missing required parameters.
TEST(GssTsigCfgTest, configureRequired) {
string config = "{ \"servers\": [ { } ] }";
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
GssTsigCfg cfg;
string expected = "'id' parameter is required in ";
expected += "gss_tsig server entry (<string>:1:17)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'id' parameter must be not empty in ";
expected += "gss_tsig server entry (<string>:1:17)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'ip-address' parameter is required in ";
expected += "gss_tsig server entry (<string>:1:17)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\" } ] }";
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
expected = "'server-principal' parameter is required in ";
expected += "gss_tsig server entry (<string>:1:17)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
}
/// @brief Check configure fails on duplicate server ID.
TEST(GssTsigCfgTest, configureDuplicate) {
string config = "{ \"server-principal\": \"DNS/example.org@REALM\", ";
config += "\"servers\": [ { ";
config += "\"id\": \"foo\", \"ip-address\": \"192.1.2.3\" }, {";
config += "\"id\": \"foo\", \"ip-address\": \"192.1.2.4\" } ] }";
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
GssTsigCfg cfg;
string expected = "'foo' id is already used in ";
expected += "gss_tsig server entry (<string>:1:106)";
EXPECT_THROW_MSG(cfg.configure(json), BadValue, expected);
}
/// @brief Check TKEY protocol default value.
TEST(GssTsigCfgTest, tkeyProtoDefault) {
// Constructor default is TCP.
string config = "{ \"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\", ";
config += "\"server-principal\": \"DNS/server1.example.org@REALM\" } ] }";
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
GssTsigCfg cfg;
ASSERT_NO_THROW(cfg.configure(json));
EXPECT_EQ(3600, cfg.getMaxKeyLifetime());
const DnsServerList& servers = cfg.getServerList();
ASSERT_EQ(1, servers.size());
DnsServerPtr server;
ASSERT_NO_THROW(server = servers.at(0));
EXPECT_EQ(IOFetch::TCP, server->getKeyProto());
}
/// @brief Check TKEY protocol global value.
TEST(GssTsigCfgTest, tkeyProtoGlobal) {
// Global value is used when not override by a local value.
string config = "{ \"tkey-protocol\": \"UDP\", ";
config += "\"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\", ";
config += "\"server-principal\": \"DNS/server1.example.org@REALM\" } ] }";
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
GssTsigCfg cfg;
ASSERT_NO_THROW(cfg.configure(json));
const DnsServerList& servers = cfg.getServerList();
ASSERT_EQ(1, servers.size());
DnsServerPtr server;
ASSERT_NO_THROW(server = servers.at(0));
EXPECT_EQ(IOFetch::UDP, server->getKeyProto());
}
/// @brief Check TKEY protocol local value.
TEST(GssTsigCfgTest, tkeyProtoLocal) {
// Local value has precedence.
string config = "{ \"tkey-protocol\": \"TCP\", ";
config += "\"servers\": [ { \"id\": \"foo\", ";
config += "\"ip-address\": \"2001:db8::1\", ";
config += "\"server-principal\": \"DNS/server1.example.org@REALM\",";
config += "\"tkey-protocol\": \"UDP\" } ] }";
ConstElementPtr json;
ASSERT_NO_THROW(json = Element::fromJSON(config));
ASSERT_TRUE(json);
GssTsigCfg cfg;
ASSERT_NO_THROW(cfg.configure(json));
const DnsServerList& servers = cfg.getServerList();
ASSERT_EQ(1, servers.size());
DnsServerPtr server;
ASSERT_NO_THROW(server = servers.at(0));
EXPECT_EQ(IOFetch::UDP, server->getKeyProto());
}
/// @brief Check renew and retry bad interval values.
TEST(GssTsigCfgTest, intervalsBadCase) {
vector<ConfigSet> cases = {
{ -1, -1, -1, -1, -1, -1, false, false,
"these are default values so this should not throw" },
{ -1, -1, -1, -1, -1, -1, true, false,
"these are default values so this should not throw" },
{ 2700, -1, -1, -1, -1, -1, false, true,
"the default 'rekey-interval' parameter must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..2700]" },
{ 2700, -1, -1, -1, -1, -1, true, true,
"the default 'rekey-interval' parameter must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..2700]" },
{ -1, 2700, -1, -1, -1, -1, false, true,
"the default 'rekey-interval' parameter must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:201): range [0..2700]" },
{ -1, 2700, -1, -1, -1, -1, true, true,
"the default 'rekey-interval' parameter must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:201): range [0..2700]" },
{ 2700, 1800, -1, -1, -1, -1, false, true,
"the default 'rekey-interval' parameter must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..2700]" },
{ 2700, 1800, -1, -1, -1, -1, true, true,
"the default 'rekey-interval' parameter must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..2700]" },
{ -1, -1, 3600, -1, -1, -1, false, true,
"the global 'rekey-interval' parameter (<string>:1:93) must be smaller than "
"the default 'tkey-lifetime' parameter: range [0..3600]" },
{ -1, -1, 3600, -1, -1, -1, true, true,
"the global 'rekey-interval' parameter (<string>:1:93) must be smaller than "
"the default 'tkey-lifetime' parameter: range [0..3600]" },
{ 2700, -1, 3600, -1, -1, -1, false, true,
"the global 'rekey-interval' parameter (<string>:1:116) must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..2700]" },
{ 2700, -1, 3600, -1, -1, -1, true, true,
"the global 'rekey-interval' parameter (<string>:1:116) must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..2700]" },
{ -1, 1800, 2700, -1, -1, -1, false, true,
"the global 'rekey-interval' parameter (<string>:1:93) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:225): range [0..1800]" },
{ -1, 1800, 2700, -1, -1, -1, true, true,
"the global 'rekey-interval' parameter (<string>:1:93) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:225): range [0..1800]" },
{ 2700, 1800, 3600, -1, -1, -1, false, true,
"the global 'rekey-interval' parameter (<string>:1:116) must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..2700]" },
{ 2700, 1800, 3600, -1, -1, -1, true, true,
"the global 'rekey-interval' parameter (<string>:1:116) must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..2700]" },
{ 4800, 1800, 3600, -1, -1, -1, false, true,
"the global 'rekey-interval' parameter (<string>:1:116) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:248): range [0..1800]" },
{ 4800, 1800, 3600, -1, -1, -1, true, true,
"the global 'rekey-interval' parameter (<string>:1:116) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:248): range [0..1800]" },
{ -1, -1, -1, 3600, -1, -1, false, true,
"the server 'rekey-interval' parameter (<string>:1:202) must be smaller than "
"the default 'tkey-lifetime' parameter: range [0..3600]" },
{ -1, -1, -1, 3600, -1, -1, true, true,
"the server 'rekey-interval' parameter (<string>:1:202) must be smaller than "
"the default 'tkey-lifetime' parameter: range [0..3600]" },
{ 3600, -1, -1, 3600, -1, -1, false, true,
"the server 'rekey-interval' parameter (<string>:1:225) must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..3600]" },
{ 3600, -1, -1, 3600, -1, -1, true, true,
"the server 'rekey-interval' parameter (<string>:1:225) must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..3600]" },
{ -1, 3600, -1, 3600, -1, -1, false, true,
"the server 'rekey-interval' parameter (<string>:1:225) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:201): range [0..3600]" },
{ -1, 3600, -1, 3600, -1, -1, true, true,
"the server 'rekey-interval' parameter (<string>:1:225) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:201): range [0..3600]" },
{ 5400, 3600, -1, 6400, -1, -1, false, true,
"the server 'rekey-interval' parameter (<string>:1:248) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:224): range [0..3600]" },
{ 5400, 3600, -1, 6400, -1, -1, true, true,
"the server 'rekey-interval' parameter (<string>:1:248) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:224): range [0..3600]" },
{ -1, -1, 2700, 6400, -1, -1, false, true,
"the server 'rekey-interval' parameter (<string>:1:226) must be smaller than "
"the default 'tkey-lifetime' parameter: range [0..3600]" },
{ -1, -1, 2700, 6400, -1, -1, true, true,
"the server 'rekey-interval' parameter (<string>:1:226) must be smaller than "
"the default 'tkey-lifetime' parameter: range [0..3600]" },
{ 3600, -1, 2700, 6400, -1, -1, false, true,
"the server 'rekey-interval' parameter (<string>:1:249) must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..3600]" },
{ 3600, -1, 2700, 6400, -1, -1, true, true,
"the server 'rekey-interval' parameter (<string>:1:249) must be smaller than "
"the global 'tkey-lifetime' parameter (<string>:1:92): range [0..3600]" },
{ -1, 3600, 2700, 6400, -1, -1, false, true,
"the server 'rekey-interval' parameter (<string>:1:249) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:225): range [0..3600]" },
{ -1, 3600, 2700, 6400, -1, -1, true, true,
"the server 'rekey-interval' parameter (<string>:1:249) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:225): range [0..3600]" },
{ 3600, 2700, 2700, 3600, -1, -1, false, true,
"the server 'rekey-interval' parameter (<string>:1:272) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:248): range [0..2700]" },
{ 3600, 2700, 2700, 3600, -1, -1, true, true,
"the server 'rekey-interval' parameter (<string>:1:272) must be smaller than "
"the server 'tkey-lifetime' parameter (<string>:1:248): range [0..2700]" },
{ -1, -1, -1, -1, 2700, -1, false, true,
"the global 'retry-interval' parameter (<string>:1:93) must be smaller then "
"the default 'rekey-interval' parameter (<string>:1:93): range [0..2700]" },
{ -1, -1, -1, -1, 2700, -1, true, true,
"the global 'retry-interval' parameter (<string>:1:93) must be smaller then "
"the default 'rekey-interval' parameter (<string>:1:93): range [0..2700]" },
{ -1, -1, 2700, -1, 2700, -1, false, true,
"the global 'retry-interval' parameter (<string>:1:117) must be smaller then "
"the global 'rekey-interval' parameter (<string>:1:117): range [0..2700]" },
{ -1, -1, 2700, -1, 2700, -1, true, true,
"the global 'retry-interval' parameter (<string>:1:117) must be smaller then "
"the global 'rekey-interval' parameter (<string>:1:117): range [0..2700]" },
{ -1, -1, -1, 900, 1800, -1, false, true,
"the global 'retry-interval' parameter (<string>:1:93) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:93): range [0..900]" },
{ -1, -1, -1, 900, 1800, -1, true, true,
"the global 'retry-interval' parameter (<string>:1:93) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:93): range [0..900]" },
{ -1, -1, 2700, 1800, 3600, -1, false, true,
"the global 'retry-interval' parameter (<string>:1:117) must be smaller then "
"the global 'rekey-interval' parameter (<string>:1:117): range [0..2700]" },
{ -1, -1, 2700, 1800, 3600, -1, true, true,
"the global 'retry-interval' parameter (<string>:1:117) must be smaller then "
"the global 'rekey-interval' parameter (<string>:1:117): range [0..2700]" },
{ -1, -1, 2700, 900, 1800, -1, false, true,
"the global 'retry-interval' parameter (<string>:1:117) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:117): range [0..900]" },
{ -1, -1, 2700, 900, 1800, -1, true, true,
"the global 'retry-interval' parameter (<string>:1:117) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:117): range [0..900]" },
{ -1, -1, -1, -1, -1, 2700, false, true,
"the server 'retry-interval' parameter (<string>:1:202) must be smaller then "
"the default 'rekey-interval' parameter (<string>:1:202): range [0..2700]" },
{ -1, -1, -1, -1, -1, 2700, true, true,
"the server 'retry-interval' parameter (<string>:1:202) must be smaller then "
"the default 'rekey-interval' parameter (<string>:1:202): range [0..2700]" },
{ -1, -1, 2700, -1, -1, 2700, false, true,
"the server 'retry-interval' parameter (<string>:1:226) must be smaller then "
"the global 'rekey-interval' parameter (<string>:1:226): range [0..2700]" },
{ -1, -1, 2700, -1, -1, 2700, true, true,
"the server 'retry-interval' parameter (<string>:1:226) must be smaller then "
"the global 'rekey-interval' parameter (<string>:1:226): range [0..2700]" },
{ -1, -1, -1, 900, -1, 1800, false, true,
"the server 'retry-interval' parameter (<string>:1:225) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:225): range [0..900]" },
{ -1, -1, -1, 900, -1, 1800, true, true,
"the server 'retry-interval' parameter (<string>:1:225) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:225): range [0..900]" },
{ -1, -1, 2700, 1800, -1, 3600, false, true,
"the server 'retry-interval' parameter (<string>:1:250) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:250): range [0..1800]" },
{ -1, -1, 2700, 1800, -1, 3600, true, true,
"the server 'retry-interval' parameter (<string>:1:250) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:250): range [0..1800]" },
{ -1, -1, -1, -1, 1800, 3600, false, true,
"the server 'retry-interval' parameter (<string>:1:226) must be smaller then "
"the default 'rekey-interval' parameter (<string>:1:226): range [0..2700]" },
{ -1, -1, -1, -1, 1800, 3600, true, true,
"the server 'retry-interval' parameter (<string>:1:226) must be smaller then "
"the default 'rekey-interval' parameter (<string>:1:226): range [0..2700]" },
{ -1, -1, 2700, -1, 1800, 3600, false, true,
"the server 'retry-interval' parameter (<string>:1:250) must be smaller then "
"the global 'rekey-interval' parameter (<string>:1:250): range [0..2700]" },
{ -1, -1, 2700, -1, 1800, 3600, true, true,
"the server 'retry-interval' parameter (<string>:1:250) must be smaller then "
"the global 'rekey-interval' parameter (<string>:1:250): range [0..2700]" },
{ -1, -1, -1, 2700, 1800, 3600, false, true,
"the server 'retry-interval' parameter (<string>:1:250) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:250): range [0..2700]" },
{ -1, -1, -1, 2700, 1800, 3600, true, true,
"the server 'retry-interval' parameter (<string>:1:250) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:250): range [0..2700]" },
{ -1, -1, 2700, 1800, 1800, 2700, false, true,
"the server 'retry-interval' parameter (<string>:1:274) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:274): range [0..1800]" },
{ -1, -1, 2700, 1800, 1800, 2700, true, true,
"the server 'retry-interval' parameter (<string>:1:274) must be smaller then "
"the server 'rekey-interval' parameter (<string>:1:274): range [0..1800]" },
};
for (auto const& config : cases) {
checkConfig(config);
}
}
/// @brief Check renew and retry good interval values.
TEST(GssTsigCfgTest, intervalsGoodCase) {
vector<ConfigSet> cases = {
{ -1, -1, -1, -1, -1, -1, false, false, "" },
{ -1, -1, -1, -1, -1, -1, true, false, "" },
{ 5400, -1, -1, -1, -1, -1, false, false, "" },
{ 5400, -1, -1, -1, -1, -1, true, false, "" },
{ -1, 5400, -1, -1, -1, -1, false, false, "" },
{ -1, 5400, -1, -1, -1, -1, true, false, "" },
{ 5400, 7200, -1, -1, -1, -1, false, false, "" },
{ 5400, 7200, -1, -1, -1, -1, true, false, "" },
{ -1, -1, 1800, -1, -1, -1, false, false, "" },
{ -1, -1, 1800, -1, -1, -1, true, false, "" },
{ 5400, -1, 1800, -1, -1, -1, false, false, "" },
{ 5400, -1, 1800, -1, -1, -1, true, false, "" },
{ -1, 5400, 2700, -1, -1, -1, false, false, "" },
{ -1, 5400, 2700, -1, -1, -1, true, false, "" },
{ 5400, 2700, 1800, -1, -1, -1, false, false, "" },
{ 5400, 2700, 1800, -1, -1, -1, true, false, "" },
{ -1, -1, -1, 1800, -1, -1, false, false, "" },
{ -1, -1, -1, 1800, -1, -1, true, false, "" },
{ 5400, -1, -1, 3600, -1, -1, false, false, "" },
{ 5400, -1, -1, 3600, -1, -1, true, false, "" },
{ -1, 5400, -1, 3600, -1, -1, false, false, "" },
{ -1, 5400, -1, 3600, -1, -1, true, false, "" },
{ 5400, 7200, -1, 5400, -1, -1, false, false, "" },
{ 5400, 7200, -1, 5400, -1, -1, true, false, "" },
{ -1, -1, 2700, 1800, -1, -1, false, false, "" },
{ -1, -1, 2700, 1800, -1, -1, true, false, "" },
{ 5400, -1, 2700, 3600, -1, -1, false, false, "" },
{ 5400, -1, 2700, 3600, -1, -1, true, false, "" },
{ -1, 5400, 2700, 3600, -1, -1, false, false, "" },
{ -1, 5400, 2700, 3600, -1, -1, true, false, "" },
{ 3600, 2700, 2700, 1800, -1, -1, false, false, "" },
{ 3600, 2700, 2700, 1800, -1, -1, true, false, "" },
{ -1, -1, -1, -1, 1800, -1, false, false, "" },
{ -1, -1, -1, -1, 1800, -1, true, false, "" },
{ -1, -1, 2700, -1, 900, -1, false, false, "" },
{ -1, -1, 2700, -1, 900, -1, true, false, "" },
{ -1, -1, -1, 2700, 900, -1, false, false, "" },
{ -1, -1, -1, 2700, 900, -1, true, false, "" },
{ -1, -1, 2700, 1800, 900, -1, false, false, "" },
{ -1, -1, 2700, 1800, 900, -1, true, false, "" },
{ -1, -1, -1, -1, -1, 1800, false, false, "" },
{ -1, -1, -1, -1, -1, 1800, true, false, "" },
{ -1, -1, 2700, -1, -1, 1800, false, false, "" },
{ -1, -1, 2700, -1, -1, 1800, true, false, "" },
{ -1, -1, -1, 2700, -1, 1800, false, false, "" },
{ -1, -1, -1, 2700, -1, 1800, true, false, "" },
{ -1, -1, 1800, 2700, -1, 1800, false, false, "" },
{ -1, -1, 1800, 2700, -1, 1800, true, false, "" },
{ -1, -1, -1, -1, 900, 1800, false, false, "" },
{ -1, -1, -1, -1, 900, 1800, true, false, "" },
{ -1, -1, 2700, -1, 900, 1800, false, false, "" },
{ -1, -1, 2700, -1, 900, 1800, true, false, "" },
{ -1, -1, -1, 2700, 900, 1800, false, false, "" },
{ -1, -1, -1, 2700, 900, 1800, true, false, "" },
{ -1, -1, 2700, 900, 1800, 240, false, false, "" },
{ -1, -1, 2700, 900, 1800, 240, true, false, "" },
};
for (auto const& config : cases) {
checkConfig(config);
}
}
}
|