subscriptionstore.cpp
34.6 KB
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
/*
This file is part of FlashMQ (https://www.flashmq.org)
Copyright (C) 2021 Wiebe Cazemier
FlashMQ is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, version 3.
FlashMQ is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public
License along with FlashMQ. If not, see <https://www.gnu.org/licenses/>.
*/
#include "subscriptionstore.h"
#include "cassert"
#include "rwlockguard.h"
#include "retainedmessagesdb.h"
#include "publishcopyfactory.h"
#include "threadglobals.h"
ReceivingSubscriber::ReceivingSubscriber(const std::shared_ptr<Session> &ses, char qos) :
session(ses),
qos(qos)
{
}
SubscriptionNode::SubscriptionNode(const std::string &subtopic) :
subtopic(subtopic)
{
}
std::unordered_map<std::string, Subscription> &SubscriptionNode::getSubscribers()
{
return subscribers;
}
const std::string &SubscriptionNode::getSubtopic() const
{
return subtopic;
}
void SubscriptionNode::addSubscriber(const std::shared_ptr<Session> &subscriber, char qos)
{
Subscription sub;
sub.session = subscriber;
sub.qos = qos;
const std::string &client_id = subscriber->getClientId();
subscribers[client_id] = sub;
}
void SubscriptionNode::removeSubscriber(const std::shared_ptr<Session> &subscriber)
{
Subscription sub;
sub.session = subscriber;
sub.qos = 0;
auto it = subscribers.find(subscriber->getClientId());
if (it != subscribers.end())
{
subscribers.erase(it);
}
}
/**
* @brief SubscriptionNode::getChildren gets children or null pointer. Const, so doesn't default-create node for
* non-existing children.
* @param subtopic
* @return
*/
SubscriptionNode *SubscriptionNode::getChildren(const std::string &subtopic) const
{
auto it = children.find(subtopic);
if (it != children.end())
return it->second.get();
return nullptr;
}
SubscriptionStore::SubscriptionStore() :
root("root"),
rootDollar("rootDollar"),
sessionsByIdConst(sessionsById)
{
}
/**
* @brief SubscriptionStore::getDeepestNode gets the node in the tree walking the path of 'the/subscription/topic/path', making new nodes as required.
* @param topic
* @param subtopics
* @return
*
* caller is responsible for locking.
*/
SubscriptionNode *SubscriptionStore::getDeepestNode(const std::string &topic, const std::vector<std::string> &subtopics)
{
SubscriptionNode *deepestNode = &root;
if (topic.length() > 0 && topic[0] == '$')
deepestNode = &rootDollar;
for(const std::string &subtopic : subtopics)
{
std::unique_ptr<SubscriptionNode> *selectedChildren = nullptr;
if (subtopic == "#")
selectedChildren = &deepestNode->childrenPound;
else if (subtopic == "+")
selectedChildren = &deepestNode->childrenPlus;
else
selectedChildren = &deepestNode->children[subtopic];
std::unique_ptr<SubscriptionNode> &node = *selectedChildren;
if (!node)
{
node = std::make_unique<SubscriptionNode>(subtopic);
}
deepestNode = node.get();
}
assert(deepestNode);
return deepestNode;
}
void SubscriptionStore::addSubscription(std::shared_ptr<Client> &client, const std::string &topic, const std::vector<std::string> &subtopics, char qos)
{
RWLockGuard lock_guard(&sessionsAndSubscriptionsRwlock);
lock_guard.wrlock();
SubscriptionNode *deepestNode = getDeepestNode(topic, subtopics);
if (deepestNode)
{
auto session_it = sessionsByIdConst.find(client->getClientId());
if (session_it != sessionsByIdConst.end())
{
const std::shared_ptr<Session> &ses = session_it->second;
deepestNode->addSubscriber(ses, qos);
lock_guard.unlock();
giveClientRetainedMessages(ses, subtopics, qos);
}
}
}
void SubscriptionStore::removeSubscription(std::shared_ptr<Client> &client, const std::string &topic)
{
const std::list<std::string> subtopics = split(topic, '/');
SubscriptionNode *deepestNode = &root;
if (topic.length() > 0 && topic[0] == '$')
deepestNode = &rootDollar;
RWLockGuard lock_guard(&sessionsAndSubscriptionsRwlock);
lock_guard.wrlock();
// This code looks like that for addSubscription(), but it's specifically different in that we don't want to default-create non-existing
// nodes. We need to abort when that happens.
for(const std::string &subtopic : subtopics)
{
SubscriptionNode *selectedChildren = nullptr;
if (subtopic == "#")
selectedChildren = deepestNode->childrenPound.get();
else if (subtopic == "+")
selectedChildren = deepestNode->childrenPlus.get();
else
selectedChildren = deepestNode->getChildren(subtopic);
if (!selectedChildren)
{
return;
}
deepestNode = selectedChildren;
}
assert(deepestNode);
if (deepestNode)
{
auto session_it = sessionsByIdConst.find(client->getClientId());
if (session_it != sessionsByIdConst.end())
{
const std::shared_ptr<Session> &ses = session_it->second;
deepestNode->removeSubscriber(ses);
}
}
lock_guard.unlock();
}
/**
* @brief SubscriptionStore::registerClientAndKickExistingOne registers a client with previously set parameters for the session.
* @param client
*
* Under normal MQTT operation, the 'if' clause is always used. The 'else' is only in (fuzz) testing and other rare conditions.
*/
void SubscriptionStore::registerClientAndKickExistingOne(std::shared_ptr<Client> &client)
{
const std::unique_ptr<StowedClientRegistrationData> ®istrationData = client->getRegistrationData();
if (registrationData)
{
registerClientAndKickExistingOne(client, registrationData->clean_start, registrationData->clientReceiveMax, registrationData->sessionExpiryInterval);
client->clearRegistrationData();
}
else
{
const Settings *settings = ThreadGlobals::getSettings();
registerClientAndKickExistingOne(client, true, settings->maxQosMsgPendingPerClient, settings->expireSessionsAfterSeconds);
}
}
// Removes an existing client when it already exists [MQTT-3.1.4-2].
void SubscriptionStore::registerClientAndKickExistingOne(std::shared_ptr<Client> &client, bool clean_start, uint16_t clientReceiveMax, uint32_t sessionExpiryInterval)
{
ThreadGlobals::getThreadData()->queueClientNextKeepAliveCheckLocked(client, true);
RWLockGuard lock_guard(&sessionsAndSubscriptionsRwlock);
lock_guard.wrlock();
if (client->getClientId().empty())
throw ProtocolError("Trying to store client without an ID.", ReasonCodes::ProtocolError);
std::shared_ptr<Session> session;
auto session_it = sessionsById.find(client->getClientId());
if (session_it != sessionsById.end())
{
session = session_it->second;
if (session)
{
std::shared_ptr<Client> cl = session->makeSharedClient();
if (cl)
{
logger->logf(LOG_NOTICE, "Disconnecting existing client with id '%s'", cl->getClientId().c_str());
cl->setDisconnectReason("Another client with this ID connected");
cl->serverInitiatedDisconnect(ReasonCodes::SessionTakenOver);
}
}
}
if (!session || session->getDestroyOnDisconnect() || clean_start)
{
session = std::make_shared<Session>();
sessionsById[client->getClientId()] = session;
}
session->assignActiveConnection(client);
client->assignSession(session);
session->setSessionProperties(clientReceiveMax, sessionExpiryInterval, clean_start, client->getProtocolVersion());
session->sendAllPendingQosData();
}
/**
* @brief SubscriptionStore::lockSession returns the session if it exists. Returning is done keep the shared pointer active, to
* avoid race conditions with session removal.
* @param clientid
* @return
*/
std::shared_ptr<Session> SubscriptionStore::lockSession(const std::string &clientid)
{
RWLockGuard lock_guard(&sessionsAndSubscriptionsRwlock);
lock_guard.rdlock();
auto it = sessionsByIdConst.find(clientid);
if (it != sessionsByIdConst.end())
{
return it->second;
}
return std::shared_ptr<Session>();
}
/**
* @brief SubscriptionStore::sendQueuedWillMessages sends queued will messages.
*
* The expiry interval as set in the properties of the will message is not used to check for expiration here. To
* quote the specs: "If present, the Four Byte value is the lifetime of the Will Message in seconds and is sent as
* the Publication Expiry Interval when the Server publishes the Will Message."
*
* If a new Network Connection to this Session is made before the Will Delay Interval has passed, the Server
* MUST NOT send the Will Message [MQTT-3.1.3-9].
*/
void SubscriptionStore::sendQueuedWillMessages()
{
Authentication &auth = *ThreadGlobals::getAuth();
const auto now = std::chrono::steady_clock::now();
const std::chrono::seconds secondsSinceEpoch = std::chrono::duration_cast<std::chrono::seconds>(now.time_since_epoch());
std::lock_guard<std::mutex> locker(this->pendingWillsMutex);
auto it = pendingWillMessages.begin();
while (it != pendingWillMessages.end())
{
const std::chrono::seconds &sendAt = it->first;
if (sendAt > secondsSinceEpoch)
break;
std::vector<QueuedWill> &willsOfSlot = it->second;
for(QueuedWill &will : willsOfSlot)
{
std::shared_ptr<Publish> p = will.getWill().lock();
// If sessions get a new will, or the will is cleared from a new connecting client, this entry
// will be null and we can ignore it.
if (p)
{
std::shared_ptr<Session> s = will.getSession();
// Check for stale wills, or sessions that have become active again.
if (s && !s->hasActiveClient())
{
logger->logf(LOG_DEBUG, "Sending delayed will on topic '%s'.", p->topic.c_str() );
if (auth.aclCheck(*p) == AuthResult::success)
{
PublishCopyFactory factory(p.get());
queuePacketAtSubscribers(factory);
if (p->retain)
setRetainedMessage(*p, p->getSubtopics());
}
s->clearWill();
}
}
}
it = pendingWillMessages.erase(it);
}
}
/**
* @brief SubscriptionStore::queueWillMessage queues the will message in a sorted map.
* @param willMessage
* @param forceNow
*
* The queued will is only valid for that time. Should a new will be placed in the map for a session, the original shared_ptr
* will be cleared and the previously queued entry is void (but still there, so it needs to be checked).
*/
void SubscriptionStore::queueWillMessage(const std::shared_ptr<WillPublish> &willMessage, const std::shared_ptr<Session> &session, bool forceNow)
{
if (!willMessage)
return;
Authentication &auth = *ThreadGlobals::getAuth();
const int delay = forceNow ? 0 : willMessage->will_delay;
logger->logf(LOG_DEBUG, "Queueing will on topic '%s', with delay %d seconds.", willMessage->topic.c_str(), delay );
if (delay == 0)
{
if (auth.aclCheck(*willMessage) == AuthResult::success)
{
PublishCopyFactory factory(willMessage.get());
queuePacketAtSubscribers(factory);
if (willMessage->retain)
setRetainedMessage(*willMessage.get(), (*willMessage).getSubtopics());
}
// Avoid sending two immediate wills when a session is destroyed with the client disconnect.
if (session) // session is null when you're destroying a client before a session is assigned.
session->clearWill();
return;
}
willMessage->setQueuedAt();
QueuedWill queuedWill(willMessage, session);
const std::chrono::time_point<std::chrono::steady_clock> sendWillAt = std::chrono::steady_clock::now() + std::chrono::seconds(willMessage->will_delay);
std::chrono::seconds secondsSinceEpoch = std::chrono::duration_cast<std::chrono::seconds>(sendWillAt.time_since_epoch());
std::lock_guard<std::mutex> locker(this->pendingWillsMutex);
this->pendingWillMessages[secondsSinceEpoch].push_back(queuedWill);
}
void SubscriptionStore::publishNonRecursively(const std::unordered_map<std::string, Subscription> &subscribers,
std::forward_list<ReceivingSubscriber> &targetSessions)
{
for (auto &pair : subscribers)
{
const Subscription &sub = pair.second;
const std::shared_ptr<Session> session = sub.session.lock();
if (session) // Shared pointer expires when session has been cleaned by 'clean session' connect.
{
ReceivingSubscriber x(session, sub.qos);
targetSessions.emplace_front(session, sub.qos);
}
}
}
/**
* @brief SubscriptionStore::publishRecursively
* @param cur_subtopic_it
* @param end
* @param this_node
* @param packet
* @param count as a reference (vs return value) because a return value introduces an extra call i.e. limits tail recursion optimization.
*
* As noted in the params section, this method was written so that it could be (somewhat) optimized for tail recursion by the compiler. If you refactor this,
* look at objdump --disassemble --demangle to see how many calls (not jumps) to itself are made and compare.
*/
void SubscriptionStore::publishRecursively(std::vector<std::string>::const_iterator cur_subtopic_it, std::vector<std::string>::const_iterator end,
SubscriptionNode *this_node, std::forward_list<ReceivingSubscriber> &targetSessions)
{
if (cur_subtopic_it == end) // This is the end of the topic path, so look for subscribers here.
{
if (this_node)
publishNonRecursively(this_node->getSubscribers(), targetSessions);
return;
}
// Null nodes in the tree shouldn't happen at this point. It points to bugs elsewhere. However, I don't remember why I check the pointer
// inside the if-block above, instead of the start of the method.
assert(this_node != nullptr);
if (this_node->children.empty() && !this_node->childrenPlus && !this_node->childrenPound)
return;
const std::string &cur_subtop = *cur_subtopic_it;
const auto next_subtopic = ++cur_subtopic_it;
if (this_node->childrenPound)
{
publishNonRecursively(this_node->childrenPound->getSubscribers(), targetSessions);
}
const auto &sub_node = this_node->children.find(cur_subtop);
if (sub_node != this_node->children.end())
{
publishRecursively(next_subtopic, end, sub_node->second.get(), targetSessions);
}
if (this_node->childrenPlus)
{
publishRecursively(next_subtopic, end, this_node->childrenPlus.get(), targetSessions);
}
}
void SubscriptionStore::queuePacketAtSubscribers(PublishCopyFactory ©Factory, bool dollar)
{
SubscriptionNode *startNode = dollar ? &rootDollar : &root;
std::forward_list<ReceivingSubscriber> subscriberSessions;
{
const std::vector<std::string> &subtopics = copyFactory.getSubtopics();
RWLockGuard lock_guard(&sessionsAndSubscriptionsRwlock);
lock_guard.rdlock();
publishRecursively(subtopics.begin(), subtopics.end(), startNode, subscriberSessions);
}
for(const ReceivingSubscriber &x : subscriberSessions)
{
x.session->writePacket(copyFactory, x.qos);
}
}
void SubscriptionStore::giveClientRetainedMessagesRecursively(std::vector<std::string>::const_iterator cur_subtopic_it,
std::vector<std::string>::const_iterator end, RetainedMessageNode *this_node,
bool poundMode, std::forward_list<Publish> &packetList)
{
if (cur_subtopic_it == end)
{
Authentication &auth = *ThreadGlobals::getAuth();
auto pos = this_node->retainedMessages.begin();
while (pos != this_node->retainedMessages.end())
{
auto cur = pos++;
Publish publish = cur->publish;
if (publish.hasExpired())
this_node->retainedMessages.erase(cur);
else if (auth.aclCheck(publish) == AuthResult::success)
packetList.push_front(std::move(publish));
}
if (poundMode)
{
for (auto &pair : this_node->children)
{
std::unique_ptr<RetainedMessageNode> &child = pair.second;
giveClientRetainedMessagesRecursively(cur_subtopic_it, end, child.get(), poundMode, packetList);
}
}
return;
}
const std::string &cur_subtop = *cur_subtopic_it;
const auto next_subtopic = ++cur_subtopic_it;
bool poundFound = cur_subtop == "#";
if (poundFound || cur_subtop == "+")
{
for (auto &pair : this_node->children)
{
std::unique_ptr<RetainedMessageNode> &child = pair.second;
if (child) // I don't think it can ever be unset, but I'd rather avoid a crash.
giveClientRetainedMessagesRecursively(next_subtopic, end, child.get(), poundFound, packetList);
}
}
else
{
RetainedMessageNode *children = this_node->getChildren(cur_subtop);
if (children)
{
giveClientRetainedMessagesRecursively(next_subtopic, end, children, false, packetList);
}
}
}
void SubscriptionStore::giveClientRetainedMessages(const std::shared_ptr<Session> &ses,
const std::vector<std::string> &subscribeSubtopics, char max_qos)
{
RetainedMessageNode *startNode = &retainedMessagesRoot;
if (!subscribeSubtopics.empty() && !subscribeSubtopics[0].empty() > 0 && subscribeSubtopics[0][0] == '$')
startNode = &retainedMessagesRootDollar;
std::forward_list<Publish> packetList;
{
RWLockGuard locker(&retainedMessagesRwlock);
locker.rdlock();
giveClientRetainedMessagesRecursively(subscribeSubtopics.begin(), subscribeSubtopics.end(), startNode, false, packetList);
}
for(Publish &publish : packetList)
{
PublishCopyFactory copyFactory(&publish);
ses->writePacket(copyFactory, max_qos);
}
}
void SubscriptionStore::setRetainedMessage(const Publish &publish, const std::vector<std::string> &subtopics)
{
assert(!subtopics.empty());
RetainedMessageNode *deepestNode = &retainedMessagesRoot;
if (!subtopics.empty() && !subtopics[0].empty() > 0 && subtopics[0][0] == '$')
deepestNode = &retainedMessagesRootDollar;
RWLockGuard locker(&retainedMessagesRwlock);
locker.wrlock();
for(const std::string &subtopic : subtopics)
{
std::unique_ptr<RetainedMessageNode> &selectedChildren = deepestNode->children[subtopic];
if (!selectedChildren)
{
selectedChildren = std::make_unique<RetainedMessageNode>();
}
deepestNode = selectedChildren.get();
}
assert(deepestNode);
if (deepestNode)
{
deepestNode->addPayload(publish, retainedMessageCount);
}
}
// Clean up the weak pointers to sessions and remove nodes that are empty.
int SubscriptionNode::cleanSubscriptions()
{
int subscribersLeftInChildren = 0;
auto childrenIt = children.begin();
while(childrenIt != children.end())
{
int n = childrenIt->second->cleanSubscriptions();
subscribersLeftInChildren += n;
if (n > 0)
childrenIt++;
else
{
Logger::getInstance()->logf(LOG_DEBUG, "Removing orphaned subscriber node from %s", childrenIt->first.c_str());
childrenIt = children.erase(childrenIt);
}
}
std::list<std::unique_ptr<SubscriptionNode>*> wildcardChildren;
wildcardChildren.push_back(&childrenPlus);
wildcardChildren.push_back(&childrenPound);
for (std::unique_ptr<SubscriptionNode> *node : wildcardChildren)
{
std::unique_ptr<SubscriptionNode> &node_ = *node;
if (!node_)
continue;
int n = node_->cleanSubscriptions();
subscribersLeftInChildren += n;
if (n == 0)
{
Logger::getInstance()->logf(LOG_DEBUG, "Resetting wildcard children");
node_.reset();
}
}
// This is not particularlly fast when it's many items. But we don't do it often, so is probably okay.
auto it = subscribers.begin();
while (it != subscribers.end())
{
std::shared_ptr<Session> ses = it->second.session.lock();
if (!ses)
{
Logger::getInstance()->logf(LOG_DEBUG, "Removing empty spot in subscribers map");
it = subscribers.erase(it);
}
else
it++;
}
return subscribers.size() + subscribersLeftInChildren;
}
void SubscriptionStore::removeSession(const std::shared_ptr<Session> &session)
{
const std::string &clientid = session->getClientId();
logger->logf(LOG_DEBUG, "Removing session of client '%s'.", clientid.c_str());
std::shared_ptr<WillPublish> &will = session->getWill();
if (will)
{
queueWillMessage(will, session, true);
}
RWLockGuard lock_guard(&sessionsAndSubscriptionsRwlock);
lock_guard.wrlock();
auto session_it = sessionsById.find(clientid);
if (session_it != sessionsById.end())
{
sessionsById.erase(session_it);
}
}
/**
* @brief SubscriptionStore::removeExpiredSessionsClients removes expired sessions.
*
* For Mqtt3 this is non-standard, but the standard doesn't keep real world constraints into account.
*/
void SubscriptionStore::removeExpiredSessionsClients()
{
logger->logf(LOG_DEBUG, "Cleaning out old sessions");
const std::chrono::time_point<std::chrono::steady_clock> now = std::chrono::steady_clock::now();
const std::chrono::seconds secondsSinceEpoch = std::chrono::duration_cast<std::chrono::seconds>(now.time_since_epoch());
// Collect sessions to remove for a separate step, to avoid holding two locks at the same time.
std::vector<std::shared_ptr<Session>> sessionsToRemove;
int removedSessions = 0;
int processedRemovals = 0;
int queuedRemovalsLeft = -1;
{
std::lock_guard<std::mutex> locker(this->queuedSessionRemovalsMutex);
queuedRemovalsLeft = queuedSessionRemovals.size();
auto it = queuedSessionRemovals.begin();
while (it != queuedSessionRemovals.end())
{
const std::chrono::seconds &removeAt = it->first;
if (removeAt > secondsSinceEpoch)
{
break;
}
std::vector<std::weak_ptr<Session>> &sessionsFromSlot = it->second;
for (std::weak_ptr<Session> ses : sessionsFromSlot)
{
std::shared_ptr<Session> lockedSession = ses.lock();
// A session could have been picked up again, so we have to verify its expiration status.
if (lockedSession && !lockedSession->hasActiveClient())
{
sessionsToRemove.push_back(lockedSession);
}
}
it = queuedSessionRemovals.erase(it);
processedRemovals++;
}
queuedRemovalsLeft = queuedSessionRemovals.size();
}
for(std::shared_ptr<Session> &session : sessionsToRemove)
{
removeSession(session);
removedSessions++;
}
logger->logf(LOG_DEBUG, "Processed %d queued session removals, resulting in %d deleted expired sessions. %d queued removals in the future.",
processedRemovals, removedSessions, queuedRemovalsLeft);
if (lastTreeCleanup + std::chrono::minutes(30) < now)
{
RWLockGuard lock_guard(&sessionsAndSubscriptionsRwlock);
lock_guard.wrlock();
logger->logf(LOG_NOTICE, "Rebuilding subscription tree");
root.cleanSubscriptions();
lastTreeCleanup = now;
}
}
/**
* @brief SubscriptionStore::queueSessionRemoval places session efficiently in a sorted map that is periodically dequeued.
* @param session
*/
void SubscriptionStore::queueSessionRemoval(const std::shared_ptr<Session> &session)
{
if (!session)
return;
std::chrono::time_point<std::chrono::steady_clock> removeAt = std::chrono::steady_clock::now() + std::chrono::seconds(session->getSessionExpiryInterval());
std::chrono::seconds secondsSinceEpoch = std::chrono::duration_cast<std::chrono::seconds>(removeAt.time_since_epoch());
session->setQueuedRemovalAt();
std::lock_guard<std::mutex> locker(this->queuedSessionRemovalsMutex);
queuedSessionRemovals[secondsSinceEpoch].push_back(session);
}
int64_t SubscriptionStore::getRetainedMessageCount() const
{
return retainedMessageCount;
}
uint64_t SubscriptionStore::getSessionCount() const
{
return sessionsByIdConst.size();
}
int64_t SubscriptionStore::getSubscriptionCount()
{
int64_t count = 0;
RWLockGuard lock_guard(&sessionsAndSubscriptionsRwlock);
lock_guard.rdlock();
countSubscriptions(&root, count);
countSubscriptions(&rootDollar, count);
return count;
}
void SubscriptionStore::getRetainedMessages(RetainedMessageNode *this_node, std::vector<RetainedMessage> &outputList) const
{
for(const RetainedMessage &rm : this_node->retainedMessages)
{
outputList.push_back(rm);
}
for(auto &pair : this_node->children)
{
const std::unique_ptr<RetainedMessageNode> &child = pair.second;
getRetainedMessages(child.get(), outputList);
}
}
/**
* @brief SubscriptionStore::getSubscriptions
* @param this_node
* @param composedTopic
* @param root bool. Every subtopic is concatenated with a '/', but not the first topic to 'root'. The root is a bit weird, virtual, so it needs different treatment.
* @param outputList
*/
void SubscriptionStore::getSubscriptions(SubscriptionNode *this_node, const std::string &composedTopic, bool root,
std::unordered_map<std::string, std::list<SubscriptionForSerializing>> &outputList) const
{
for (auto &pair : this_node->getSubscribers())
{
const Subscription &node = pair.second;
std::shared_ptr<Session> ses = node.session.lock();
if (ses)
{
SubscriptionForSerializing sub(ses->getClientId(), node.qos);
outputList[composedTopic].push_back(sub);
}
}
for (auto &pair : this_node->children)
{
SubscriptionNode *node = pair.second.get();
const std::string topicAtNextLevel = root ? pair.first : composedTopic + "/" + pair.first;
getSubscriptions(node, topicAtNextLevel, false, outputList);
}
if (this_node->childrenPlus)
{
const std::string topicAtNextLevel = root ? "+" : composedTopic + "/+";
getSubscriptions(this_node->childrenPlus.get(), topicAtNextLevel, false, outputList);
}
if (this_node->childrenPound)
{
const std::string topicAtNextLevel = root ? "#" : composedTopic + "/#";
getSubscriptions(this_node->childrenPound.get(), topicAtNextLevel, false, outputList);
}
}
void SubscriptionStore::countSubscriptions(SubscriptionNode *this_node, int64_t &count) const
{
for (auto &pair : this_node->getSubscribers())
{
const Subscription &node = pair.second;
std::shared_ptr<Session> ses = node.session.lock();
if (ses)
{
count++;
}
}
for (auto &pair : this_node->children)
{
SubscriptionNode *node = pair.second.get();
countSubscriptions(node, count);
}
if (this_node->childrenPlus)
{
countSubscriptions(this_node->childrenPlus.get(), count);
}
if (this_node->childrenPound)
{
countSubscriptions(this_node->childrenPound.get(), count);
}
}
void SubscriptionStore::saveRetainedMessages(const std::string &filePath)
{
logger->logf(LOG_INFO, "Saving retained messages to '%s'", filePath.c_str());
std::vector<RetainedMessage> result;
{
RWLockGuard locker(&retainedMessagesRwlock);
locker.rdlock();
result.reserve(retainedMessageCount);
getRetainedMessages(&retainedMessagesRoot, result);
}
logger->logf(LOG_DEBUG, "Collected %ld retained messages to save.", result.size());
// Then do the IO without locking the threads.
RetainedMessagesDB db(filePath);
db.openWrite();
db.saveData(result);
}
void SubscriptionStore::loadRetainedMessages(const std::string &filePath)
{
try
{
logger->logf(LOG_INFO, "Loading '%s'", filePath.c_str());
RetainedMessagesDB db(filePath);
db.openRead();
std::list<RetainedMessage> messages = db.readData();
std::vector<std::string> subtopics;
for (RetainedMessage &rm : messages)
{
setRetainedMessage(rm.publish, rm.publish.getSubtopics());
}
}
catch (PersistenceFileCantBeOpened &ex)
{
logger->logf(LOG_WARNING, "File '%s' is not there (yet)", filePath.c_str());
}
}
void SubscriptionStore::saveSessionsAndSubscriptions(const std::string &filePath)
{
logger->logf(LOG_INFO, "Saving sessions and subscriptions to '%s' in thread.", filePath.c_str());
const std::chrono::time_point<std::chrono::steady_clock> start = std::chrono::steady_clock::now();
std::vector<std::shared_ptr<Session>> sessionPointers;
std::unordered_map<std::string, std::list<SubscriptionForSerializing>> subscriptionCopies;
{
RWLockGuard lock_guard(&sessionsAndSubscriptionsRwlock);
lock_guard.rdlock();
sessionPointers.reserve(sessionsByIdConst.size());
for (const auto &pair : sessionsByIdConst)
{
sessionPointers.push_back(pair.second);
}
getSubscriptions(&root, "", true, subscriptionCopies);
}
const std::chrono::time_point<std::chrono::steady_clock> doneCopying = std::chrono::steady_clock::now();
const std::chrono::milliseconds copyDuration = std::chrono::duration_cast<std::chrono::milliseconds>(doneCopying - start);
logger->logf(LOG_DEBUG, "Collected %ld sessions and %ld subscriptions to save in %ld ms.", sessionPointers.size(), subscriptionCopies.size(), copyDuration.count());
SessionsAndSubscriptionsDB db(filePath);
db.openWrite();
db.saveData(sessionPointers, subscriptionCopies);
const std::chrono::time_point<std::chrono::steady_clock> doneSaving = std::chrono::steady_clock::now();
const std::chrono::milliseconds saveDuration = std::chrono::duration_cast<std::chrono::milliseconds>(doneSaving - doneCopying);
logger->logf(LOG_INFO, "Saved %ld sessions and %ld subscriptions to '%s' in %ld ms.",
sessionPointers.size(), subscriptionCopies.size(), filePath.c_str(), saveDuration.count());
}
void SubscriptionStore::loadSessionsAndSubscriptions(const std::string &filePath)
{
try
{
logger->logf(LOG_INFO, "Loading '%s'", filePath.c_str());
SessionsAndSubscriptionsDB db(filePath);
db.openRead();
SessionsAndSubscriptionsResult loadedData = db.readData();
RWLockGuard locker(&sessionsAndSubscriptionsRwlock);
locker.wrlock();
for (std::shared_ptr<Session> &session : loadedData.sessions)
{
sessionsById[session->getClientId()] = session;
queueSessionRemoval(session);
queueWillMessage(session->getWill(), session);
}
std::vector<std::string> subtopics;
for (auto &pair : loadedData.subscriptions)
{
const std::string &topic = pair.first;
const std::list<SubscriptionForSerializing> &subs = pair.second;
for (const SubscriptionForSerializing &sub : subs)
{
splitTopic(topic, subtopics);
SubscriptionNode *subscriptionNode = getDeepestNode(topic, subtopics);
auto session_it = sessionsByIdConst.find(sub.clientId);
if (session_it != sessionsByIdConst.end())
{
const std::shared_ptr<Session> &ses = session_it->second;
subscriptionNode->addSubscriber(ses, sub.qos);
}
}
}
}
catch (PersistenceFileCantBeOpened &ex)
{
logger->logf(LOG_WARNING, "File '%s' is not there (yet)", filePath.c_str());
}
}
// QoS is not used in the comparision. This means you upgrade your QoS by subscribing again. The
// specs don't specify what to do there.
bool Subscription::operator==(const Subscription &rhs) const
{
if (session.expired() && rhs.session.expired())
return true;
if (session.expired() || rhs.session.expired())
return false;
const std::shared_ptr<Session> lhs_ses = session.lock();
const std::shared_ptr<Session> rhs_ses = rhs.session.lock();
return lhs_ses && rhs_ses && lhs_ses->getClientId() == rhs_ses->getClientId();
}
void Subscription::reset()
{
session.reset();
qos = 0;
}
void RetainedMessageNode::addPayload(const Publish &publish, int64_t &totalCount)
{
const int64_t countBefore = retainedMessages.size();
RetainedMessage rm(publish);
auto retained_ptr = retainedMessages.find(rm);
bool retained_found = retained_ptr != retainedMessages.end();
if (!retained_found && publish.payload.empty())
return;
if (retained_found && publish.payload.empty())
{
retainedMessages.erase(rm);
const int64_t diffCount = (retainedMessages.size() - countBefore);
totalCount += diffCount;
return;
}
if (retained_found)
retainedMessages.erase(rm);
retainedMessages.insert(std::move(rm));
const int64_t diffCount = (retainedMessages.size() - countBefore);
totalCount += diffCount;
}
/**
* @brief RetainedMessageNode::getChildren return the children or nullptr when there are none. Const, so doesn't default construct.
* @param subtopic
* @return
*/
RetainedMessageNode *RetainedMessageNode::getChildren(const std::string &subtopic) const
{
auto it = children.find(subtopic);
if (it != children.end())
return it->second.get();
return nullptr;
}
QueuedWill::QueuedWill(const std::shared_ptr<WillPublish> &will, const std::shared_ptr<Session> &session) :
will(will),
session(session)
{
}
const std::weak_ptr<WillPublish> &QueuedWill::getWill() const
{
return this->will;
}
std::shared_ptr<Session> QueuedWill::getSession()
{
return this->session.lock();
}