mqttpacket.cpp
34.9 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
1069
/*
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 "mqttpacket.h"
#include <cstring>
#include <iostream>
#include <list>
#include <cassert>
#include "utils.h"
#include "threadglobals.h"
// constructor for parsing incoming packets
MqttPacket::MqttPacket(CirBuf &buf, size_t packet_len, size_t fixed_header_length, std::shared_ptr<Client> &sender) :
bites(packet_len),
fixed_header_length(fixed_header_length),
sender(sender)
{
assert(packet_len > 0);
buf.read(bites.data(), packet_len);
first_byte = bites[0];
unsigned char _packetType = (first_byte & 0xF0) >> 4;
packetType = (PacketType)_packetType;
pos += fixed_header_length;
}
/**
* @brief MqttPacket::getCopy (using default copy constructor and resetting some selected fields) is easier than using the copy constructor
* publically, because then I have to keep maintaining a functioning copy constructor for each new field I add.
* @return a shared pointer because that's typically how we need it; we only need to copy it if we pass it around as shared resource.
*
* The idea is that because a packet with QoS is longer than one without, we just copy as much as possible if both packets have the same QoS.
*
* Note that there can be two types of packets: one with the fixed header (including remaining length), and one without. The latter we could be
* more clever about, but I'm forgoing that right now. Their use is mostly for retained messages.
*
* Also note that some fields are undeterminstic in the copy: dup, retain and packetid for instance. Sometimes they come from the original,
* sometimes not. The current planned usage is that those fields will either ONLY or NEVER be used in the copy, so it doesn't matter what I do
* with them here. I may reconsider.
*/
std::shared_ptr<MqttPacket> MqttPacket::getCopy(char new_max_qos) const
{
assert(packetType == PacketType::PUBLISH);
// You're not supposed to copy a duplicate packet. The only packets that get the dup flag, should not be copied AGAIN. This
// has to do with the Session::writePacket() and Session::sendPendingQosMessages() logic.
assert((first_byte & 0b00001000) == 0);
if (qos > 0 && new_max_qos == 0)
{
// if shrinking the packet doesn't alter the amount of bytes in the 'remaining length' part of the header, we can
// just memmove+shrink the packet. This is because the packet id always is two bytes before the payload, so we just move the payload
// over it. When testing 100M copies, it went from 21000 ms to 10000 ms. In other words, about 200 ns to 100 ns per copy.
// There is an elaborate unit test to test this optimization.
if ((fixed_header_length == 2 && bites.size() < 125))
{
// I don't know yet if this is true, but I don't want to forget when I implemenet MQTT5.
assert(sender && sender->getProtocolVersion() <= ProtocolVersion::Mqtt311);
std::shared_ptr<MqttPacket> p(new MqttPacket(*this));
p->sender.reset();
if (payloadLen > 0)
std::memmove(&p->bites[packet_id_pos], &p->bites[packet_id_pos+2], payloadLen);
p->bites.erase(p->bites.end() - 2, p->bites.end());
p->packet_id_pos = 0;
p->qos = 0;
p->payloadStart -= 2;
if (pos > p->bites.size()) // pos can possible be set elsewhere, so we only set it back if it was after the payload.
p->pos -= 2;
p->packet_id = 0;
// Clear QoS bits from the header.
p->first_byte &= 0b11111001;
p->bites[0] = p->first_byte;
assert((p->bites[1] & 0b10000000) == 0); // when there is an MSB, I musn't get rid of it.
assert(p->bites[1] > 3); // There has to be a remaining value after subtracting 2.
p->bites[1] -= 2; // Reduce the value in the 'remaining length' part of the header.
return p;
}
Publish pub(topic, getPayloadCopy(), new_max_qos);
pub.retain = getRetain();
std::shared_ptr<MqttPacket> copyPacket(new MqttPacket(pub));
return copyPacket;
}
std::shared_ptr<MqttPacket> copyPacket(new MqttPacket(*this));
copyPacket->sender.reset();
if (qos != new_max_qos)
copyPacket->setQos(new_max_qos);
return copyPacket;
}
// This constructor cheats and doesn't use calculateRemainingLength, because it's always the same. It allocates enough space in the vector.
MqttPacket::MqttPacket(const ConnAck &connAck) :
bites(connAck.getLengthWithoutFixedHeader() + 2)
{
fixed_header_length = 2;
packetType = PacketType::CONNACK;
first_byte = static_cast<char>(packetType) << 4;
writeByte(first_byte);
writeByte(2); // length is always 2.
writeByte(connAck.session_present & 0b00000001); // all connect-ack flags are 0, except session-present. [MQTT-3.2.2.1]
writeByte(static_cast<char>(connAck.return_code));
}
MqttPacket::MqttPacket(const SubAck &subAck) :
bites(subAck.getLengthWithoutFixedHeader())
{
packetType = PacketType::SUBACK;
first_byte = static_cast<char>(packetType) << 4;
writeUint16(subAck.packet_id);
std::vector<char> returnList;
for (SubAckReturnCodes code : subAck.responses)
{
returnList.push_back(static_cast<char>(code));
}
writeBytes(&returnList[0], returnList.size());
calculateRemainingLength();
}
MqttPacket::MqttPacket(const UnsubAck &unsubAck) :
bites(unsubAck.getLengthWithoutFixedHeader())
{
packetType = PacketType::SUBACK;
first_byte = static_cast<char>(packetType) << 4;
writeUint16(unsubAck.packet_id);
calculateRemainingLength();
}
MqttPacket::MqttPacket(const Publish &publish) :
bites(publish.getLengthWithoutFixedHeader())
{
if (publish.topic.length() > 0xFFFF)
{
throw ProtocolError("Topic path too long.");
}
this->topic = publish.topic;
splitTopic(this->topic, subtopics);
packetType = PacketType::PUBLISH;
this->qos = publish.qos;
first_byte = static_cast<char>(packetType) << 4;
first_byte |= (publish.qos << 1);
first_byte |= (static_cast<char>(publish.retain) & 0b00000001);
writeUint16(topic.length());
writeBytes(topic.c_str(), topic.length());
if (publish.qos)
{
// Reserve the space for the packet id, which will be assigned later.
packet_id_pos = pos;
char zero[2];
writeBytes(zero, 2);
}
payloadStart = pos;
payloadLen = publish.payload.length();
writeBytes(publish.payload.c_str(), publish.payload.length());
calculateRemainingLength();
}
/**
* @brief MqttPacket::pubCommonConstruct is common code for constructors for all those empty pub control packets (ack, rec(eived), rel(ease), comp(lete)).
* @param packet_id
*
* This functions cheats a bit and doesn't use calculateRemainingLength, because it's always 2. Be sure to allocate enough room in the vector when
* you use this function (add 2 to the length).
*/
void MqttPacket::pubCommonConstruct(const uint16_t packet_id, PacketType packetType, uint8_t firstByteDefaultBits)
{
assert(firstByteDefaultBits <= 0xF);
fixed_header_length = 2;
first_byte = (static_cast<uint8_t>(packetType) << 4) | firstByteDefaultBits;
writeByte(first_byte);
writeByte(2); // length is always 2.
packet_id_pos = pos;
writeUint16(packet_id);
}
MqttPacket::MqttPacket(const PubAck &pubAck) :
bites(pubAck.getLengthWithoutFixedHeader() + 2)
{
pubCommonConstruct(pubAck.packet_id, PacketType::PUBACK);
}
MqttPacket::MqttPacket(const PubRec &pubRec) :
bites(pubRec.getLengthWithoutFixedHeader() + 2)
{
pubCommonConstruct(pubRec.packet_id, PacketType::PUBREC);
}
MqttPacket::MqttPacket(const PubComp &pubComp) :
bites(pubComp.getLengthWithoutFixedHeader() + 2)
{
pubCommonConstruct(pubComp.packet_id, PacketType::PUBCOMP);
}
MqttPacket::MqttPacket(const PubRel &pubRel) :
bites(pubRel.getLengthWithoutFixedHeader() + 2)
{
pubCommonConstruct(pubRel.packet_id, PacketType::PUBREL, 0b0010);
}
void MqttPacket::bufferToMqttPackets(CirBuf &buf, std::vector<MqttPacket> &packetQueueIn, std::shared_ptr<Client> &sender)
{
while (buf.usedBytes() >= MQTT_HEADER_LENGH)
{
// Determine the packet length by decoding the variable length
int remaining_length_i = 1; // index of 'remaining length' field is one after start.
uint fixed_header_length = 1;
size_t multiplier = 1;
size_t packet_length = 0;
unsigned char encodedByte = 0;
do
{
fixed_header_length++;
if (fixed_header_length > 5)
throw ProtocolError("Packet signifies more than 5 bytes in variable length header. Invalid.");
// This happens when you only don't have all the bytes that specify the remaining length.
if (fixed_header_length > buf.usedBytes())
return;
encodedByte = buf.peakAhead(remaining_length_i++);
packet_length += (encodedByte & 127) * multiplier;
multiplier *= 128;
if (multiplier > 128*128*128*128)
throw ProtocolError("Malformed Remaining Length.");
}
while ((encodedByte & 128) != 0);
packet_length += fixed_header_length;
if (sender && !sender->getAuthenticated() && packet_length >= 1024*1024)
{
throw ProtocolError("An unauthenticated client sends a packet of 1 MB or bigger? Probably it's just random bytes.");
}
if (packet_length > ABSOLUTE_MAX_PACKET_SIZE)
{
throw ProtocolError("A client sends a packet claiming to be bigger than the maximum MQTT allows.");
}
if (packet_length <= buf.usedBytes())
{
packetQueueIn.emplace_back(buf, packet_length, fixed_header_length, sender);
}
else
break;
}
}
void MqttPacket::handle()
{
if (packetType == PacketType::Reserved)
throw ProtocolError("Packet type 0 specified, which is reserved and invalid.");
if (packetType != PacketType::CONNECT)
{
if (!sender->getAuthenticated())
{
logger->logf(LOG_WARNING, "Non-connect packet (%d) from non-authenticated client. Dropping packet.", packetType);
return;
}
}
if (packetType == PacketType::CONNECT)
handleConnect();
else if (packetType == PacketType::DISCONNECT)
handleDisconnect();
else if (packetType == PacketType::PINGREQ)
sender->writePingResp();
else if (packetType == PacketType::SUBSCRIBE)
handleSubscribe();
else if (packetType == PacketType::UNSUBSCRIBE)
handleUnsubscribe();
else if (packetType == PacketType::PUBLISH)
handlePublish();
else if (packetType == PacketType::PUBACK)
handlePubAck();
else if (packetType == PacketType::PUBREC)
handlePubRec();
else if (packetType == PacketType::PUBREL)
handlePubRel();
else if (packetType == PacketType::PUBCOMP)
handlePubComp();
}
void MqttPacket::handleConnect()
{
if (sender->hasConnectPacketSeen())
throw ProtocolError("Client already sent a CONNECT.");
std::shared_ptr<SubscriptionStore> subscriptionStore = sender->getThreadData()->getSubscriptionStore();
uint16_t variable_header_length = readTwoBytesToUInt16();
const Settings &settings = *ThreadGlobals::getSettings();
if (variable_header_length == 4 || variable_header_length == 6)
{
char *c = readBytes(variable_header_length);
std::string magic_marker(c, variable_header_length);
char protocol_level = readByte();
if (magic_marker == "MQTT")
{
if (protocol_level == 0x04)
protocolVersion = ProtocolVersion::Mqtt311;
if (protocol_level == 0x05)
protocolVersion = ProtocolVersion::Mqtt5;
}
else if (magic_marker == "MQIsdp" && protocol_level == 0x03)
{
protocolVersion = ProtocolVersion::Mqtt31;
}
else
{
ConnAck connAck(ConnAckReturnCodes::UnacceptableProtocolVersion);
MqttPacket response(connAck);
sender->setReadyForDisconnect();
sender->writeMqttPacket(response);
logger->logf(LOG_ERR, "Rejecting because of invalid protocol version: %s", sender->repr().c_str());
return;
}
char flagByte = readByte();
bool reserved = !!(flagByte & 0b00000001);
if (reserved)
throw ProtocolError("Protocol demands reserved flag in CONNECT is 0");
bool user_name_flag = !!(flagByte & 0b10000000);
bool password_flag = !!(flagByte & 0b01000000);
bool will_retain = !!(flagByte & 0b00100000);
char will_qos = (flagByte & 0b00011000) >> 3;
bool will_flag = !!(flagByte & 0b00000100);
bool clean_start = !!(flagByte & 0b00000010);
if (will_qos > 2)
throw ProtocolError("Invalid QoS for will.");
uint16_t keep_alive = readTwoBytesToUInt16();
uint16_t max_qos_packets = settings.maxQosMsgPendingPerClient;
uint32_t session_expire = settings.expireSessionsAfterSeconds > 0 ? settings.expireSessionsAfterSeconds : std::numeric_limits<uint32_t>::max();
uint32_t max_packet_size = settings.maxPacketSize;
uint16_t max_topic_aliases = 0;
bool request_response_information = false;
bool request_problem_information = false;
if (protocolVersion == ProtocolVersion::Mqtt5)
{
const size_t proplen = decodeVariableByteIntAtPos();
const size_t prop_end_at = pos + proplen;
while (pos < prop_end_at)
{
const Mqtt5Properties prop = static_cast<Mqtt5Properties>(readByte());
switch (prop)
{
case Mqtt5Properties::SessionExpiryInterval:
session_expire = std::min<uint32_t>(readFourBytesToUint32(), session_expire);
break;
case Mqtt5Properties::ReceiveMaximum:
max_qos_packets = std::min<int16_t>(readTwoBytesToUInt16(), max_qos_packets);
break;
case Mqtt5Properties::MaximumPacketSize:
max_packet_size = std::min<uint32_t>(readFourBytesToUint32(), max_packet_size);
break;
case Mqtt5Properties::TopicAliasMaximum:
max_topic_aliases = readTwoBytesToUInt16();
break;
case Mqtt5Properties::RequestResponseInformation:
request_response_information = !!readByte();
break;
case Mqtt5Properties::RequestProblemInformation:
request_problem_information = !!readByte();
break;
case Mqtt5Properties::UserProperty:
break;
case Mqtt5Properties::AuthenticationMethod:
break;
case Mqtt5Properties::AuthenticationData:
break;
default:
throw ProtocolError("Invalid connect property.");
}
}
}
uint16_t client_id_length = readTwoBytesToUInt16();
std::string client_id(readBytes(client_id_length), client_id_length);
std::string username;
std::string password;
std::string will_topic;
std::string will_payload;
if (will_flag)
{
uint16_t will_topic_length = readTwoBytesToUInt16();
will_topic = std::string(readBytes(will_topic_length), will_topic_length);
uint16_t will_payload_length = readTwoBytesToUInt16();
will_payload = std::string(readBytes(will_payload_length), will_payload_length);
}
if (user_name_flag)
{
uint16_t user_name_length = readTwoBytesToUInt16();
username = std::string(readBytes(user_name_length), user_name_length);
if (username.empty())
throw ProtocolError("Username flagged as present, but it's 0 bytes.");
}
if (password_flag)
{
uint16_t password_length = readTwoBytesToUInt16();
password = std::string(readBytes(password_length), password_length);
}
// The specs don't really say what to do when client id not UTF8, so including here.
if (!isValidUtf8(client_id) || !isValidUtf8(username) || !isValidUtf8(password) || !isValidUtf8(will_topic))
{
ConnAck connAck(ConnAckReturnCodes::MalformedUsernameOrPassword);
MqttPacket response(connAck);
sender->setReadyForDisconnect();
sender->writeMqttPacket(response);
logger->logf(LOG_ERR, "Client ID, username, password or will topic has invalid UTF8: ", client_id.c_str());
return;
}
bool validClientId = true;
// Check for wildcard chars in case the client_id ever appears in topics.
if (!settings.allowUnsafeClientidChars && containsDangerousCharacters(client_id))
{
logger->logf(LOG_ERR, "ClientID '%s' has + or # in the id and 'allow_unsafe_clientid_chars' is false.", client_id.c_str());
validClientId = false;
}
else if (!clean_start && client_id.empty())
{
logger->logf(LOG_ERR, "ClientID empty and clean start 0, which is incompatible");
validClientId = false;
}
else if (protocolVersion < ProtocolVersion::Mqtt311 && client_id.empty())
{
logger->logf(LOG_ERR, "Empty clientID. Connect with protocol 3.1.1 or higher to have one generated securely.");
validClientId = false;
}
if (!validClientId)
{
ConnAck connAck(ConnAckReturnCodes::ClientIdRejected);
MqttPacket response(connAck);
sender->setDisconnectReason("Invalid clientID");
sender->setReadyForDisconnect();
sender->writeMqttPacket(response);
return;
}
if (client_id.empty())
{
client_id = getSecureRandomString(23);
}
sender->setClientProperties(protocolVersion, client_id, username, true, keep_alive, max_packet_size, max_topic_aliases);
sender->setWill(will_topic, will_payload, will_retain, will_qos);
bool accessGranted = false;
std::string denyLogMsg;
Authentication &authentication = *ThreadGlobals::getAuth();
if (!user_name_flag && settings.allowAnonymous)
{
accessGranted = true;
}
else if (!settings.allowUnsafeUsernameChars && containsDangerousCharacters(username))
{
denyLogMsg = formatString("Username '%s' has + or # in the id and 'allow_unsafe_username_chars' is false.", username.c_str());
sender->setDisconnectReason("Invalid username character");
accessGranted = false;
}
else if (authentication.unPwdCheck(username, password) == AuthResult::success)
{
accessGranted = true;
}
if (accessGranted)
{
bool sessionPresent = protocolVersion >= ProtocolVersion::Mqtt311 && !clean_start && subscriptionStore->sessionPresent(client_id);
sender->setAuthenticated(true);
ConnAck connAck(ConnAckReturnCodes::Accepted, sessionPresent);
MqttPacket response(connAck);
sender->writeMqttPacket(response);
logger->logf(LOG_NOTICE, "Client '%s' logged in successfully", sender->repr().c_str());
subscriptionStore->registerClientAndKickExistingOne(sender, clean_start, max_qos_packets, session_expire);
}
else
{
ConnAck connDeny(ConnAckReturnCodes::NotAuthorized, false);
MqttPacket response(connDeny);
sender->setDisconnectReason("Access denied");
sender->setReadyForDisconnect();
sender->writeMqttPacket(response);
if (!denyLogMsg.empty())
logger->logf(LOG_NOTICE, denyLogMsg.c_str());
else
logger->logf(LOG_NOTICE, "User '%s' access denied", username.c_str());
}
}
else
{
throw ProtocolError("Invalid variable header length. Garbage?");
}
}
void MqttPacket::handleDisconnect()
{
logger->logf(LOG_NOTICE, "Client '%s' cleanly disconnecting", sender->repr().c_str());
sender->setDisconnectReason("MQTT Disconnect received.");
sender->markAsDisconnecting();
sender->clearWill();
sender->getThreadData()->removeClientQueued(sender);
}
void MqttPacket::handleSubscribe()
{
const char firstByteFirstNibble = (first_byte & 0x0F);
if (firstByteFirstNibble != 2)
throw ProtocolError("First LSB of first byte is wrong value for subscribe packet.");
uint16_t packet_id = readTwoBytesToUInt16();
if (packet_id == 0)
{
throw ProtocolError("Packet ID 0 when subscribing is invalid."); // [MQTT-2.3.1-1]
}
Authentication &authentication = *ThreadGlobals::getAuth();
std::list<char> subs_reponse_codes;
while (remainingAfterPos() > 0)
{
uint16_t topicLength = readTwoBytesToUInt16();
std::string topic(readBytes(topicLength), topicLength);
if (topic.empty() || !isValidUtf8(topic))
throw ProtocolError("Subscribe topic not valid UTF-8.");
if (!isValidSubscribePath(topic))
throw ProtocolError(formatString("Invalid subscribe path: %s", topic.c_str()));
char qos = readByte();
if (qos > 2)
throw ProtocolError("QoS is greater than 2, and/or reserved bytes in QoS field are not 0.");
splitTopic(topic, subtopics);
if (authentication.aclCheck(sender->getClientId(), sender->getUsername(), topic, subtopics, AclAccess::subscribe, qos, false) == AuthResult::success)
{
logger->logf(LOG_SUBSCRIBE, "Client '%s' subscribed to '%s' QoS %d", sender->repr().c_str(), topic.c_str(), qos);
sender->getThreadData()->getSubscriptionStore()->addSubscription(sender, topic, subtopics, qos);
subs_reponse_codes.push_back(qos);
}
else
{
logger->logf(LOG_SUBSCRIBE, "Client '%s' subscribe to '%s' denied or failed.", sender->repr().c_str(), topic.c_str());
// We can't not send an ack, because if there are multiple subscribes, you send fewer acks back, losing sync.
char return_code = qos;
if (sender->getProtocolVersion() >= ProtocolVersion::Mqtt311)
return_code = static_cast<char>(SubAckReturnCodes::Fail);
subs_reponse_codes.push_back(return_code);
}
}
// MQTT-3.8.3-3
if (subs_reponse_codes.empty())
{
throw ProtocolError("No topics specified to subscribe to.");
}
SubAck subAck(packet_id, subs_reponse_codes);
MqttPacket response(subAck);
sender->writeMqttPacket(response);
}
void MqttPacket::handleUnsubscribe()
{
const char firstByteFirstNibble = (first_byte & 0x0F);
if (firstByteFirstNibble != 2)
throw ProtocolError("First LSB of first byte is wrong value for subscribe packet.");
uint16_t packet_id = readTwoBytesToUInt16();
if (packet_id == 0)
{
throw ProtocolError("Packet ID 0 when unsubscribing is invalid."); // [MQTT-2.3.1-1]
}
int numberOfUnsubs = 0;
while (remainingAfterPos() > 0)
{
numberOfUnsubs++;
uint16_t topicLength = readTwoBytesToUInt16();
std::string topic(readBytes(topicLength), topicLength);
if (topic.empty() || !isValidUtf8(topic))
throw ProtocolError("Subscribe topic not valid UTF-8.");
sender->getThreadData()->getSubscriptionStore()->removeSubscription(sender, topic);
logger->logf(LOG_UNSUBSCRIBE, "Client '%s' unsubscribed from '%s'", sender->repr().c_str(), topic.c_str());
}
// MQTT-3.10.3-2
if (numberOfUnsubs == 0)
{
throw ProtocolError("No topics specified to unsubscribe to.");
}
UnsubAck unsubAck(packet_id);
MqttPacket response(unsubAck);
sender->writeMqttPacket(response);
}
void MqttPacket::handlePublish()
{
uint16_t variable_header_length = readTwoBytesToUInt16();
if (variable_header_length == 0)
throw ProtocolError("Empty publish topic");
bool retain = (first_byte & 0b00000001);
bool dup = !!(first_byte & 0b00001000);
char qos = (first_byte & 0b00000110) >> 1;
if (qos > 2)
throw ProtocolError("QoS 3 is a protocol violation.");
this->qos = qos;
if (qos == 0 && dup)
throw ProtocolError("Duplicate flag is set for QoS 0 packet. This is illegal.");
topic = std::string(readBytes(variable_header_length), variable_header_length);
splitTopic(topic, subtopics);
if (!isValidUtf8(topic, true))
{
logger->logf(LOG_WARNING, "Client '%s' published a message with invalid UTF8 or $/+/# in it. Dropping.", sender->repr().c_str());
return;
}
#ifndef NDEBUG
logger->logf(LOG_DEBUG, "Publish received, topic '%s'. QoS=%d. Retain=%d, dup=%d", topic.c_str(), qos, retain, dup);
#endif
sender->getThreadData()->incrementReceivedMessageCount();
if (qos)
{
packet_id_pos = pos;
packet_id = readTwoBytesToUInt16();
if (packet_id == 0)
{
throw ProtocolError("Packet ID 0 when publishing is invalid."); // [MQTT-2.3.1-1]
}
if (qos == 1)
{
PubAck pubAck(packet_id);
MqttPacket response(pubAck);
sender->writeMqttPacket(response);
}
else
{
PubRec pubRec(packet_id);
MqttPacket response(pubRec);
sender->writeMqttPacket(response);
if (sender->getSession()->incomingQoS2MessageIdInTransit(packet_id))
{
return;
}
else
{
// Doing this before the authentication on purpose, so when the publish is not allowed, the QoS control packets are allowed and can finish.
sender->getSession()->addIncomingQoS2MessageId(packet_id);
}
}
}
payloadLen = remainingAfterPos();
payloadStart = pos;
Authentication &authentication = *ThreadGlobals::getAuth();
if (authentication.aclCheck(sender->getClientId(), sender->getUsername(), topic, subtopics, AclAccess::write, qos, retain) == AuthResult::success)
{
if (retain)
{
std::string payload(readBytes(payloadLen), payloadLen);
sender->getThreadData()->getSubscriptionStore()->setRetainedMessage(topic, subtopics, payload, qos);
}
// Set dup flag to 0, because that must not be propagated [MQTT-3.3.1-3].
// Existing subscribers don't get retain=1. [MQTT-3.3.1-9]
bites[0] &= 0b11110110;
first_byte = bites[0];
// For the existing clients, we can just write the same packet back out, with our small alterations.
sender->getThreadData()->getSubscriptionStore()->queuePacketAtSubscribers(subtopics, *this);
}
}
void MqttPacket::handlePubAck()
{
uint16_t packet_id = readTwoBytesToUInt16();
sender->getSession()->clearQosMessage(packet_id);
}
/**
* @brief MqttPacket::handlePubRec handles QoS 2 'publish received' packets. The publisher receives these.
*/
void MqttPacket::handlePubRec()
{
const uint16_t packet_id = readTwoBytesToUInt16();
sender->getSession()->clearQosMessage(packet_id);
sender->getSession()->addOutgoingQoS2MessageId(packet_id);
PubRel pubRel(packet_id);
MqttPacket response(pubRel);
sender->writeMqttPacket(response);
}
/**
* @brief MqttPacket::handlePubRel handles QoS 2 'publish release'. The publisher sends these.
*/
void MqttPacket::handlePubRel()
{
// MQTT-3.6.1-1, but why do we care, and only care for certain control packets?
if (first_byte & 0b1101)
throw ProtocolError("PUBREL first byte LSB must be 0010.");
const uint16_t packet_id = readTwoBytesToUInt16();
sender->getSession()->removeIncomingQoS2MessageId(packet_id);
PubComp pubcomp(packet_id);
MqttPacket response(pubcomp);
sender->writeMqttPacket(response);
}
/**
* @brief MqttPacket::handlePubComp handles QoS 2 'publish complete'. The publisher receives these.
*/
void MqttPacket::handlePubComp()
{
const uint16_t packet_id = readTwoBytesToUInt16();
sender->getSession()->removeOutgoingQoS2MessageId(packet_id);
}
void MqttPacket::calculateRemainingLength()
{
assert(fixed_header_length == 0); // because you're not supposed to call this on packet that we already know the length of.
this->remainingLength = bites.size();
}
void MqttPacket::setPacketId(uint16_t packet_id)
{
assert(fixed_header_length == 0 || first_byte == bites[0]);
assert(packet_id_pos > 0);
assert(packetType == PacketType::PUBLISH);
assert(qos > 0);
this->packet_id = packet_id;
pos = packet_id_pos;
writeUint16(packet_id);
}
uint16_t MqttPacket::getPacketId() const
{
assert(qos > 0);
return packet_id;
}
// If I read the specs correctly, the DUP flag is merely for show. It doesn't control anything?
void MqttPacket::setDuplicate()
{
assert(packetType == PacketType::PUBLISH);
assert(qos > 0);
assert(fixed_header_length == 0 || first_byte == bites[0]);
first_byte |= 0b00001000;
if (fixed_header_length > 0)
{
pos = 0;
writeByte(first_byte);
}
}
/**
* @brief MqttPacket::getPayloadCopy takes part of the vector of bytes and returns it as a string.
* @return
*
* It's necessary sometimes, but it's against FlashMQ's concept of not parsing the payload. Normally, you can just write out
* the whole byte array of an original packet to subscribers. No need to copy and such.
*
* But, as stated, sometimes it's necessary.
*/
std::string MqttPacket::getPayloadCopy() const
{
assert(payloadStart > 0);
assert(pos <= bites.size());
std::string payload(&bites[payloadStart], payloadLen);
return payload;
}
size_t MqttPacket::getSizeIncludingNonPresentHeader() const
{
size_t total = bites.size();
if (fixed_header_length == 0)
{
total++;
total += remainingLength.getLen();
}
return total;
}
void MqttPacket::setQos(const char new_qos)
{
// You can't change to a QoS level that would remove the packet identifier.
assert((qos == 0 && new_qos == 0) || (qos > 0 && new_qos > 0));
assert(new_qos > 0 && packet_id_pos > 0);
qos = new_qos;
first_byte &= 0b11111001;
first_byte |= (qos << 1);
if (fixed_header_length > 0)
{
pos = 0;
writeByte(first_byte);
}
}
const std::string &MqttPacket::getTopic() const
{
return this->topic;
}
/**
* @brief MqttPacket::getSubtopics returns a pointer to the parsed subtopics. Use with care!
* @return a pointer to a vector of subtopics that will be overwritten the next packet!
*/
const std::vector<std::string> &MqttPacket::getSubtopics() const
{
return this->subtopics;
}
std::shared_ptr<Client> MqttPacket::getSender() const
{
return sender;
}
void MqttPacket::setSender(const std::shared_ptr<Client> &value)
{
sender = value;
}
bool MqttPacket::containsFixedHeader() const
{
return fixed_header_length > 0;
}
char *MqttPacket::readBytes(size_t length)
{
if (pos + length > bites.size())
throw ProtocolError("Invalid packet: header specifies invalid length.");
char *b = &bites[pos];
pos += length;
return b;
}
char MqttPacket::readByte()
{
if (pos + 1 > bites.size())
throw ProtocolError("Invalid packet: header specifies invalid length.");
char b = bites[pos++];
return b;
}
void MqttPacket::writeByte(char b)
{
if (pos + 1 > bites.size())
throw ProtocolError("Exceeding packet size");
bites[pos++] = b;
}
void MqttPacket::writeUint16(uint16_t x)
{
if (pos + 2 > bites.size())
throw ProtocolError("Exceeding packet size");
const uint8_t a = static_cast<uint8_t>(x >> 8);
const uint8_t b = static_cast<uint8_t>(x);
bites[pos++] = a;
bites[pos++] = b;
}
void MqttPacket::writeBytes(const char *b, size_t len)
{
if (pos + len > bites.size())
throw ProtocolError("Exceeding packet size");
memcpy(&bites[pos], b, len);
pos += len;
}
uint16_t MqttPacket::readTwoBytesToUInt16()
{
if (pos + 2 > bites.size())
throw ProtocolError("Invalid packet: header specifies invalid length.");
uint8_t a = bites[pos];
uint8_t b = bites[pos+1];
uint16_t i = a << 8 | b;
pos += 2;
return i;
}
uint32_t MqttPacket::readFourBytesToUint32()
{
if (pos + 4 > bites.size())
throw ProtocolError("Invalid packet: header specifies invalid length.");
const uint8_t a = bites[pos++];
const uint8_t b = bites[pos++];
const uint8_t c = bites[pos++];
const uint8_t d = bites[pos++];
uint32_t i = (a << 24) | (b << 16) | (c << 8) | d;
return i;
}
size_t MqttPacket::remainingAfterPos()
{
return bites.size() - pos;
}
size_t MqttPacket::decodeVariableByteIntAtPos()
{
uint64_t multiplier = 1;
size_t value = 0;
uint8_t encodedByte = 0;
do
{
if (pos >= bites.size())
throw ProtocolError("Variable byte int length goes out of packet. Corrupt.");
encodedByte = bites[pos++];
value += (encodedByte & 127) * multiplier;
multiplier *= 128;
if (multiplier > 128*128*128*128)
throw ProtocolError("Malformed Remaining Length.");
}
while ((encodedByte & 128) != 0);
return value;
}
bool MqttPacket::getRetain() const
{
return (first_byte & 0b00000001);
}
/**
* @brief MqttPacket::setRetain set the retain bit in the first byte. I think I only need this in tests, because existing subscribers don't get retain=1,
* so handlePublish() clears it. But I needed it to be set in testing.
*
* Publishing of the retained messages goes through the MqttPacket(Publish) constructor, hence this setRetain() isn't necessary for that.
*/
void MqttPacket::setRetain()
{
#ifndef TESTING
assert(false);
#endif
first_byte |= 0b00000001;
if (fixed_header_length > 0)
{
pos = 0;
writeByte(first_byte);
}
}
void MqttPacket::readIntoBuf(CirBuf &buf) const
{
assert(packetType != PacketType::PUBLISH || (first_byte & 0b00000110) >> 1 == qos);
buf.ensureFreeSpace(getSizeIncludingNonPresentHeader());
if (!containsFixedHeader())
{
buf.headPtr()[0] = first_byte;
buf.advanceHead(1);
remainingLength.readIntoBuf(buf);
}
else
{
assert(bites.data()[0] == first_byte);
}
buf.write(bites.data(), bites.size());
}