forked from njh/mqtt-sn-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mqtt-sn.c
1006 lines (827 loc) · 30.1 KB
/
mqtt-sn.c
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
/*
Basic MQTT-SN client library
Copyright (C) 2013 Nicholas Humfrey
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <time.h>
#include <errno.h>
#include <stdarg.h>
#include "mqtt-sn.h"
#ifndef AI_DEFAULT
#define AI_DEFAULT (AI_ADDRCONFIG|AI_V4MAPPED)
#endif
static uint8_t debug = 0;
static uint8_t verbose = 0;
static uint8_t timeout = MQTT_SN_DEFAULT_TIMEOUT;
static uint16_t next_message_id = 1;
static time_t last_transmit = 0;
static time_t last_receive = 0;
static time_t keep_alive = 0;
static uint8_t forwarder_encapsulation = FALSE;
const uint8_t *wireless_node_id = NULL;
uint8_t wireless_node_id_len = 0;
topic_map_t *topic_map = NULL;
void mqtt_sn_set_debug(uint8_t value)
{
debug = value;
log_debug("Debug level is: %d.", debug);
}
void mqtt_sn_set_verbose(uint8_t value)
{
verbose = value;
log_debug("Verbose level is: %d.", verbose);
}
void mqtt_sn_set_timeout(uint8_t value)
{
if (value < 1) {
timeout = MQTT_SN_DEFAULT_TIMEOUT;
} else {
timeout = value;
}
log_debug("Network timeout is: %d seconds.", timeout);
}
int mqtt_sn_create_socket(const char* host, const char* port)
{
struct addrinfo hints;
struct addrinfo *result, *rp;
struct timeval tv;
int fd, ret;
// Set options for the resolver
memset(&hints, 0, sizeof(struct addrinfo));
hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */
hints.ai_socktype = SOCK_DGRAM; /* Datagram socket */
hints.ai_flags = AI_DEFAULT; /* Default flags */
hints.ai_protocol = 0; /* Any protocol */
hints.ai_canonname = NULL;
hints.ai_addr = NULL;
hints.ai_next = NULL;
// Lookup address
ret = getaddrinfo(host, port, &hints, &result);
if (ret != 0) {
log_err("getaddrinfo: %s", gai_strerror(ret));
exit(EXIT_FAILURE);
}
/* getaddrinfo() returns a list of address structures.
Try each address until we successfully connect(2).
If socket(2) (or connect(2)) fails, we (close the socket and)
try the next address. */
for (rp = result; rp != NULL; rp = rp->ai_next) {
fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
if (fd == -1)
continue;
// Connect socket to the remote host
if (connect(fd, rp->ai_addr, rp->ai_addrlen) == 0)
break; // Success
close(fd);
}
if (rp == NULL) {
log_err("Could not connect to remote host.");
exit(EXIT_FAILURE);
}
freeaddrinfo(result);
// FIXME: set the Don't Fragment flag
// Setup timeout on the socket
tv.tv_sec = timeout;
tv.tv_usec = 0;
if (setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) < 0) {
perror("Error setting timeout on socket");
}
return fd;
}
void mqtt_sn_send_packet(int sock, const void* data)
{
size_t sent, len = ((uint8_t*)data)[0];
// If forwarder encapsulation enabled, wrap packet
if (forwarder_encapsulation) {
return mqtt_sn_send_frwdencap_packet(sock, data, wireless_node_id, wireless_node_id_len);
}
if (debug > 1) {
log_debug("Sending %2lu bytes. Type=%s on Socket: %d.", (long unsigned int)len,
mqtt_sn_type_string(((uint8_t*)data)[1]), sock);
}
sent = send(sock, data, len, 0);
if (sent != len) {
log_warn("Only sent %d of %d bytes", (int)sent, (int)len);
}
// Store the last time that we sent a packet
last_transmit = time(NULL);
}
void mqtt_sn_send_frwdencap_packet(int sock, const void* data, const uint8_t *wireless_node_id, uint8_t wireless_node_id_len)
{
size_t sent, len = ((uint8_t*)data)[0];
uint8_t orig_packet_type = ((uint8_t*)data)[1];
frwdencap_packet_t *packet;
packet = mqtt_sn_create_frwdencap_packet(data, &len, wireless_node_id, wireless_node_id_len);
if (debug > 1) {
log_debug("Sending %2lu bytes. Type=%s with %s inside on Socket: %d.", (long unsigned int)len,
mqtt_sn_type_string(packet->type), mqtt_sn_type_string(orig_packet_type), sock);
}
sent = send(sock, packet, len, 0);
if (sent != len) {
log_debug("Warning: only sent %d of %d bytes.", (int)sent, (int)len);
}
// Store the last time that we sent a packet
last_transmit = time(NULL);
free(packet);
}
uint8_t mqtt_sn_validate_packet(const void *packet, size_t length)
{
const uint8_t* buf = packet;
if (buf[0] == 0x00) {
log_warn("Packet length header is not valid");
return FALSE;
}
if (buf[0] == 0x01) {
log_warn("Packet received is longer than this tool can handle");
return FALSE;
}
// When forwarder encapsulation is enabled each packet must be FRWDENCAP type
if (forwarder_encapsulation && buf[1] != MQTT_SN_TYPE_FRWDENCAP) {
log_warn("Expecting FRWDENCAP packet and got Type=%s.", mqtt_sn_type_string(buf[1]));
return FALSE;
}
// If packet is forwarder encapsulation expected packet length is sum of forwarder encapsulation
// header and length of encapsulated packet.
if ((buf[1] == MQTT_SN_TYPE_FRWDENCAP && buf[0] + buf[buf[0]] != length) ||
(buf[1] != MQTT_SN_TYPE_FRWDENCAP && buf[0] != length)) {
log_warn("Read %d bytes but packet length is %d bytes.", (int)length,
buf[1] != MQTT_SN_TYPE_FRWDENCAP ? (int)buf[0] : (int)(buf[0] + buf[buf[0]]));
return FALSE;
}
return TRUE;
}
void* mqtt_sn_receive_packet(int sock)
{
uint8_t *wireless_node_id = NULL;
uint8_t wireless_node_id_len = 0;
return mqtt_sn_receive_frwdencap_packet(sock, &wireless_node_id, &wireless_node_id_len);
}
void* mqtt_sn_receive_frwdencap_packet(int sock, uint8_t **wireless_node_id, uint8_t *wireless_node_id_len)
{
static uint8_t buffer[MQTT_SN_MAX_PACKET_LENGTH + MQTT_SN_MAX_WIRELESS_NODE_ID_LENGTH + 3 + 1];
struct sockaddr_in si;
socklen_t slen = sizeof(si);
uint8_t *packet = buffer;
int bytes_read;
*wireless_node_id = NULL;
*wireless_node_id_len = 0;
log_debug("waiting for packet...");
// Read in the packet
bytes_read = recvfrom(sock, buffer, sizeof(buffer), 0, (struct sockaddr *)&si, &slen);
if (bytes_read < 0) {
if (errno == EAGAIN) {
log_debug("Timed out waiting for packet.");
return NULL;
} else {
perror("recv failed");
exit(EXIT_FAILURE);
}
}
// Convert the source address into a string
if (debug) {
char src_addr[INET6_ADDRSTRLEN] = "";
inet_ntop(si.sin_family, &si.sin_addr, src_addr, sizeof(src_addr));
if (packet[1] == MQTT_SN_TYPE_FRWDENCAP) {
log_debug("Received %2d bytes from %s:%d. Type=%s with %s inside on Socket: %d",
(int)bytes_read, src_addr, ntohs(si.sin_port),
mqtt_sn_type_string(buffer[1]), mqtt_sn_type_string(packet[packet[0] + 1]), sock);
} else {
log_debug("Received %2d bytes from %s:%d. Type=%s on Socket: %d",
(int)bytes_read, src_addr, ntohs(si.sin_port),
mqtt_sn_type_string(buffer[1]), sock);
}
}
if (mqtt_sn_validate_packet(buffer, bytes_read) == FALSE) {
return NULL;
}
// NULL-terminate the packet
buffer[bytes_read] = '\0';
if (packet[1] == MQTT_SN_TYPE_FRWDENCAP)
{
*wireless_node_id = &packet[3];
*wireless_node_id_len = packet[0] - 3;
// Shift packet by the actual length of FRWDENCAP header
packet += packet[0];
}
// Store the last time that we received a packet
last_receive = time(NULL);
return packet;
}
void mqtt_sn_send_connect(int sock, const char* client_id, uint16_t keepalive, uint8_t clean_session)
{
connect_packet_t packet;
memset(&packet, 0, sizeof(packet));
// Check that it isn't too long
if (client_id && strlen(client_id) > 23) {
log_err("Client id is too long");
exit(EXIT_FAILURE);
}
// Create the CONNECT packet
packet.type = MQTT_SN_TYPE_CONNECT;
packet.flags = clean_session ? MQTT_SN_FLAG_CLEAN : 0;
packet.protocol_id = MQTT_SN_PROTOCOL_ID;
packet.duration = htons(keepalive);
// Generate a Client ID if none given
if (client_id == NULL || client_id[0] == '\0') {
snprintf(packet.client_id, sizeof(packet.client_id)-1, "mqtt-sn-tools-%d", getpid());
packet.client_id[sizeof(packet.client_id) - 1] = '\0';
} else {
strncpy(packet.client_id, client_id, sizeof(packet.client_id)-1);
packet.client_id[sizeof(packet.client_id) - 1] = '\0';
}
packet.length = 0x06 + strlen(packet.client_id);
log_debug("Sending CONNECT packet...");
// Store the keep alive period
if (keepalive) {
keep_alive = keepalive;
}
return mqtt_sn_send_packet(sock, &packet);
}
void mqtt_sn_send_register(int sock, const char* topic_name)
{
size_t topic_name_len = strlen(topic_name);
register_packet_t packet;
memset(&packet, 0, sizeof(packet));
if (topic_name_len > MQTT_SN_MAX_TOPIC_LENGTH) {
log_err("Topic name is too long");
exit(EXIT_FAILURE);
}
packet.type = MQTT_SN_TYPE_REGISTER;
packet.topic_id = 0;
packet.message_id = htons(next_message_id++);
strncpy(packet.topic_name, topic_name, sizeof(packet.topic_name));
packet.length = 0x06 + topic_name_len;
log_debug("Sending REGISTER packet...");
return mqtt_sn_send_packet(sock, &packet);
}
void mqtt_sn_send_regack(int sock, int topic_id, int mesage_id)
{
regack_packet_t packet;
memset(&packet, 0, sizeof(packet));
packet.type = MQTT_SN_TYPE_REGACK;
packet.topic_id = htons(topic_id);
packet.message_id = htons(mesage_id);
packet.return_code = 0x00;
packet.length = 0x07;
log_debug("Sending REGACK packet...");
return mqtt_sn_send_packet(sock, &packet);
}
static uint8_t mqtt_sn_get_qos_flag(int8_t qos)
{
switch (qos) {
case -1:
return MQTT_SN_FLAG_QOS_N1;
case 0:
return MQTT_SN_FLAG_QOS_0;
case 1:
return MQTT_SN_FLAG_QOS_1;
case 2:
return MQTT_SN_FLAG_QOS_2;
default:
return 0;
}
}
void mqtt_sn_send_publish(int sock, uint16_t topic_id, uint8_t topic_type, const void* data, int8_t qos, uint8_t retain)
{
size_t data_len = strlen(data);
publish_packet_t packet;
memset(&packet, 0, sizeof(packet));
if (data_len > sizeof(packet.data)) {
log_err("Payload is too big");
exit(EXIT_FAILURE);
}
packet.type = MQTT_SN_TYPE_PUBLISH;
packet.flags = 0x00;
if (retain)
packet.flags += MQTT_SN_FLAG_RETAIN;
packet.flags += mqtt_sn_get_qos_flag(qos);
packet.flags += (topic_type & 0x3);
packet.topic_id = htons(topic_id);
packet.message_id = htons(next_message_id++);
strncpy(packet.data, data, sizeof(packet.data));
packet.length = 0x07 + data_len;
log_debug("Sending PUBLISH packet...");
return mqtt_sn_send_packet(sock, &packet);
}
void mqtt_sn_send_subscribe_topic_name(int sock, const char* topic_name, uint8_t qos)
{
size_t topic_name_len = strlen(topic_name);
subscribe_packet_t packet;
memset(&packet, 0, sizeof(packet));
packet.type = MQTT_SN_TYPE_SUBSCRIBE;
packet.flags = 0x00;
packet.flags += mqtt_sn_get_qos_flag(qos);
if (topic_name_len == 2) {
packet.flags += MQTT_SN_TOPIC_TYPE_SHORT;
} else {
packet.flags += MQTT_SN_TOPIC_TYPE_NORMAL;
}
packet.message_id = htons(next_message_id++);
strncpy(packet.topic_name, topic_name, sizeof(packet.topic_name));
packet.topic_name[sizeof(packet.topic_name)-1] = '\0';
packet.length = 0x05 + topic_name_len;
log_debug("Sending SUBSCRIBE packet...");
return mqtt_sn_send_packet(sock, &packet);
}
void mqtt_sn_send_subscribe_topic_id(int sock, uint16_t topic_id, uint8_t qos)
{
subscribe_packet_t packet;
memset(&packet, 0, sizeof(packet));
packet.type = MQTT_SN_TYPE_SUBSCRIBE;
packet.flags = 0x00;
packet.flags += mqtt_sn_get_qos_flag(qos);
packet.flags += MQTT_SN_TOPIC_TYPE_PREDEFINED;
packet.message_id = htons(next_message_id++);
packet.topic_id = htons(topic_id);
packet.length = 0x05 + 2;
log_debug("Sending SUBSCRIBE packet...");
return mqtt_sn_send_packet(sock, &packet);
}
void mqtt_sn_send_pingreq(int sock)
{
char packet[2];
packet[0] = 2;
packet[1] = MQTT_SN_TYPE_PINGREQ;
log_debug("Sending PINGREQ packet...");
return mqtt_sn_send_packet(sock, &packet);
}
void mqtt_sn_send_disconnect(int sock)
{
disconnect_packet_t packet;
memset(&packet, 0, sizeof(packet));
packet.type = MQTT_SN_TYPE_DISCONNECT;
packet.length = 0x02;
log_debug("Sending DISCONNECT packet...");
return mqtt_sn_send_packet(sock, &packet);
}
void mqtt_sn_receive_disconnect(int sock)
{
disconnect_packet_t *packet = mqtt_sn_wait_for(MQTT_SN_TYPE_DISCONNECT, sock);
if (packet == NULL) {
log_err("Failed to disconnect from MQTT-SN gateway.");
exit(EXIT_FAILURE);
}
// Check Disconnect return duration
if (packet->length == 4) {
log_warn("DISCONNECT warning. Gateway returned duration in disconnect packet: 0x%2.2x", packet->duration);
}
}
void mqtt_sn_receive_connack(int sock)
{
connack_packet_t *packet = mqtt_sn_receive_packet(sock);
if (packet == NULL) {
log_err("Failed to connect to MQTT-SN gateway.");
exit(EXIT_FAILURE);
}
if (packet->type != MQTT_SN_TYPE_CONNACK) {
log_err("Was expecting CONNACK packet but received: %s", mqtt_sn_type_string(packet->type));
exit(EXIT_FAILURE);
}
// Check Connack return code
log_debug("CONNACK return code: 0x%2.2x", packet->return_code);
if (packet->return_code) {
log_err("CONNECT error: %s", mqtt_sn_return_code_string(packet->return_code));
exit(packet->return_code);
}
}
static int mqtt_sn_process_register(int sock, const register_packet_t *packet)
{
int message_id = ntohs(packet->message_id);
int topic_id = ntohs(packet->topic_id);
const char* topic_name = packet->topic_name;
// Add it to the topic map
mqtt_sn_register_topic(topic_id, topic_name);
// Respond to gateway with REGACK
mqtt_sn_send_regack(sock, topic_id, message_id);
return 0;
}
void mqtt_sn_register_topic(int topic_id, const char* topic_name)
{
topic_map_t **ptr = &topic_map;
// Check topic ID is valid
if (topic_id == 0x0000 || topic_id == 0xFFFF) {
log_err("Attempted to register invalid topic id: 0x%4.4x", topic_id);
return;
}
// Check topic name is valid
if (topic_name == NULL || strlen(topic_name) <= 0) {
log_err("Attempted to register invalid topic name.");
return;
}
log_debug("Registering topic 0x%4.4x: %s", topic_id, topic_name);
// Look for the topic id
while (*ptr) {
if ((*ptr)->topic_id == topic_id) {
break;
} else {
ptr = &((*ptr)->next);
}
}
// Allocate memory for a new entry, if we reached the end of the list
if (*ptr == NULL) {
*ptr = (topic_map_t *)malloc(sizeof(topic_map_t));
if (!*ptr) {
log_err("Failed to allocate memory for new topic map entry.");
exit(EXIT_FAILURE);
}
(*ptr)->next = NULL;
}
// Copy in the name to the entry
strncpy((*ptr)->topic_name, topic_name, MQTT_SN_MAX_TOPIC_LENGTH);
(*ptr)->topic_id = topic_id;
}
const char* mqtt_sn_lookup_topic(int topic_id)
{
topic_map_t **ptr = &topic_map;
while (*ptr) {
if ((*ptr)->topic_id == topic_id) {
return (*ptr)->topic_name;
}
ptr = &((*ptr)->next);
}
log_warn("Failed to lookup topic id: 0x%4.4x", topic_id);
return NULL;
}
uint16_t mqtt_sn_receive_regack(int sock)
{
regack_packet_t *packet = mqtt_sn_wait_for(MQTT_SN_TYPE_REGACK, sock);
uint16_t received_message_id, received_topic_id;
if (packet == NULL) {
log_err("Failed to connect to register topic.");
exit(EXIT_FAILURE);
}
// Check Regack return code
log_debug("REGACK return code: 0x%2.2x", packet->return_code);
if (packet->return_code) {
log_err("REGISTER failed: %s", mqtt_sn_return_code_string(packet->return_code));
exit(packet->return_code);
}
// Check that the Message ID matches
received_message_id = ntohs(packet->message_id);
if (received_message_id != next_message_id-1) {
log_warn("Message id in Regack does not equal message id sent");
}
// Return the topic ID returned by the gateway
received_topic_id = ntohs(packet->topic_id);
log_debug("REGACK topic id: 0x%4.4x", received_topic_id);
return received_topic_id;
}
void mqtt_sn_dump_packet(char* packet)
{
printf("%s: len=%d", mqtt_sn_type_string(packet[1]), packet[0]);
switch(packet[1]) {
case MQTT_SN_TYPE_CONNECT: {
connect_packet_t* cpkt = (connect_packet_t*)packet;
printf(" protocol_id=%d", cpkt->protocol_id);
printf(" duration=%d", ntohs(cpkt->duration));
printf(" client_id=%s", cpkt->client_id);
break;
}
case MQTT_SN_TYPE_CONNACK: {
connack_packet_t* capkt = (connack_packet_t*)packet;
printf(" return_code=%d (%s)", capkt->return_code, mqtt_sn_return_code_string(capkt->return_code));
break;
}
case MQTT_SN_TYPE_REGISTER: {
register_packet_t* rpkt = (register_packet_t*)packet;
printf(" topic_id=0x%4.4x", ntohs(rpkt->topic_id));
printf(" message_id=0x%4.4x", ntohs(rpkt->message_id));
printf(" topic_name=%s", rpkt->topic_name);
break;
}
case MQTT_SN_TYPE_REGACK: {
regack_packet_t* rapkt = (regack_packet_t*)packet;
printf(" topic_id=0x%4.4x", ntohs(rapkt->topic_id));
printf(" message_id=0x%4.4x", ntohs(rapkt->message_id));
printf(" return_code=%d (%s)", rapkt->return_code, mqtt_sn_return_code_string(rapkt->return_code));
break;
}
case MQTT_SN_TYPE_PUBLISH: {
publish_packet_t* ppkt = (publish_packet_t*)packet;
printf(" topic_id=0x%4.4x", ntohs(ppkt->topic_id));
printf(" message_id=0x%4.4x", ntohs(ppkt->message_id));
printf(" data=%s", ppkt->data);
break;
}
case MQTT_SN_TYPE_SUBSCRIBE: {
subscribe_packet_t* spkt = (subscribe_packet_t*)packet;
printf(" message_id=0x%4.4x", ntohs(spkt->message_id));
break;
}
case MQTT_SN_TYPE_SUBACK: {
suback_packet_t* sapkt = (suback_packet_t*)packet;
printf(" topic_id=0x%4.4x", ntohs(sapkt->topic_id));
printf(" message_id=0x%4.4x", ntohs(sapkt->message_id));
printf(" return_code=%d (%s)", sapkt->return_code, mqtt_sn_return_code_string(sapkt->return_code));
break;
}
case MQTT_SN_TYPE_DISCONNECT: {
disconnect_packet_t* dpkt = (disconnect_packet_t*)packet;
printf(" duration=%d", ntohs(dpkt->duration));
break;
}
}
printf("\n");
}
void mqtt_sn_print_publish_packet(publish_packet_t* packet)
{
if (verbose) {
int topic_type = packet->flags & 0x3;
int topic_id = ntohs(packet->topic_id);
if (verbose == 2) {
time_t rcv_time;
char tm_buffer [40];
time(&rcv_time) ;
strftime(tm_buffer, 40, "%F %T ", localtime(&rcv_time));
fputs(tm_buffer, stdout);
}
switch (topic_type) {
case MQTT_SN_TOPIC_TYPE_NORMAL: {
const char *topic_name = mqtt_sn_lookup_topic(topic_id);
if (topic_name) {
printf("%s: %s\n", topic_name, packet->data);
}
break;
};
case MQTT_SN_TOPIC_TYPE_PREDEFINED: {
printf("%4.4x: %s\n", topic_id, packet->data);
break;
};
case MQTT_SN_TOPIC_TYPE_SHORT: {
const char *str = (const char*)&packet->topic_id;
printf("%c%c: %s\n", str[0], str[1], packet->data);
break;
};
}
} else {
printf("%s\n", packet->data);
}
}
uint16_t mqtt_sn_receive_suback(int sock)
{
suback_packet_t *packet = mqtt_sn_wait_for(MQTT_SN_TYPE_SUBACK, sock);
uint16_t received_message_id, received_topic_id;
if (packet == NULL) {
log_err("Failed to subscribe to topic.");
exit(EXIT_FAILURE);
}
// Check Suback return code
log_debug("SUBACK return code: 0x%2.2x", packet->return_code);
if (packet->return_code) {
log_err("SUBSCRIBE error: %s", mqtt_sn_return_code_string(packet->return_code));
exit(packet->return_code);
}
// Check that the Message ID matches
received_message_id = ntohs(packet->message_id);
if (received_message_id != next_message_id-1) {
log_warn("Message id in SUBACK does not equal message id sent");
log_debug(" Expecting: %d", next_message_id-1);
log_debug(" Actual: %d", received_message_id);
}
// Return the topic ID returned by the gateway
received_topic_id = ntohs(packet->topic_id);
log_debug("SUBACK topic id: 0x%4.4x", received_topic_id);
return received_topic_id;
}
int mqtt_sn_select(int sock)
{
struct timeval tv;
fd_set rfd;
int ret;
FD_ZERO(&rfd);
FD_SET(sock, &rfd);
tv.tv_sec = timeout;
tv.tv_usec = 0;
ret = select(sock + 1, &rfd, NULL, NULL, &tv);
if (ret < 0 && errno != EINTR) {
// Something is wrong.
perror("select");
exit(EXIT_FAILURE);
}
return ret;
}
void* mqtt_sn_wait_for(uint8_t type, int sock)
{
while(TRUE) {
time_t now = time(NULL);
int ret;
// Time to send a ping?
if (keep_alive > 0 && (now - last_transmit) >= keep_alive) {
mqtt_sn_send_pingreq(sock);
}
ret = mqtt_sn_select(sock);
if (ret < 0) {
break;
} else if (ret > 0) {
char* packet = mqtt_sn_receive_packet(sock);
if (packet) {
switch(packet[1]) {
case MQTT_SN_TYPE_PUBLISH:
mqtt_sn_print_publish_packet((publish_packet_t *)packet);
break;
case MQTT_SN_TYPE_REGISTER:
mqtt_sn_process_register(sock, (register_packet_t*)packet);
break;
case MQTT_SN_TYPE_PINGRESP:
// do nothing
break;
case MQTT_SN_TYPE_DISCONNECT:
if (type != MQTT_SN_TYPE_DISCONNECT) {
log_warn("Received DISCONNECT from gateway.");
exit(EXIT_FAILURE);
}
break;
default:
if (packet[1] != type) {
log_warn(
"Was expecting %s packet but received: %s",
mqtt_sn_type_string(type),
mqtt_sn_type_string(packet[1])
);
}
break;
}
// Did we find what we were looking for?
if (packet[1] == type) {
return packet;
}
}
}
// Check for receive timeout
if (keep_alive > 0 && (now - last_receive) >= (keep_alive * 1.5)) {
log_err("Keep alive error: timed out while waiting for a %s from gateway.", mqtt_sn_type_string(type));
exit(EXIT_FAILURE);
}
}
return NULL;
}
const char* mqtt_sn_type_string(uint8_t type)
{
switch(type) {
case MQTT_SN_TYPE_ADVERTISE: return "ADVERTISE";
case MQTT_SN_TYPE_SEARCHGW: return "SEARCHGW";
case MQTT_SN_TYPE_GWINFO: return "GWINFO";
case MQTT_SN_TYPE_CONNECT: return "CONNECT";
case MQTT_SN_TYPE_CONNACK: return "CONNACK";
case MQTT_SN_TYPE_WILLTOPICREQ: return "WILLTOPICREQ";
case MQTT_SN_TYPE_WILLTOPIC: return "WILLTOPIC";
case MQTT_SN_TYPE_WILLMSGREQ: return "WILLMSGREQ";
case MQTT_SN_TYPE_WILLMSG: return "WILLMSG";
case MQTT_SN_TYPE_REGISTER: return "REGISTER";
case MQTT_SN_TYPE_REGACK: return "REGACK";
case MQTT_SN_TYPE_PUBLISH: return "PUBLISH";
case MQTT_SN_TYPE_PUBACK: return "PUBACK";
case MQTT_SN_TYPE_PUBCOMP: return "PUBCOMP";
case MQTT_SN_TYPE_PUBREC: return "PUBREC";
case MQTT_SN_TYPE_PUBREL: return "PUBREL";
case MQTT_SN_TYPE_SUBSCRIBE: return "SUBSCRIBE";
case MQTT_SN_TYPE_SUBACK: return "SUBACK";
case MQTT_SN_TYPE_UNSUBSCRIBE: return "UNSUBSCRIBE";
case MQTT_SN_TYPE_UNSUBACK: return "UNSUBACK";
case MQTT_SN_TYPE_PINGREQ: return "PINGREQ";
case MQTT_SN_TYPE_PINGRESP: return "PINGRESP";
case MQTT_SN_TYPE_DISCONNECT: return "DISCONNECT";
case MQTT_SN_TYPE_WILLTOPICUPD: return "WILLTOPICUPD";
case MQTT_SN_TYPE_WILLTOPICRESP: return "WILLTOPICRESP";
case MQTT_SN_TYPE_WILLMSGUPD: return "WILLMSGUPD";
case MQTT_SN_TYPE_WILLMSGRESP: return "WILLMSGRESP";
case MQTT_SN_TYPE_FRWDENCAP: return "FRWDENCAP";
default: return "UNKNOWN";
}
}
const char* mqtt_sn_return_code_string(uint8_t return_code)
{
switch(return_code) {
case 0x00: return "Accepted";
case 0x01: return "Rejected: congestion";
case 0x02: return "Rejected: invalid topic ID";
case 0x03: return "Rejected: not supported";
default: return "Rejected: unknown reason";
}
}
void mqtt_sn_cleanup()
{
topic_map_t *ptr = topic_map;
topic_map_t *ptr2 = NULL;
// Walk through the topic map, deleting each entry
while (ptr) {
ptr2 = ptr;
ptr = ptr->next;
free(ptr2);
}
topic_map = NULL;
}
uint8_t mqtt_sn_enable_frwdencap() {
return forwarder_encapsulation = TRUE;
}
uint8_t mqtt_sn_disable_frwdencap() {
return forwarder_encapsulation = FALSE;
}
void mqtt_sn_set_frwdencap_parameters(const uint8_t *wlnid, uint8_t wlnid_len) {
wireless_node_id = wlnid;
wireless_node_id_len = wlnid_len;
}
frwdencap_packet_t* mqtt_sn_create_frwdencap_packet(const void *data, size_t *len, const uint8_t *wireless_node_id, uint8_t wireless_node_id_len)
{
frwdencap_packet_t* packet = NULL;
// Check that it isn't too long
if (wireless_node_id_len > MQTT_SN_MAX_WIRELESS_NODE_ID_LENGTH) {
log_err("Wireless node id is longer than %d", MQTT_SN_MAX_WIRELESS_NODE_ID_LENGTH);
exit(EXIT_FAILURE);
}
// Allocates a block of memory for an array of num elements, each of them size bytes long,
// and initializes all its bits to zero.
packet = malloc(sizeof(frwdencap_packet_t));
packet->type = MQTT_SN_TYPE_FRWDENCAP;
packet->ctrl = 0;
// Generate a Wireless Node ID if none given
if (wireless_node_id == NULL || wireless_node_id_len == 0) {
// A null character is automatically appended after the content written.
snprintf((char*)packet->wireless_node_id, sizeof(packet->wireless_node_id)-1, "%X", getpid());
wireless_node_id_len = strlen((char*)packet->wireless_node_id);
} else {
memcpy(packet->wireless_node_id, wireless_node_id, wireless_node_id_len);
}
packet->length = wireless_node_id_len + 3;
// Copy mqtt-sn packet into forwarder encapsulation packet
memcpy(&(packet->wireless_node_id[wireless_node_id_len]), data, ((uint8_t*)data)[0]);
// Set new packet length to send
*len = packet->length + ((uint8_t*)data)[0];
if (debug > 2) {
char wlnd[65];
char* buf_ptr = wlnd;
int i;
for (i = 0; i < wireless_node_id_len; i++)
{
buf_ptr += sprintf(buf_ptr, "%02X", packet->wireless_node_id[i]);
}
*(++buf_ptr) = '\0';
log_debug("Node id: 0x%s, N. id len: %d, Wrapped packet len: %d, Total len: %lu",
wlnd, wireless_node_id_len, ((uint8_t*)data)[0], (long unsigned int)*len);
}
return packet;
}
void fprint_wlnid(FILE * stream, const uint8_t *wireless_node_id, uint8_t wireless_node_id_len) {
int i;
for (i = 0; i < wireless_node_id_len; i++)
fprintf(stream, "%02X", wireless_node_id[i]);
}
void log_msg(const char* level, const char* format, va_list arglist)
{
time_t log_time;
char tm_buffer[40];
time(&log_time);
strftime(tm_buffer, sizeof(tm_buffer), "%F %T ", localtime(&log_time));
fputs(tm_buffer, stderr);
fputs(level, stderr);
vfprintf(stderr, format, arglist);
fputs("\n", stderr);
}
void log_debug(const char * format, ...)
{
if (debug) {
va_list arglist;
va_start(arglist, format);
log_msg("DEBUG ", format, arglist);
va_end(arglist);
}
}
void log_warn(const char * format, ...)
{
va_list arglist;
va_start(arglist, format);
log_msg("WARN ", format, arglist);
va_end(arglist);
}
void log_err(const char * format, ...)