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 | // 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/duid.h>
#include <dhcp/hwaddr.h>
#include <dhcpsrv/cfg_hosts.h>
#include <dhcpsrv/cfg_hosts_util.h>
#include <dhcpsrv/hosts_log.h>
#include <dhcpsrv/cfgmgr.h>
#include <exceptions/exceptions.h>
#include <util/encode/encode.h>
#include <util/multi_threading_mgr.h>
#include <boost/foreach.hpp><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <ostream><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <string><--- 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::asiolink;
using namespace isc::data;
using namespace isc::util;
using namespace std;
namespace isc {
namespace dhcp {
CfgHosts::CfgHosts() : mutex_(new mutex()) {
}
ConstHostCollection
CfgHosts::getAll(const Host::IdentifierType& identifier_type,
const uint8_t* identifier_begin,
const size_t identifier_len) const {
// Do not issue logging message here because it will be logged by
// the getAllInternal method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal<ConstHostCollection>(identifier_type, identifier_begin,
identifier_len, collection);
return (collection);
}
HostCollection
CfgHosts::getAll(const Host::IdentifierType& identifier_type,
const uint8_t* identifier_begin, const size_t identifier_len) {
// Do not issue logging message here because it will be logged by
// the getAllInternal method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal<HostCollection>(identifier_type, identifier_begin,
identifier_len, collection);
return (collection);
}
ConstHostCollection
CfgHosts::getAll4(const SubnetID& subnet_id) const {
// Do not issue logging message here because it will be logged by
// the getAllInternal4 method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal4<ConstHostCollection>(subnet_id, collection);
return (collection);
}
HostCollection
CfgHosts::getAll4(const SubnetID& subnet_id) {
// Do not issue logging message here because it will be logged by
// the getAllInternal4 method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal4<HostCollection>(subnet_id, collection);
return (collection);
}
ConstHostCollection
CfgHosts::getAll6(const SubnetID& subnet_id) const {
// Do not issue logging message here because it will be logged by
// the getAllInternal6 method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal6<ConstHostCollection>(subnet_id, collection);
return (collection);
}
HostCollection
CfgHosts::getAll6(const SubnetID& subnet_id) {
// Do not issue logging message here because it will be logged by
// the getAllInternal6 method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal6<HostCollection>(subnet_id, collection);
return (collection);
}
ConstHostCollection
CfgHosts::getAllbyHostname(const std::string& hostname) const {
// Do not issue logging message here because it will be logged by
// the getAllbyHostnameInternal method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllbyHostnameInternal<ConstHostCollection>(hostname, collection);
return (collection);
}
HostCollection
CfgHosts::getAllbyHostname(const std::string& hostname) {
// Do not issue logging message here because it will be logged by
// the getAllbyHostnameInternal method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllbyHostnameInternal<HostCollection>(hostname, collection);
return (collection);
}
ConstHostCollection
CfgHosts::getAllbyHostname4(const std::string& hostname,
const SubnetID& subnet_id) const {
// Do not issue logging message here because it will be logged by
// the getAllbyHostnameInternal4 method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllbyHostnameInternal4<ConstHostCollection>(hostname, subnet_id, collection);
return (collection);
}
HostCollection
CfgHosts::getAllbyHostname4(const std::string& hostname,
const SubnetID& subnet_id) {
// Do not issue logging message here because it will be logged by
// the getAllbyHostnameInternal4 method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllbyHostnameInternal4<HostCollection>(hostname, subnet_id, collection);
return (collection);
}
ConstHostCollection
CfgHosts::getAllbyHostname6(const std::string& hostname,
const SubnetID& subnet_id) const {
// Do not issue logging message here because it will be logged by
// the getAllbyHostnameInternal6 method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllbyHostnameInternal6<ConstHostCollection>(hostname, subnet_id, collection);
return (collection);
}
HostCollection
CfgHosts::getAllbyHostname6(const std::string& hostname,
const SubnetID& subnet_id) {
// Do not issue logging message here because it will be logged by
// the getAllbyHostnameInternal6 method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllbyHostnameInternal6<HostCollection>(hostname, subnet_id, collection);
return (collection);
}
ConstHostCollection
CfgHosts::getPage4(const SubnetID& subnet_id,
size_t& /*source_index*/,
uint64_t lower_host_id,
const HostPageSize& page_size) const {
// Do not issue logging message here because it will be logged by
// the getPageInternal4 method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getPageInternal4<ConstHostCollection>(subnet_id,
lower_host_id,
page_size,
collection);
return (collection);
}
HostCollection
CfgHosts::getPage4(const SubnetID& subnet_id,
size_t& /*source_index*/,
uint64_t lower_host_id,
const HostPageSize& page_size) {
// Do not issue logging message here because it will be logged by
// the getPageInternal4 method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getPageInternal4<HostCollection>(subnet_id,
lower_host_id,
page_size,
collection);
return (collection);
}
ConstHostCollection
CfgHosts::getPage6(const SubnetID& subnet_id,
size_t& /*source_index*/,
uint64_t lower_host_id,
const HostPageSize& page_size) const {
// Do not issue logging message here because it will be logged by
// the getPageInternal6 method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getPageInternal6<ConstHostCollection>(subnet_id,
lower_host_id,
page_size,
collection);
return (collection);
}
HostCollection
CfgHosts::getPage6(const SubnetID& subnet_id,
size_t& /*source_index*/,
uint64_t lower_host_id,
const HostPageSize& page_size) {
// Do not issue logging message here because it will be logged by
// the getPageInternal6 method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getPageInternal6<HostCollection>(subnet_id,
lower_host_id,
page_size,
collection);
return (collection);
}
ConstHostCollection
CfgHosts::getPage4(size_t& /*source_index*/,
uint64_t lower_host_id,
const HostPageSize& page_size) const {
// Do not issue logging message here because it will be logged by
// the getPageInternal method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getPageInternal<ConstHostCollection>(lower_host_id,
page_size,
collection);
return (collection);
}
HostCollection
CfgHosts::getPage4(size_t& /*source_index*/,
uint64_t lower_host_id,
const HostPageSize& page_size) {
// Do not issue logging message here because it will be logged by
// the getPageInternal method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getPageInternal<HostCollection>(lower_host_id,
page_size,
collection);
return (collection);
}
ConstHostCollection
CfgHosts::getPage6(size_t& /*source_index*/,
uint64_t lower_host_id,
const HostPageSize& page_size) const {
// Do not issue logging message here because it will be logged by
// the getPageInternal method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getPageInternal<ConstHostCollection>(lower_host_id,
page_size,
collection);
return (collection);
}
HostCollection
CfgHosts::getPage6(size_t& /*source_index*/,
uint64_t lower_host_id,
const HostPageSize& page_size) {
// Do not issue logging message here because it will be logged by
// the getPageInternal method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getPageInternal<HostCollection>(lower_host_id,
page_size,
collection);
return (collection);
}
ConstHostCollection
CfgHosts::getAll4(const IOAddress& address) const {
// Do not issue logging message here because it will be logged by
// the getAllInternal4 method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal4<ConstHostCollection>(address, collection);
return (collection);
}
HostCollection
CfgHosts::getAll4(const IOAddress& address) {
// Do not issue logging message here because it will be logged by
// the getAllInternal4 method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal4<HostCollection>(address, collection);
return (collection);
}
ConstHostCollection
CfgHosts::getAll6(const IOAddress& address) const {
// Do not issue logging message here because it will be logged by
// the getAllInternal6 method.
ConstHostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal6<ConstHostCollection>(address, collection);
return (collection);
}
HostCollection
CfgHosts::getAll6(const IOAddress& address) {
// Do not issue logging message here because it will be logged by
// the getAllInternal6 method.
HostCollection collection;
MultiThreadingLock lock(*mutex_);
getAllInternal6<HostCollection>(address, collection);
return (collection);
}
template<typename Storage>
void
CfgHosts::getAllInternal(const Host::IdentifierType& identifier_type,
const uint8_t* identifier,
const size_t identifier_len,
Storage& storage) const {
// Convert host identifier into textual format for logging purposes.
// This conversion is exception free.
std::string identifier_text = Host::getIdentifierAsText(identifier_type,
identifier,
identifier_len);
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_IDENTIFIER)
.arg(identifier_text);
// Use the identifier and identifier type as a composite key.
const HostContainerIndex0& idx = hosts_.get<0>();
boost::tuple<const std::vector<uint8_t>, const Host::IdentifierType> t =
boost::make_tuple(std::vector<uint8_t>(identifier,
identifier + identifier_len),
identifier_type);
// Append each Host object to the storage.
for (HostContainerIndex0::iterator host = idx.lower_bound(t);
host != idx.upper_bound(t);
++host) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_IDENTIFIER_HOST)
.arg(identifier_text)
.arg((*host)->toText());
storage.push_back(*host);
}
// Log how many hosts have been found.
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_IDENTIFIER_COUNT)
.arg(identifier_text)
.arg(storage.size());
}
template<typename Storage>
void
CfgHosts::getAllInternal4(const SubnetID& subnet_id,
Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_SUBNET_ID4)
.arg(subnet_id);
// Use try DHCPv4 subnet id.
const HostContainerIndex2& idx = hosts_.get<2>();
// Append each Host object to the storage.
for (HostContainerIndex2::iterator host = idx.lower_bound(subnet_id);
host != idx.upper_bound(subnet_id);
++host) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_SUBNET_ID4_HOST)
.arg(subnet_id)
.arg((*host)->toText());
storage.push_back(*host);
}
// Log how many hosts have been found.
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_SUBNET_ID4_COUNT)
.arg(subnet_id)
.arg(storage.size());
}
template<typename Storage>
void
CfgHosts::getAllInternal6(const SubnetID& subnet_id,
Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_SUBNET_ID6)
.arg(subnet_id);
// Use try DHCPv6 subnet id.
const HostContainerIndex3& idx = hosts_.get<3>();
// Append each Host object to the storage.
for (HostContainerIndex3::iterator host = idx.lower_bound(subnet_id);
host != idx.upper_bound(subnet_id);
++host) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_SUBNET_ID6_HOST)
.arg(subnet_id)
.arg((*host)->toText());
storage.push_back(*host);
}
// Log how many hosts have been found.
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_SUBNET_ID6_COUNT)
.arg(subnet_id)
.arg(storage.size());
}
template<typename Storage>
void
CfgHosts::getAllbyHostnameInternal(const std::string& hostname,
Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_HOSTNAME)
.arg(hostname);
// Use try hostname.
const HostContainerIndex5& idx = hosts_.get<5>();
// Append each Host object to the storage.
for (HostContainerIndex5::iterator host = idx.lower_bound(hostname);
host != idx.upper_bound(hostname);
++host) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_HOSTNAME_HOST)
.arg(hostname)
.arg((*host)->toText());
storage.push_back(*host);
}
// Log how many hosts have been found.
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_HOSTNAME_COUNT)
.arg(hostname)
.arg(storage.size());
}
template<typename Storage>
void
CfgHosts::getAllbyHostnameInternal4(const std::string& hostname,
const SubnetID& subnet_id,
Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE,
HOSTS_CFG_GET_ALL_HOSTNAME_SUBNET_ID4)
.arg(hostname)
.arg(subnet_id);
// Use try hostname.
const HostContainerIndex5& idx = hosts_.get<5>();
// Append each Host object to the storage.
for (HostContainerIndex5::iterator host = idx.lower_bound(hostname);
host != idx.upper_bound(hostname);
++host) {
if ((*host)->getIPv4SubnetID() != subnet_id) {
continue;
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_HOSTNAME_SUBNET_ID4_HOST)
.arg(hostname)
.arg(subnet_id)
.arg((*host)->toText());
storage.push_back(*host);
}
// Log how many hosts have been found.
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ALL_HOSTNAME_SUBNET_ID4_COUNT)
.arg(hostname)
.arg(subnet_id)
.arg(storage.size());
}
template<typename Storage>
void
CfgHosts::getAllbyHostnameInternal6(const std::string& hostname,
const SubnetID& subnet_id,
Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE,
HOSTS_CFG_GET_ALL_HOSTNAME_SUBNET_ID6)
.arg(hostname)
.arg(subnet_id);
// Use try hostname.
const HostContainerIndex5& idx = hosts_.get<5>();
// Append each Host object to the storage.
for (HostContainerIndex5::iterator host = idx.lower_bound(hostname);
host != idx.upper_bound(hostname);
++host) {
if ((*host)->getIPv6SubnetID() != subnet_id) {
continue;
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_HOSTNAME_SUBNET_ID6_HOST)
.arg(hostname)
.arg(subnet_id)
.arg((*host)->toText());
storage.push_back(*host);
}
// Log how many hosts have been found.
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ALL_HOSTNAME_SUBNET_ID6_COUNT)
.arg(hostname)
.arg(subnet_id)
.arg(storage.size());
}
template<typename Storage>
void
CfgHosts::getPageInternal(uint64_t lower_host_id,
const HostPageSize& page_size,
Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL);
// Use the host id last index.
const HostContainerIndex4& idx = hosts_.get<4>();
HostContainerIndex4::const_iterator host = idx.lower_bound(lower_host_id);
// Exclude the lower bound id when it is not zero.
if (lower_host_id &&
(host != idx.end()) && ((*host)->getHostId() == lower_host_id)) {
++host;
}
// Return hosts within the page size.
for (; host != idx.end(); ++host) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_HOST)
.arg((*host)->toText());
storage.push_back(*host);
if (storage.size() >= page_size.page_size_) {
break;
}
}
// Log how many hosts have been found.
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_COUNT)
.arg(storage.size());
}
template<typename Storage>
void
CfgHosts::getPageInternal4(const SubnetID& subnet_id,
uint64_t lower_host_id,
const HostPageSize& page_size,
Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_SUBNET_ID4)
.arg(subnet_id);
// Use the host id last index.
const HostContainerIndex4& idx = hosts_.get<4>();
HostContainerIndex4::const_iterator host = idx.lower_bound(lower_host_id);
// Exclude the lower bound id when it is not zero.
if (lower_host_id &&
(host != idx.end()) && ((*host)->getHostId() == lower_host_id)) {
++host;
}
// Return hosts in the subnet within the page size.
for (; host != idx.end(); ++host) {
if ((*host)->getIPv4SubnetID() != subnet_id) {
continue;
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_SUBNET_ID4_HOST)
.arg(subnet_id)
.arg((*host)->toText());
storage.push_back(*host);
if (storage.size() >= page_size.page_size_) {
break;
}
}
// Log how many hosts have been found.
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_SUBNET_ID4_COUNT)
.arg(subnet_id)
.arg(storage.size());
}
template<typename Storage>
void
CfgHosts::getPageInternal6(const SubnetID& subnet_id,
uint64_t lower_host_id,
const HostPageSize& page_size,
Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_SUBNET_ID6)
.arg(subnet_id);
// Use the host id last index.
const HostContainerIndex4& idx = hosts_.get<4>();
HostContainerIndex4::const_iterator host = idx.lower_bound(lower_host_id);
// Exclude the lower bound id when it is not zero.
if (lower_host_id &&
(host != idx.end()) && ((*host)->getHostId() == lower_host_id)) {
++host;
}
// Return hosts in the subnet within the page size.
for (; host != idx.end(); ++host) {
if ((*host)->getIPv6SubnetID() != subnet_id) {
continue;
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_SUBNET_ID6_HOST)
.arg(subnet_id)
.arg((*host)->toText());
storage.push_back(*host);
if (storage.size() >= page_size.page_size_) {
break;
}
}
// Log how many hosts have been found.
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_SUBNET_ID6_COUNT)
.arg(subnet_id)
.arg(storage.size());
}
template<typename Storage>
void
CfgHosts::getAllInternal4(const IOAddress& address, Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_ADDRESS4)
.arg(address.toText());
// Must not specify address other than IPv4.
if (!address.isV4()) {
isc_throw(BadHostAddress, "must specify an IPv4 address when searching"
" for a host, specified address was " << address);
}
// Search for the Host using the reserved IPv4 address as a key.
const HostContainerIndex1& idx = hosts_.get<1>();
HostContainerIndex1Range r = idx.equal_range(address);
// Append each Host object to the storage.
BOOST_FOREACH(auto const& host, r) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_ADDRESS4_HOST)
.arg(address.toText())
.arg(host->toText());
storage.push_back(host);
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_ADDRESS4_COUNT)
.arg(address.toText())
.arg(storage.size());
}
ConstHostCollection
CfgHosts::getAllInternal4(const SubnetID& subnet_id,
const IOAddress& address) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_SUBNET_ID_ADDRESS4)
.arg(subnet_id)
.arg(address.toText());
// Must not specify address other than IPv4.
if (!address.isV4()) {
isc_throw(BadHostAddress, "must specify an IPv4 address when searching"
" for a host, specified address was " << address);
}
// Search for the Host using the reserved IPv4 address as a key.
ConstHostCollection hosts;
const HostContainerIndex1& idx = hosts_.get<1>();
HostContainerIndex1Range r = idx.equal_range(address);
// Append each Host object to the storage.
BOOST_FOREACH(auto const& host, r) {
if (host->getIPv4SubnetID() == subnet_id) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_SUBNET_ID_ADDRESS4_HOST)
.arg(subnet_id)
.arg(address.toText())
.arg(host->toText());
hosts.push_back(host);
}
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ALL_SUBNET_ID_ADDRESS4_COUNT)
.arg(subnet_id)
.arg(address.toText())
.arg(hosts.size());
return (hosts);
}
template<typename Storage>
void
CfgHosts::getAllInternal6(const IOAddress& address, Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_ADDRESS6)
.arg(address.toText());
// Must not specify address other than IPv6.
if (!address.isV6()) {
isc_throw(BadHostAddress, "must specify an IPv6 address when searching"
" for a host, specified address was " << address);
}
// Search for the Host using the reserved IPv6 address as a key.
const HostContainer6Index4& idx = hosts6_.get<4>();
HostContainer6Index4Range r = idx.equal_range(address);
// Append each Host object to the storage.
BOOST_FOREACH(auto const& reservation, r) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_ADDRESS6_HOST)
.arg(address.toText())
.arg(reservation.host_->toText());
storage.push_back(reservation.host_);
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS, HOSTS_CFG_GET_ALL_ADDRESS6_COUNT)
.arg(address.toText())
.arg(storage.size());
}
ConstHostPtr
CfgHosts::get4(const SubnetID& subnet_id,
const Host::IdentifierType& identifier_type,
const uint8_t* identifier_begin,
const size_t identifier_len) const {
MultiThreadingLock lock(*mutex_);
return (getHostInternal(subnet_id, false, identifier_type, identifier_begin,
identifier_len));
}
HostPtr
CfgHosts::get4(const SubnetID& subnet_id,
const Host::IdentifierType& identifier_type,
const uint8_t* identifier_begin,
const size_t identifier_len) {
MultiThreadingLock lock(*mutex_);
return (getHostInternal(subnet_id, false, identifier_type, identifier_begin,
identifier_len));
}
ConstHostPtr
CfgHosts::get4(const SubnetID& subnet_id, const IOAddress& address) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS4)
.arg(subnet_id).arg(address.toText());
ConstHostCollection hosts = getAllInternal4(subnet_id, address);
if (hosts.empty()) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS4_NULL)
.arg(subnet_id)
.arg(address.toText());
return (ConstHostPtr());
} else {
ConstHostPtr host = *hosts.begin();
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS4_HOST)
.arg(subnet_id)
.arg(address.toText())
.arg(host->toText());
return (host);
}
}
ConstHostCollection
CfgHosts::getAll4(const SubnetID& subnet_id,
const asiolink::IOAddress& address) const {
MultiThreadingLock lock(*mutex_);
return (getAllInternal4(subnet_id, address));
}
ConstHostPtr
CfgHosts::get6(const SubnetID& subnet_id,
const Host::IdentifierType& identifier_type,
const uint8_t* identifier_begin,
const size_t identifier_len) const {
MultiThreadingLock lock(*mutex_);
return (getHostInternal(subnet_id, true, identifier_type, identifier_begin,
identifier_len));
}
HostPtr
CfgHosts::get6(const SubnetID& subnet_id,
const Host::IdentifierType& identifier_type,
const uint8_t* identifier_begin,
const size_t identifier_len) {
MultiThreadingLock lock(*mutex_);
return (getHostInternal(subnet_id, true, identifier_type, identifier_begin,
identifier_len));
}
ConstHostPtr
CfgHosts::get6(const IOAddress& prefix, const uint8_t prefix_len) const {
MultiThreadingLock lock(*mutex_);
return (getHostInternal6<ConstHostPtr>(prefix, prefix_len));
}
HostPtr
CfgHosts::get6(const IOAddress& prefix, const uint8_t prefix_len) {
MultiThreadingLock lock(*mutex_);
return (getHostInternal6<HostPtr>(prefix, prefix_len));
}
ConstHostPtr
CfgHosts::get6(const SubnetID& subnet_id,
const asiolink::IOAddress& address) const {
// Do not log here because getHostInternal6 logs.
MultiThreadingLock lock(*mutex_);
return (getHostInternal6<ConstHostPtr, ConstHostCollection>(subnet_id, address));
}
HostPtr
CfgHosts::get6(const SubnetID& subnet_id,
const asiolink::IOAddress& address) {
// Do not log here because getHostInternal6 logs.
MultiThreadingLock lock(*mutex_);
return (getHostInternal6<HostPtr, HostCollection>(subnet_id, address));
}
ConstHostCollection
CfgHosts::getAll6(const SubnetID& subnet_id,
const asiolink::IOAddress& address) const {
ConstHostCollection hosts;
MultiThreadingLock lock(*mutex_);
getAllInternal6(subnet_id, address, hosts);
return (hosts);
}
template<typename ReturnType, typename Storage>
ReturnType
CfgHosts::getHostInternal6(const SubnetID& subnet_id,
const asiolink::IOAddress& address) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS6)
.arg(subnet_id).arg(address.toText());
Storage storage;
getAllInternal6<Storage>(subnet_id, address, storage);
switch (storage.size()) {
case 0:
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS6_NULL)
.arg(subnet_id)
.arg(address.toText());
return (HostPtr());
case 1:
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ONE_SUBNET_ID_ADDRESS6_HOST)
.arg(subnet_id)
.arg(address.toText())
.arg((*storage.begin())->toText());
return (*storage.begin());
default:
isc_throw(DuplicateHost, "more than one reservation found"
" for the host belonging to the subnet with id '"
<< subnet_id << "' and using the address '"
<< address.toText() << "'");
}
}
template<typename ReturnType>
ReturnType
CfgHosts::getHostInternal6(const asiolink::IOAddress& prefix,
const uint8_t prefix_len) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ONE_PREFIX)
.arg(prefix.toText()).arg(static_cast<int>(prefix_len));
// Let's get all reservations that match subnet_id, address.
const HostContainer6Index0& idx = hosts6_.get<0>();
HostContainer6Index0Range r = make_pair(idx.lower_bound(prefix),
idx.upper_bound(prefix));
BOOST_FOREACH(auto const& resrv, r) {
if (resrv.resrv_.getPrefixLen() == prefix_len) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ONE_PREFIX_HOST)
.arg(prefix.toText())
.arg(static_cast<int>(prefix_len))
.arg(resrv.host_->toText());
return (resrv.host_);
}
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ONE_PREFIX_NULL)
.arg(prefix.toText())
.arg(static_cast<int>(prefix_len));
return (ReturnType());
}
template<typename Storage>
void
CfgHosts::getAllInternal6(const SubnetID& subnet_id,
const asiolink::IOAddress& address,
Storage& storage) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ALL_SUBNET_ID_ADDRESS6)
.arg(subnet_id).arg(address.toText());
// Must not specify address other than IPv6.
if (!address.isV6()) {
isc_throw(BadHostAddress, "must specify an IPv6 address when searching"
" for a host, specified address was " << address);
}
// Let's get all reservations that match subnet_id, address.
const HostContainer6Index1& idx = hosts6_.get<1>();
HostContainer6Index1Range r = make_pair(idx.lower_bound(boost::make_tuple(subnet_id, address)),
idx.upper_bound(boost::make_tuple(subnet_id, address)));
// For each IPv6 reservation, add the host to the results list. Fortunately,
// in all sane cases, there will be only one such host. (Each host can have
// multiple addresses reserved, but for each (address, subnet_id) there should
// be at most one host reserving it).
BOOST_FOREACH(auto const& resrv, r) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE_DETAIL_DATA,
HOSTS_CFG_GET_ALL_SUBNET_ID_ADDRESS6_HOST)
.arg(subnet_id)
.arg(address.toText())
.arg(resrv.host_->toText());
storage.push_back(resrv.host_);
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ALL_SUBNET_ID_ADDRESS6_COUNT)
.arg(subnet_id)
.arg(address.toText())
.arg(storage.size());
}
HostPtr
CfgHosts::getHostInternal(const SubnetID& subnet_id, const bool subnet6,
const Host::IdentifierType& identifier_type,
const uint8_t* identifier,
const size_t identifier_len) const {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_GET_ONE_SUBNET_ID_IDENTIFIER)
.arg(subnet6 ? "IPv6" : "IPv4")
.arg(subnet_id)
.arg(Host::getIdentifierAsText(identifier_type, identifier, identifier_len));
// Get all hosts for a specified identifier. This may return multiple hosts
// for different subnets, but the number of hosts returned should be low
// because one host presumably doesn't show up in many subnets.
HostCollection hosts;
getAllInternal<HostCollection>(identifier_type, identifier, identifier_len,
hosts);
HostPtr host;
// Iterate over the returned hosts and select those for which the
// subnet id matches.
for (auto const& host_it : hosts) {
// Check if this is IPv4 subnet or IPv6 subnet.
SubnetID host_subnet_id = subnet6 ? host_it->getIPv6SubnetID() :
host_it->getIPv4SubnetID();
if (subnet_id == host_subnet_id) {
// If this is the first occurrence of the host for this subnet,
// remember it. But, if we find that this is second @c Host object
// for the same client, it is a misconfiguration. Most likely,
// the administrator has specified one reservation for a HW
// address and another one for the DUID, which gives an ambiguous
// result, and we don't know which reservation we should choose.
// Therefore, throw an exception.
if (!host) {
host = host_it;
} else {
isc_throw(DuplicateHost, "more than one reservation found"
" for the host belonging to the subnet with id '"
<< subnet_id << "' and using the identifier '"
<< Host::getIdentifierAsText(identifier_type,
identifier,
identifier_len)
<< "'");
}
}
}
if (host) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ONE_SUBNET_ID_IDENTIFIER_HOST)
.arg(subnet_id)
.arg(Host::getIdentifierAsText(identifier_type, identifier,
identifier_len))
.arg(host->toText());
} else {
LOG_DEBUG(hosts_logger, HOSTS_DBG_RESULTS,
HOSTS_CFG_GET_ONE_SUBNET_ID_IDENTIFIER_NULL)
.arg(subnet_id)
.arg(Host::getIdentifierAsText(identifier_type, identifier,
identifier_len));
}
return (host);
}
void
CfgHosts::add(const HostPtr& host) {
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_ADD_HOST)
.arg(host ? host->toText() : "(no-host)");
// Sanity check that the host is non-null.
if (!host) {
isc_throw(BadValue, "specified host object must not be NULL when it"
" is added to the configuration");
}
// At least one subnet ID must be used.
if (host->getIPv4SubnetID() == SUBNET_ID_UNUSED &&
host->getIPv6SubnetID() == SUBNET_ID_UNUSED) {
isc_throw(BadValue, "must not use both IPv4 and IPv6 subnet ids of"
" 0 when adding new host reservation");
}
MultiThreadingLock lock(*mutex_);
add4(host);
add6(host);
}
void
CfgHosts::add4(const HostPtr& host) {
HWAddrPtr hwaddr = host->getHWAddress();
DuidPtr duid = host->getDuid();
// Check for duplicates for the specified IPv4 subnet.
if (host->getIPv4SubnetID() != SUBNET_ID_UNUSED) {
if (hwaddr && !hwaddr->hwaddr_.empty() &&
getHostInternal(host->getIPv4SubnetID(), false, Host::IDENT_HWADDR,
&hwaddr->hwaddr_[0], hwaddr->hwaddr_.size())) {
isc_throw(DuplicateHost, "failed to add new host using the HW"
<< " address '" << hwaddr->toText(false)
<< "' to the IPv4 subnet id '" << host->getIPv4SubnetID()
<< "' as this host has already been added");
}
if (duid && !duid->getDuid().empty() &&
getHostInternal(host->getIPv4SubnetID(), false, Host::IDENT_DUID,
&duid->getDuid()[0], duid->getDuid().size())) {
isc_throw(DuplicateHost, "failed to add new host using the "
<< "DUID '" << duid->toText()
<< "' to the IPv4 subnet id '" << host->getIPv4SubnetID()
<< "' as this host has already been added");
}
// Check for duplicates for the specified IPv6 subnet.
} else if (host->getIPv6SubnetID() != SUBNET_ID_UNUSED) {
if (duid && !duid->getDuid().empty() &&
getHostInternal(host->getIPv6SubnetID(), true, Host::IDENT_DUID,
&duid->getDuid()[0], duid->getDuid().size())) {
isc_throw(DuplicateHost, "failed to add new host using the "
<< "DUID '" << duid->toText()
<< "' to the IPv6 subnet id '" << host->getIPv6SubnetID()
<< "' as this host has already been added");
}
if (hwaddr && !hwaddr->hwaddr_.empty() &&
getHostInternal(host->getIPv6SubnetID(), true, Host::IDENT_HWADDR,
&hwaddr->hwaddr_[0], hwaddr->hwaddr_.size())) {
isc_throw(DuplicateHost, "failed to add new host using the HW"
<< " address '" << hwaddr->toText(false)
<< "' to the IPv6 subnet id '" << host->getIPv6SubnetID()
<< "' as this host has already been added");
}
}
// Check if the address is already reserved for the specified IPv4 subnet.
if (ip_reservations_unique_ && !host->getIPv4Reservation().isV4Zero() &&
(host->getIPv4SubnetID() != SUBNET_ID_UNUSED) &&
!getAllInternal4(host->getIPv4SubnetID(),
host->getIPv4Reservation()).empty()) {
isc_throw(ReservedAddress, "failed to add new host using the HW"
" address '" << (hwaddr ? hwaddr->toText(false) : "(null)")
<< " and DUID '" << (duid ? duid->toText() : "(null)")
<< "' to the IPv4 subnet id '" << host->getIPv4SubnetID()
<< "' for the address " << host->getIPv4Reservation()
<< ": There's already a reservation for this address");
}
// Check if the (identifier type, identifier) tuple is already used.
const std::vector<uint8_t>& id = host->getIdentifier();
if ((host->getIPv4SubnetID() != SUBNET_ID_UNUSED) && !id.empty()) {
if (getHostInternal(host->getIPv4SubnetID(), false,
host->getIdentifierType(), &id[0], id.size())) {
isc_throw(DuplicateHost, "failed to add duplicate IPv4 host using identifier: "
<< Host::getIdentifierAsText(host->getIdentifierType(),
&id[0], id.size()));
}
}
// This is a new instance - add it.
host->setHostId(++next_host_id_);
hosts_.insert(host);
}
void
CfgHosts::add6(const HostPtr& host) {
if (host->getIPv6SubnetID() == SUBNET_ID_UNUSED) {
// This is IPv4-only host. No need to add it to v6 tables.
return;
}
HWAddrPtr hwaddr = host->getHWAddress();
DuidPtr duid = host->getDuid();
// Get all reservations for this host.
IPv6ResrvRange reservations = host->getIPv6Reservations();
// Check if there are any IPv6 reservations.
if (std::distance(reservations.first, reservations.second) == 0) {
// If there aren't, we don't need to add this to hosts6_, which is used
// for getting hosts by their IPv6 address reservations.
return;
}
// Now for each reservation, insert corresponding (address, host) tuple.
BOOST_FOREACH(auto const& it, reservations) {
if (ip_reservations_unique_) {
// If there's an entry for this (subnet-id, address), reject it.
if (getHostInternal6<ConstHostPtr, ConstHostCollection>
(host->getIPv6SubnetID(), it.second.getPrefix())) {
isc_throw(DuplicateHost, "failed to add address reservation for "
<< "host using the HW address '"
<< (hwaddr ? hwaddr->toText(false) : "(null)")
<< " and DUID '" << (duid ? duid->toText() : "(null)")
<< "' to the IPv6 subnet id '" << host->getIPv6SubnetID()
<< "' for address/prefix " << it.second.getPrefix()
<< ": There's already reservation for this address/prefix");
}
}
hosts6_.insert(HostResrv6Tuple(it.second, host));
}
}
bool
CfgHosts::del(const SubnetID& subnet_id, const asiolink::IOAddress& addr) {
size_t erased_hosts = 0;
size_t erased_addresses = 0;
MultiThreadingLock lock(*mutex_);
if (addr.isV4()) {
HostContainerIndex4& idx = hosts_.get<4>();
ConstHostCollection hosts;
getAllInternal4<ConstHostCollection>(addr, hosts);
// Delete IPv4 reservation and host.
for (auto const& host : hosts) {
if (host->getIPv4SubnetID() != subnet_id) {
continue;
}
erased_hosts += idx.erase(host->getHostId());
}
erased_addresses = erased_hosts;
} else {
HostContainer6Index1& idx6 = hosts6_.get<1>();
HostContainerIndex4& idx = hosts_.get<4>();
HostContainer6Index3& idx3 = hosts6_.get<3>();
// Delete hosts and IPv6 reservations.
auto const& range = idx6.equal_range(boost::make_tuple(subnet_id, addr));
// Find hosts to delete: we can't delete them now because a host
// can have more than one reservation for the address.
set<HostID> ids;
BOOST_FOREACH(auto const& key, range) {
static_cast<void>(ids.insert(key.host_->getHostId()));
}
// Delete them.
for(auto const& id : ids) {
erased_hosts += idx.erase(id);
erased_addresses += idx3.erase(id);
}
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_DEL)
.arg(erased_hosts)
.arg(erased_addresses)
.arg(subnet_id)
.arg(addr.toText());
return (erased_hosts != 0);
}
size_t
CfgHosts::delAll4(const SubnetID& subnet_id) {
HostContainerIndex2& idx = hosts_.get<2>();
MultiThreadingLock lock(*mutex_);
size_t erased = idx.erase(subnet_id);
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_DEL_ALL_SUBNET4)
.arg(erased)
.arg(subnet_id);
return (erased);
}
bool
CfgHosts::del4(const SubnetID& subnet_id,
const Host::IdentifierType& identifier_type,
const uint8_t* identifier_begin,
const size_t identifier_len) {
HostContainerIndex0& idx = hosts_.get<0>();
MultiThreadingLock lock(*mutex_);
auto const t = boost::make_tuple(std::vector<uint8_t>(identifier_begin,
identifier_begin + identifier_len),
identifier_type);
auto const& range = idx.equal_range(t);
size_t erased = 0;
for (auto key = range.first; key != range.second;) {
if ((*key)->getIPv4SubnetID() != subnet_id) {
++key;
// Skip hosts from other subnets.
continue;
}
key = idx.erase(key);
erased++;
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_DEL4)
.arg(erased)
.arg(subnet_id)
.arg(Host::getIdentifierAsText(identifier_type, identifier_begin, identifier_len));
return (erased != 0);
}
size_t
CfgHosts::delAll6(const SubnetID& subnet_id) {
// Delete IPv6 reservations.
HostContainer6Index2& idx6 = hosts6_.get<2>();
MultiThreadingLock lock(*mutex_);
size_t erased_addresses = idx6.erase(subnet_id);
// Delete hosts.
HostContainerIndex3& idx = hosts_.get<3>();
size_t erased_hosts = idx.erase(subnet_id);
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_DEL_ALL_SUBNET6)
.arg(erased_hosts)
.arg(erased_addresses)
.arg(subnet_id);
return (erased_hosts);
}
bool
CfgHosts::del6(const SubnetID& subnet_id,
const Host::IdentifierType& identifier_type,
const uint8_t* identifier_begin,
const size_t identifier_len) {
HostContainerIndex0& idx = hosts_.get<0>();
HostContainer6Index3& idx6 = hosts6_.get<3>();
auto const t = boost::make_tuple(std::vector<uint8_t>(identifier_begin,
identifier_begin + identifier_len),
identifier_type);
MultiThreadingLock lock(*mutex_);
auto const& range = idx.equal_range(t);
size_t erased_hosts = 0;
size_t erased_reservations = 0;
for (auto key = range.first; key != range.second;) {
if ((*key)->getIPv6SubnetID() != subnet_id) {
++key;
// Skip hosts from other subnets.
continue;
}
// Delete host.
auto host_id = (*key)->getHostId();
key = idx.erase(key);
erased_hosts++;
// Delete reservations.
erased_reservations += idx6.erase(host_id);
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_DEL6)
.arg(erased_hosts)
.arg(erased_reservations)
.arg(subnet_id)
.arg(Host::getIdentifierAsText(identifier_type, identifier_begin, identifier_len));
return (erased_hosts != 0);
}
void
CfgHosts::update(HostPtr const& host) {
bool deleted(false);
HostContainerIndex0& idx = hosts_.get<0>();
std::vector<uint8_t> const& identifier(host->getIdentifier());
auto const t = boost::make_tuple(identifier, host->getIdentifierType());
MultiThreadingLock lock(*mutex_);
auto const& range = idx.equal_range(t);
if (host->getIPv4SubnetID() != SUBNET_ID_UNUSED) {
// inline del4.
for (auto key = range.first; key != range.second;) {
if ((*key)->getIPv4SubnetID() != host->getIPv4SubnetID()) {
++key;
// Skip hosts from other subnets.
continue;
}
key = idx.erase(key);
deleted = true;
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_UPDATE_DEL4)
.arg(1)
.arg(host->getIPv4SubnetID())
.arg(host->getIdentifierAsText());
}
} else if (host->getIPv6SubnetID() != SUBNET_ID_UNUSED) {
// inline del6.
HostContainer6Index3& idx6 = hosts6_.get<3>();
for (auto key = range.first; key != range.second;) {
if ((*key)->getIPv6SubnetID() != host->getIPv6SubnetID()) {
++key;
// Skip hosts from other subnets.
}
auto host_id = (*key)->getHostId();
key = idx.erase(key);
deleted = true;
size_t erased_reservations = idx6.erase(host_id);
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_UPDATE_DEL6)
.arg(1)
.arg(erased_reservations)
.arg(host->getIPv6SubnetID())
.arg(host->getIdentifierAsText());
}
} else {
isc_throw(HostNotFound, "Mandatory 'subnet-id' parameter missing.");
}
if (!deleted) {
isc_throw(HostNotFound, "Host not updated (not found).");
}
LOG_DEBUG(hosts_logger, HOSTS_DBG_TRACE, HOSTS_CFG_UPDATE_ADD)
.arg(host->toText());
add4(host);
add6(host);
}
bool
CfgHosts::setIPReservationsUnique(const bool unique) {
MultiThreadingLock lock(*mutex_);
ip_reservations_unique_ = unique;
return (true);
}
ElementPtr
CfgHosts::toElement() const {
uint16_t family = CfgMgr::instance().getFamily();
if (family == AF_INET) {
return (toElement4());
} else if (family == AF_INET6) {
return (toElement6());
} else {
isc_throw(ToElementError, "CfgHosts::toElement: unknown "
"address family: " << family);
}
}
ElementPtr
CfgHosts::toElement4() const {
CfgHostsList result;
// Iterate using arbitrary the index 0
const HostContainerIndex0& idx = hosts_.get<0>();
MultiThreadingLock lock(*mutex_);
for (auto const& host : idx) {
// Convert host to element representation
ElementPtr map = host->toElement4();
// Push it on the list
SubnetID subnet_id = host->getIPv4SubnetID();
result.add(subnet_id, map);
}
return (result.externalize());
}
ElementPtr
CfgHosts::toElement6() const {
CfgHostsList result;
// Iterate using arbitrary the index 0
const HostContainerIndex0& idx = hosts_.get<0>();
MultiThreadingLock lock(*mutex_);
for (auto const& host : idx) {
// Convert host to Element representation
ElementPtr map = host->toElement6();
// Push it on the list
SubnetID subnet_id = host->getIPv6SubnetID();
result.add(subnet_id, map);
}
return (result.externalize());
}
} // end of namespace isc::dhcp
} // end of namespace isc
|