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 | // Copyright (C) 2018-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 <communication_state.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <ha_log.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <ha_service_states.h><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <cc/data.h>
#include <exceptions/exceptions.h>
#include <dhcp/dhcp4.h>
#include <dhcp/dhcp6.h>
#include <dhcp/option_int.h>
#include <dhcp/pkt4.h>
#include <dhcp/pkt6.h>
#include <http/date_time.h>
#include <util/boost_time_utils.h>
#include <util/multi_threading_mgr.h>
#include <boost/pointer_cast.hpp><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <ctime><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <functional><--- 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.
#include <sstream><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <utility><--- 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::dhcp;
using namespace isc::http;
using namespace isc::log;
using namespace isc::util;
using namespace boost::posix_time;
using namespace std;
namespace {
/// @brief Warning is issued if the clock skew exceeds this value.
constexpr long WARN_CLOCK_SKEW = 30;
/// @brief HA service terminates if the clock skew exceeds this value.
constexpr long TERM_CLOCK_SKEW = 60;
/// @brief Minimum time between two consecutive clock skew warnings.
constexpr long MIN_TIME_SINCE_CLOCK_SKEW_WARN = 60;
}
namespace isc {
namespace ha {
CommunicationState::CommunicationState(const IOServicePtr& io_service,
const HAConfigPtr& config)
: io_service_(io_service), config_(config), timer_(), interval_(0),
poke_time_(boost::posix_time::microsec_clock::universal_time()),
heartbeat_impl_(0), partner_state_(-1), partner_state_time_(),
partner_scopes_(), clock_skew_(0, 0, 0, 0), last_clock_skew_warn_(),
my_time_at_skew_(), partner_time_at_skew_(),
analyzed_messages_count_(0), unsent_update_count_(0),
partner_unsent_update_count_{0, 0}, mutex_(new mutex()) {
}
CommunicationState::~CommunicationState() {
stopHeartbeat();
}
void
CommunicationState::modifyPokeTime(const long secs) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
poke_time_ += boost::posix_time::seconds(secs);
} else {
poke_time_ += boost::posix_time::seconds(secs);
}
}
int
CommunicationState::getPartnerState() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (partner_state_);
} else {
return (partner_state_);
}
}
void
CommunicationState::setPartnerState(const std::string& state) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
setPartnerStateInternal(state);
} else {
setPartnerStateInternal(state);
}
}
void
CommunicationState::setPartnerUnavailable() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
setPartnerStateInternal("unavailable");
resetPartnerTimeInternal();
} else {
setPartnerStateInternal("unavailable");
resetPartnerTimeInternal();
}
}
void
CommunicationState::setPartnerStateInternal(const std::string& state) {
try {
auto new_partner_state = stringToState(state);
if (new_partner_state != partner_state_) {
setCurrentPartnerStateTimeInternal();
}
partner_state_ = new_partner_state;
} catch (...) {
isc_throw(BadValue, "unsupported HA partner state returned "
<< state);
}
}
time_duration
CommunicationState::getDurationSincePartnerStateTime() const {
ptime now = boost::posix_time::microsec_clock::universal_time();
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (now - partner_state_time_);
} else {
return (now - partner_state_time_);
}
}
void
CommunicationState::setCurrentPartnerStateTimeInternal() {
partner_state_time_ = boost::posix_time::microsec_clock::universal_time();
}
std::set<std::string>
CommunicationState::getPartnerScopes() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (partner_scopes_);
} else {
return (partner_scopes_);
}
}
void
CommunicationState::setPartnerScopes(ConstElementPtr new_scopes) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
setPartnerScopesInternal(new_scopes);
} else {
setPartnerScopesInternal(new_scopes);
}
}
void
CommunicationState::setPartnerScopesInternal(ConstElementPtr new_scopes) {
if (!new_scopes || (new_scopes->getType() != Element::list)) {
isc_throw(BadValue, "unable to record partner's HA scopes because"
" the received value is not a valid JSON list");
}
std::set<std::string> partner_scopes;
for (auto i = 0; i < new_scopes->size(); ++i) {
auto scope = new_scopes->get(i);
if (scope->getType() != Element::string) {
isc_throw(BadValue, "unable to record partner's HA scopes because"
" the received scope value is not a valid JSON string");
}
auto scope_str = scope->stringValue();
if (!scope_str.empty()) {
partner_scopes.insert(scope_str);
}
}
partner_scopes_ = partner_scopes;
}
void
CommunicationState::startHeartbeat(const long interval,
const std::function<void()>& heartbeat_impl) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
startHeartbeatInternal(interval, heartbeat_impl);
} else {
startHeartbeatInternal(interval, heartbeat_impl);
}
}
void
CommunicationState::startHeartbeatInternal(const long interval,
const std::function<void()>& heartbeat_impl) {
bool settings_modified = false;
// If we're setting the heartbeat for the first time, it should
// be non-null.
if (heartbeat_impl) {
settings_modified = true;
heartbeat_impl_ = heartbeat_impl;
} else if (!heartbeat_impl_) {
// The heartbeat is re-scheduled but we have no historic implementation
// pointer we could re-use. This is a programmatic issue.
isc_throw(BadValue, "unable to start heartbeat when pointer"
" to the heartbeat implementation is not specified");
}
// If we're setting the heartbeat for the first time, the interval
// should be greater than 0.
if (interval != 0) {
settings_modified |= (interval_ != interval);
interval_ = interval;
} else if (interval_ <= 0) {
// The heartbeat is re-scheduled but we have no historic interval
// which we could re-use. This is a programmatic issue.
heartbeat_impl_ = 0;
isc_throw(BadValue, "unable to start heartbeat when interval"
" for the heartbeat timer is not specified");
}
if (!timer_) {
timer_.reset(new IntervalTimer(io_service_));
}
if (settings_modified) {
timer_->setup(heartbeat_impl_, interval_, IntervalTimer::ONE_SHOT);
}
}
void
CommunicationState::stopHeartbeat() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
stopHeartbeatInternal();
} else {
stopHeartbeatInternal();
}
}
void
CommunicationState::stopHeartbeatInternal() {
if (timer_) {
timer_->cancel();
timer_.reset();
interval_ = 0;
heartbeat_impl_ = 0;
}
}
bool
CommunicationState::isHeartbeatRunning() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (static_cast<bool>(timer_));
} else {
return (static_cast<bool>(timer_));
}
}
boost::posix_time::time_duration
CommunicationState::updatePokeTime() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (updatePokeTimeInternal());
} else {
return (updatePokeTimeInternal());
}
}
boost::posix_time::time_duration
CommunicationState::updatePokeTimeInternal() {
// Remember previous poke time.
boost::posix_time::ptime prev_poke_time = poke_time_;
// Set poke time to the current time.
poke_time_ = boost::posix_time::microsec_clock::universal_time();
return (poke_time_ - prev_poke_time);
}
void
CommunicationState::poke() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
pokeInternal();
} else {
pokeInternal();
}
}
void
CommunicationState::pokeInternal() {
// Update poke time and compute duration.
boost::posix_time::time_duration duration_since_poke = updatePokeTimeInternal();
// If we have been tracking the DHCP messages directed to the partner,
// we need to clear any gathered information because the connection
// seems to be (re)established.
clearConnectingClients();
analyzed_messages_count_ = 0;
if (timer_) {
// Check the duration since last poke. If it is less than a second, we don't
// want to reschedule the timer. In order to avoid the overhead of
// re-scheduling the timer too frequently we reschedule it only if the
// duration is 1s or more. This matches the time resolution for heartbeats.
if (duration_since_poke.total_seconds() > 0) {
// A poke causes the timer to be re-scheduled to prevent it
// from triggering a heartbeat shortly after confirming the
// connection is ok.
startHeartbeatInternal();
}
}
}
int64_t
CommunicationState::getDurationInMillisecs() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (getDurationInMillisecsInternal());
} else {
return (getDurationInMillisecsInternal());
}
}
int64_t
CommunicationState::getDurationInMillisecsInternal() const {
ptime now = boost::posix_time::microsec_clock::universal_time();
time_duration duration = now - poke_time_;
return (duration.total_milliseconds());
}
bool
CommunicationState::isCommunicationInterrupted() const {
return (getDurationInMillisecs() > config_->getMaxResponseDelay());
}
std::vector<uint8_t>
CommunicationState::getClientId(const PktPtr& message,
const uint16_t option_type) {
std::vector<uint8_t> client_id;
OptionPtr opt_client_id = message->getOption(option_type);
if (opt_client_id) {
client_id = opt_client_id->getData();
}
return (client_id);
}
size_t
CommunicationState::getAnalyzedMessagesCount() const {
return (analyzed_messages_count_);
}
size_t
CommunicationState::getRejectedLeaseUpdatesCount() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (getRejectedLeaseUpdatesCountInternal());
} else {
return (getRejectedLeaseUpdatesCountInternal());
}
}
bool
CommunicationState::reportRejectedLeaseUpdate(const PktPtr& message,
const uint32_t lifetime) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (reportRejectedLeaseUpdateInternal(message, lifetime));
} else {
return (reportRejectedLeaseUpdateInternal(message, lifetime));
}
}
bool
CommunicationState::reportSuccessfulLeaseUpdate(const PktPtr& message) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (reportSuccessfulLeaseUpdateInternal(message));
} else {
return (reportSuccessfulLeaseUpdateInternal(message));
}
}
void
CommunicationState::clearRejectedLeaseUpdates() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (clearRejectedLeaseUpdatesInternal());
} else {
return (clearRejectedLeaseUpdatesInternal());
}
}
bool
CommunicationState::clockSkewShouldWarn() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (clockSkewShouldWarnInternal());
} else {
return (clockSkewShouldWarnInternal());
}
}
bool
CommunicationState::clockSkewShouldWarnInternal() {
// First check if the clock skew is beyond the threshold.
if (isClockSkewGreater(WARN_CLOCK_SKEW)) {
// In order to prevent to frequent warnings we provide a gating mechanism
// which doesn't allow for issuing a warning earlier than 60 seconds after
// the previous one.
// Find the current time and the duration since last warning.
ptime now = boost::posix_time::microsec_clock::universal_time();
time_duration since_warn_duration = now - last_clock_skew_warn_;
// If the last warning was issued more than 60 seconds ago or it is a
// first warning, we need to update the last warning timestamp and return
// true to indicate that new warning should be issued.
if (last_clock_skew_warn_.is_not_a_date_time() ||
(since_warn_duration.total_seconds() > MIN_TIME_SINCE_CLOCK_SKEW_WARN)) {
last_clock_skew_warn_ = now;
LOG_WARN(ha_logger, HA_HIGH_CLOCK_SKEW)
.arg(config_->getThisServerName())
.arg(logFormatClockSkewInternal());
return (true);
}
}
// The warning should not be issued.
return (false);
}
bool
CommunicationState::clockSkewShouldTerminate() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
// Issue a warning if the clock skew is greater than 60s.
return (clockSkewShouldTerminateInternal());
} else {
return (clockSkewShouldTerminateInternal());
}
}
bool
CommunicationState::clockSkewShouldTerminateInternal() {
if (isClockSkewGreater(TERM_CLOCK_SKEW)) {
LOG_ERROR(ha_logger, HA_HIGH_CLOCK_SKEW_CAUSED_TERMINATION)
.arg(config_->getThisServerName())
.arg(logFormatClockSkewInternal());
return (true);
}
return (false);
}
bool
CommunicationState::rejectedLeaseUpdatesShouldTerminate() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (rejectedLeaseUpdatesShouldTerminateInternal());
} else {
return (rejectedLeaseUpdatesShouldTerminateInternal());
}
}
bool
CommunicationState::rejectedLeaseUpdatesShouldTerminateInternal() {
if (config_->getMaxRejectedLeaseUpdates() &&
(config_->getMaxRejectedLeaseUpdates() <= getRejectedLeaseUpdatesCountInternal())) {
LOG_ERROR(ha_logger, HA_LEASE_UPDATE_REJECTS_CAUSED_TERMINATION)
.arg(config_->getThisServerName());
return (true);
}
return (false);
}
bool
CommunicationState::isClockSkewGreater(const long seconds) const {
return ((clock_skew_.total_seconds() > seconds) ||
(clock_skew_.total_seconds() < -seconds));
}
void
CommunicationState::setPartnerTime(const std::string& time_text) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
setPartnerTimeInternal(time_text);
} else {
setPartnerTimeInternal(time_text);
}
}
void
CommunicationState::setPartnerTimeInternal(const std::string& time_text) {
partner_time_at_skew_ = HttpDateTime().fromRfc1123(time_text).getPtime();
my_time_at_skew_ = HttpDateTime().getPtime();
clock_skew_ = partner_time_at_skew_ - my_time_at_skew_;
}
void
CommunicationState::resetPartnerTimeInternal() {
clock_skew_ = boost::posix_time::time_duration(0, 0, 0, 0);
last_clock_skew_warn_ = boost::posix_time::ptime();
my_time_at_skew_ = boost::posix_time::ptime();
partner_time_at_skew_ = boost::posix_time::ptime();
}
std::string
CommunicationState::logFormatClockSkew() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (logFormatClockSkewInternal());
} else {
return (logFormatClockSkewInternal());
}
}
std::string
CommunicationState::logFormatClockSkewInternal() const {
std::ostringstream os;
if ((my_time_at_skew_.is_not_a_date_time()) ||
(partner_time_at_skew_.is_not_a_date_time())) {
// Guard against being called before times have been set.
// Otherwise we'll get out-range exceptions.
return ("skew not initialized");
}
// Note HttpTime resolution is only to seconds, so we use fractional
// precision of zero when logging.
os << "my time: " << ptimeToText(my_time_at_skew_, 0)
<< ", partner's time: " << ptimeToText(partner_time_at_skew_, 0)
<< ", partner's clock is ";
if (clock_skew_.total_seconds() == 0) {
// Most common case.
os << "synchroninzed";
} else if (clock_skew_.is_negative()) {
// Partner's time is behind our time.
os << clock_skew_.invert_sign().total_seconds() << "s behind";
} else {
// Partner's time is ahead of ours.
os << clock_skew_.total_seconds() << "s ahead";
}
return (os.str());
}
ElementPtr
CommunicationState::getReport() const {
auto report = Element::createMap();
auto in_touch = (getPartnerState() > 0);
report->set("in-touch", Element::create(in_touch));
auto age = in_touch ? static_cast<long long int>(getDurationInMillisecs() / 1000) : 0;
report->set("age", Element::create(age));
try {
report->set("last-state", Element::create(stateToString(getPartnerState())));
} catch (...) {
report->set("last-state", Element::create(std::string()));
}
auto list = Element::createList();
for (auto const& scope : getPartnerScopes()) {
list->add(Element::create(scope));
}
report->set("last-scopes", list);
report->set("communication-interrupted",
Element::create(isCommunicationInterrupted()));
report->set("connecting-clients", Element::create(static_cast<long long>(getConnectingClientsCount())));
report->set("unacked-clients", Element::create(static_cast<long long>(getUnackedClientsCount())));
long long unacked_clients_left = 0;
if (isCommunicationInterrupted() && (config_->getMaxUnackedClients() >= getUnackedClientsCount())) {
unacked_clients_left = static_cast<long long>(config_->getMaxUnackedClients() -
getUnackedClientsCount() + 1);
}
report->set("unacked-clients-left", Element::create(unacked_clients_left));
report->set("analyzed-packets", Element::create(static_cast<long long>(getAnalyzedMessagesCount())));
if (partner_time_at_skew_.is_not_a_date_time()) {
report->set("system-time", Element::create());
report->set("clock-skew", Element::create());
} else {
report->set("system-time", Element::create(ptimeToText(partner_time_at_skew_, 0)));
report->set("clock-skew", Element::create(clock_skew_.total_seconds()));
}
return (report);
}
uint64_t
CommunicationState::getUnsentUpdateCount() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (unsent_update_count_);
} else {
return (unsent_update_count_);
}
}
void
CommunicationState::increaseUnsentUpdateCount() {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
increaseUnsentUpdateCountInternal();
} else {
increaseUnsentUpdateCountInternal();
}
}
void
CommunicationState::increaseUnsentUpdateCountInternal() {
// Protect against setting the incremented value to zero.
// The zero value is reserved for a server startup.
if (unsent_update_count_ < std::numeric_limits<uint64_t>::max()) {
++unsent_update_count_;
} else {
unsent_update_count_ = 1;
}
}
bool
CommunicationState::hasPartnerNewUnsentUpdates() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (hasPartnerNewUnsentUpdatesInternal());
} else {
return (hasPartnerNewUnsentUpdatesInternal());
}
}
bool
CommunicationState::hasPartnerNewUnsentUpdatesInternal() const {
return (partner_unsent_update_count_.second > 0 &&
(partner_unsent_update_count_.first != partner_unsent_update_count_.second));
}
void
CommunicationState::setPartnerUnsentUpdateCount(uint64_t unsent_update_count) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
setPartnerUnsentUpdateCountInternal(unsent_update_count);
} else {
setPartnerUnsentUpdateCountInternal(unsent_update_count);
}
}
void
CommunicationState::setPartnerUnsentUpdateCountInternal(uint64_t unsent_update_count) {
partner_unsent_update_count_.first = partner_unsent_update_count_.second;
partner_unsent_update_count_.second = unsent_update_count;
}
boost::posix_time::ptime
CommunicationState::getMyTimeAtSkew() const {
return my_time_at_skew_;
}
boost::posix_time::ptime
CommunicationState::getPartnerTimeAtSkew() const {
return partner_time_at_skew_;
}
CommunicationState4::CommunicationState4(const IOServicePtr& io_service,
const HAConfigPtr& config)
: CommunicationState(io_service, config), connecting_clients_(),
rejected_clients_() {
}
void
CommunicationState4::analyzeMessage(const boost::shared_ptr<dhcp::Pkt>& message) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
analyzeMessageInternal(message);
} else {
analyzeMessageInternal(message);
}
}
void
CommunicationState4::analyzeMessageInternal(const PktPtr& message) {
// The DHCP message must successfully cast to a Pkt4 object.
Pkt4Ptr msg = boost::dynamic_pointer_cast<Pkt4>(message);
if (!msg) {
isc_throw(BadValue, "DHCP message to be analyzed is not a DHCPv4 message");
}
++analyzed_messages_count_;
// Check value of the "secs" field by comparing it with the configured
// threshold.
uint16_t secs = msg->getSecs();
// It was observed that some Windows clients may send swapped bytes in the
// "secs" field. When the second byte is 0 and the first byte is non-zero
// we consider bytes to be swapped and so we correct them.
if ((secs > 255) && ((secs & 0xFF) == 0)) {
secs = ((secs >> 8) | (secs << 8));
}
// Check the value of the "secs" field. The "secs" field holds a value in
// seconds, hence we have to multiple by 1000 to get a value in milliseconds.
// If the secs value is above the threshold, it means that the current
// client should be considered unacked.
auto unacked = (secs * 1000 > config_->getMaxAckDelay());
// Client identifier will be stored together with the hardware address. It
// may remain empty if the client hasn't specified it.
auto client_id = getClientId(message, DHO_DHCP_CLIENT_IDENTIFIER);
bool log_unacked = false;
// Check if the given client was already recorded.
auto& idx = connecting_clients_.get<0>();
auto existing_request = idx.find(boost::make_tuple(msg->getHWAddr()->hwaddr_, client_id));
if (existing_request != idx.end()) {
// If the client was recorded and was not considered unacked
// but it should be considered unacked as a result of processing
// this packet, let's update the recorded request to mark the
// client unacked.
if (!existing_request->unacked_ && unacked) {
ConnectingClient4 connecting_client{ msg->getHWAddr()->hwaddr_, client_id, unacked };
idx.replace(existing_request, connecting_client);
log_unacked = true;
}
} else {
// This is the first time we see the packet from this client. Let's
// record it.
ConnectingClient4 connecting_client{ msg->getHWAddr()->hwaddr_, client_id, unacked };
idx.insert(connecting_client);
log_unacked = unacked;
if (!unacked) {
// This is the first time we see this client after getting into the
// communication interrupted state. But, this client hasn't been
// yet trying log enough to be considered unacked.
LOG_INFO(ha_logger, HA_COMMUNICATION_INTERRUPTED_CLIENT4)
.arg(config_->getThisServerName())
.arg(message->getLabel());
}
}
// Only log the first time we detect a client is unacked.
if (log_unacked) {
unsigned unacked_left = 0;
unsigned unacked_total = connecting_clients_.get<1>().count(true);
if (config_->getMaxUnackedClients() >= unacked_total) {
unacked_left = config_->getMaxUnackedClients() - unacked_total + 1;
}
LOG_INFO(ha_logger, HA_COMMUNICATION_INTERRUPTED_CLIENT4_UNACKED)
.arg(config_->getThisServerName())
.arg(message->getLabel())
.arg(unacked_total)
.arg(unacked_left);
}
}
bool
CommunicationState4::failureDetected() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (failureDetectedInternal());
} else {
return (failureDetectedInternal());
}
}
bool
CommunicationState4::failureDetectedInternal() const {
return ((config_->getMaxUnackedClients() == 0) ||
(connecting_clients_.get<1>().count(true) >
config_->getMaxUnackedClients()));
}
size_t
CommunicationState4::getConnectingClientsCount() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (connecting_clients_.size());
} else {
return (connecting_clients_.size());
}
}
size_t
CommunicationState4::getUnackedClientsCount() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (connecting_clients_.get<1>().count(true));
} else {
return (connecting_clients_.get<1>().count(true));
}
}
void
CommunicationState4::clearConnectingClients() {
connecting_clients_.clear();
}
size_t
CommunicationState4::getRejectedLeaseUpdatesCountInternal() {
return (getRejectedLeaseUpdatesCountFromContainer(rejected_clients_));
}
bool
CommunicationState4::reportRejectedLeaseUpdateInternal(const PktPtr& message, const uint32_t lifetime) {
Pkt4Ptr msg = boost::dynamic_pointer_cast<Pkt4>(message);
if (!msg) {
isc_throw(BadValue, "DHCP message for which the lease update was rejected is not a DHCPv4 message");
}
auto client_id = getClientId(message, DHO_DHCP_CLIENT_IDENTIFIER);
RejectedClient4 client{ msg->getHWAddr()->hwaddr_, client_id, time(NULL) + lifetime };
auto existing_client = rejected_clients_.find(boost::make_tuple(msg->getHWAddr()->hwaddr_, client_id));
if (existing_client == rejected_clients_.end()) {
rejected_clients_.insert(client);
return (true);
}
rejected_clients_.replace(existing_client, client);
return (false);
}
bool
CommunicationState4::reportSuccessfulLeaseUpdateInternal(const PktPtr& message) {
// Early check if there is anything to do.
if (getRejectedLeaseUpdatesCountInternal() == 0) {
return (false);
}
Pkt4Ptr msg = boost::dynamic_pointer_cast<Pkt4>(message);
if (!msg) {
isc_throw(BadValue, "DHCP message for which the lease update was successful is not a DHCPv4 message");
}
auto client_id = getClientId(msg, DHO_DHCP_CLIENT_IDENTIFIER);
auto existing_client = rejected_clients_.find(boost::make_tuple(msg->getHWAddr()->hwaddr_, client_id));
if (existing_client != rejected_clients_.end()) {
rejected_clients_.erase(existing_client);
return (true);
}
return (false);
}
void
CommunicationState4::clearRejectedLeaseUpdatesInternal() {
rejected_clients_.clear();
}
CommunicationState6::CommunicationState6(const IOServicePtr& io_service,
const HAConfigPtr& config)
: CommunicationState(io_service, config), connecting_clients_(),
rejected_clients_() {
}
void
CommunicationState6::analyzeMessage(const boost::shared_ptr<dhcp::Pkt>& message) {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
analyzeMessageInternal(message);
} else {
analyzeMessageInternal(message);
}
}
void
CommunicationState6::analyzeMessageInternal(const boost::shared_ptr<dhcp::Pkt>& message) {
// The DHCP message must successfully cast to a Pkt6 object.
Pkt6Ptr msg = boost::dynamic_pointer_cast<Pkt6>(message);
if (!msg) {
isc_throw(BadValue, "DHCP message to be analyzed is not a DHCPv6 message");
}
++analyzed_messages_count_;
// Check the value of the "elapsed time" option. If it is below the threshold
// there is nothing to do. The "elapsed time" option holds the time in
// 1/100 of second, hence we have to multiply by 10 to get a value in milliseconds.
OptionUint16Ptr elapsed_time = boost::dynamic_pointer_cast<
OptionUint16>(msg->getOption(D6O_ELAPSED_TIME));
auto unacked = (elapsed_time && elapsed_time->getValue() * 10 > config_->getMaxAckDelay());
// Get the DUID of the client to see if it hasn't been recorded already.
auto duid = getClientId(msg, D6O_CLIENTID);
if (duid.empty()) {
return;
}
bool log_unacked = false;
// Check if the given client was already recorded.
auto& idx = connecting_clients_.get<0>();
auto existing_request = idx.find(duid);
if (existing_request != idx.end()) {
// If the client was recorded and was not considered unacked
// but it should be considered unacked as a result of processing
// this packet, let's update the recorded request to mark the
// client unacked.
if (!existing_request->unacked_ && unacked) {
ConnectingClient6 connecting_client{ duid, unacked };
idx.replace(existing_request, connecting_client);
log_unacked = true;
}
} else {
// This is the first time we see the packet from this client. Let's
// record it.
ConnectingClient6 connecting_client{ duid, unacked };
idx.insert(connecting_client);
log_unacked = unacked;
if (!unacked) {
// This is the first time we see this client after getting into the
// communication interrupted state. But, this client hasn't been
// yet trying log enough to be considered unacked.
LOG_INFO(ha_logger, HA_COMMUNICATION_INTERRUPTED_CLIENT6)
.arg(config_->getThisServerName())
.arg(message->getLabel());
}
}
// Only log the first time we detect a client is unacked.
if (log_unacked) {
unsigned unacked_left = 0;
unsigned unacked_total = connecting_clients_.get<1>().count(true);
if (config_->getMaxUnackedClients() >= unacked_total) {
unacked_left = config_->getMaxUnackedClients() - unacked_total + 1;
}
LOG_INFO(ha_logger, HA_COMMUNICATION_INTERRUPTED_CLIENT6_UNACKED)
.arg(config_->getThisServerName())
.arg(message->getLabel())
.arg(unacked_total)
.arg(unacked_left);
}
}
bool
CommunicationState6::failureDetected() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (failureDetectedInternal());
} else {
return (failureDetectedInternal());
}
}
bool
CommunicationState6::failureDetectedInternal() const {
return ((config_->getMaxUnackedClients() == 0) ||
(connecting_clients_.get<1>().count(true) >
config_->getMaxUnackedClients()));
}
size_t
CommunicationState6::getConnectingClientsCount() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (connecting_clients_.size());
} else {
return (connecting_clients_.size());
}
}
size_t
CommunicationState6::getUnackedClientsCount() const {
if (MultiThreadingMgr::instance().getMode()) {
std::lock_guard<std::mutex> lk(*mutex_);
return (connecting_clients_.get<1>().count(true));
} else {
return (connecting_clients_.get<1>().count(true));
}
}
void
CommunicationState6::clearConnectingClients() {
connecting_clients_.clear();
}
size_t
CommunicationState6::getRejectedLeaseUpdatesCountInternal() {
return (getRejectedLeaseUpdatesCountFromContainer(rejected_clients_));
}
bool
CommunicationState6::reportRejectedLeaseUpdateInternal(const PktPtr& message, const uint32_t lifetime) {
Pkt6Ptr msg = boost::dynamic_pointer_cast<Pkt6>(message);
if (!msg) {
isc_throw(BadValue, "DHCP message for which the lease update was rejected is not a DHCPv6 message");
}
auto duid = getClientId(msg, D6O_CLIENTID);
if (duid.empty()) {
return (false);
}
RejectedClient6 client{ duid, time(NULL) + lifetime };
auto existing_client = rejected_clients_.find(duid);
if (existing_client == rejected_clients_.end()) {
rejected_clients_.insert(client);
return (true);
}
rejected_clients_.replace(existing_client, client);
return (false);
}
bool
CommunicationState6::reportSuccessfulLeaseUpdateInternal(const PktPtr& message) {
// Early check if there is anything to do.
if (getRejectedLeaseUpdatesCountInternal() == 0) {
return (false);
}
Pkt6Ptr msg = boost::dynamic_pointer_cast<Pkt6>(message);
if (!msg) {
isc_throw(BadValue, "DHCP message for which the lease update was successful is not a DHCPv6 message");
}
auto duid = getClientId(msg, D6O_CLIENTID);
if (duid.empty()) {
return (false);
}
auto existing_client = rejected_clients_.find(duid);
if (existing_client != rejected_clients_.end()) {
rejected_clients_.erase(existing_client);
return (true);
}
return (false);
}
void
CommunicationState6::clearRejectedLeaseUpdatesInternal() {
rejected_clients_.clear();
}
} // end of namespace isc::ha
} // end of namespace isc
|