mirror of https://github.com/eclipse/paho.mqtt.c
727 lines
20 KiB
C
727 lines
20 KiB
C
/*******************************************************************************
|
|
* Copyright (c) 2009, 2013 IBM Corp.
|
|
*
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
* and Eclipse Distribution License v1.0 which accompany this distribution.
|
|
*
|
|
* The Eclipse Public License is available at
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
* and the Eclipse Distribution License is available at
|
|
* http://www.eclipse.org/org/documents/edl-v10.php.
|
|
*
|
|
* Contributors:
|
|
* Ian Craggs - initial API and implementation and/or initial documentation
|
|
* Ian Craggs, Allan Stockdill-Mander - SSL updates
|
|
*******************************************************************************/
|
|
|
|
/**
|
|
* @file
|
|
* \brief functions to deal with reading and writing of MQTT packets from and to sockets
|
|
*
|
|
* Some other related functions are in the MQTTPacketOut module
|
|
*/
|
|
|
|
#include "MQTTPacket.h"
|
|
#include "Log.h"
|
|
#if !defined(NO_PERSISTENCE)
|
|
#include "MQTTPersistence.h"
|
|
#endif
|
|
#include "Messages.h"
|
|
#include "StackTrace.h"
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "Heap.h"
|
|
|
|
#if !defined(min)
|
|
#define min(A,B) ( (A) < (B) ? (A):(B))
|
|
#endif
|
|
|
|
/**
|
|
* List of the predefined MQTT v3 packet names.
|
|
*/
|
|
static char* packet_names[] =
|
|
{
|
|
"RESERVED", "CONNECT", "CONNACK", "PUBLISH", "PUBACK", "PUBREC", "PUBREL",
|
|
"PUBCOMP", "SUBSCRIBE", "SUBACK", "UNSUBSCRIBE", "UNSUBACK",
|
|
"PINGREQ", "PINGRESP", "DISCONNECT"
|
|
};
|
|
|
|
char** MQTTClient_packet_names = packet_names;
|
|
|
|
|
|
/**
|
|
* Converts an MQTT packet code into its name
|
|
* @param ptype packet code
|
|
* @return the corresponding string, or "UNKNOWN"
|
|
*/
|
|
char* MQTTPacket_name(int ptype)
|
|
{
|
|
return (ptype >= 0 && ptype <= DISCONNECT) ? packet_names[ptype] : "UNKNOWN";
|
|
}
|
|
|
|
/**
|
|
* Array of functions to build packets, indexed according to packet code
|
|
*/
|
|
pf new_packets[] =
|
|
{
|
|
NULL, /**< reserved */
|
|
NULL, /**< MQTTPacket_connect*/
|
|
MQTTPacket_connack, /**< CONNACK */
|
|
MQTTPacket_publish, /**< PUBLISH */
|
|
MQTTPacket_ack, /**< PUBACK */
|
|
MQTTPacket_ack, /**< PUBREC */
|
|
MQTTPacket_ack, /**< PUBREL */
|
|
MQTTPacket_ack, /**< PUBCOMP */
|
|
NULL, /**< MQTTPacket_subscribe*/
|
|
MQTTPacket_suback, /**< SUBACK */
|
|
NULL, /**< MQTTPacket_unsubscribe*/
|
|
MQTTPacket_ack, /**< UNSUBACK */
|
|
MQTTPacket_header_only, /**< PINGREQ */
|
|
MQTTPacket_header_only, /**< PINGRESP */
|
|
MQTTPacket_header_only /**< DISCONNECT */
|
|
};
|
|
|
|
|
|
/**
|
|
* Reads one MQTT packet from a socket.
|
|
* @param socket a socket from which to read an MQTT packet
|
|
* @param error pointer to the error code which is completed if no packet is returned
|
|
* @return the packet structure or NULL if there was an error
|
|
*/
|
|
void* MQTTPacket_Factory(networkHandles* net, int* error)
|
|
{
|
|
char* data = NULL;
|
|
static Header header;
|
|
int remaining_length, ptype;
|
|
void* pack = NULL;
|
|
int actual_len = 0;
|
|
|
|
FUNC_ENTRY;
|
|
*error = SOCKET_ERROR; /* indicate whether an error occurred, or not */
|
|
|
|
/* read the packet data from the socket */
|
|
#if defined(OPENSSL)
|
|
*error = (net->ssl) ? SSLSocket_getch(net->ssl, net->socket, &header.byte) : Socket_getch(net->socket, &header.byte);
|
|
#else
|
|
*error = Socket_getch(net->socket, &header.byte);
|
|
#endif
|
|
if (*error != TCPSOCKET_COMPLETE) /* first byte is the header byte */
|
|
goto exit; /* packet not read, *error indicates whether SOCKET_ERROR occurred */
|
|
|
|
/* now read the remaining length, so we know how much more to read */
|
|
if ((*error = MQTTPacket_decode(net, &remaining_length)) != TCPSOCKET_COMPLETE)
|
|
goto exit; /* packet not read, *error indicates whether SOCKET_ERROR occurred */
|
|
|
|
/* now read the rest, the variable header and payload */
|
|
#if defined(OPENSSL)
|
|
data = (net->ssl) ? SSLSocket_getdata(net->ssl, net->socket, remaining_length, &actual_len) :
|
|
Socket_getdata(net->socket, remaining_length, &actual_len);
|
|
#else
|
|
data = Socket_getdata(net->socket, remaining_length, &actual_len);
|
|
#endif
|
|
if (data == NULL)
|
|
{
|
|
*error = SOCKET_ERROR;
|
|
goto exit; /* socket error */
|
|
}
|
|
|
|
if (actual_len != remaining_length)
|
|
*error = TCPSOCKET_INTERRUPTED;
|
|
else
|
|
{
|
|
ptype = header.bits.type;
|
|
if (ptype < CONNECT || ptype > DISCONNECT || new_packets[ptype] == NULL)
|
|
Log(TRACE_MIN, 2, NULL, ptype);
|
|
else
|
|
{
|
|
if ((pack = (*new_packets[ptype])(header.byte, data, remaining_length)) == NULL)
|
|
*error = BAD_MQTT_PACKET;
|
|
#if !defined(NO_PERSISTENCE)
|
|
else if (header.bits.type == PUBLISH && header.bits.qos == 2)
|
|
{
|
|
int buf0len;
|
|
char *buf = malloc(10);
|
|
buf[0] = header.byte;
|
|
buf0len = 1 + MQTTPacket_encode(&buf[1], remaining_length);
|
|
*error = MQTTPersistence_put(net->socket, buf, buf0len, 1,
|
|
&data, &remaining_length, header.bits.type, ((Publish *)pack)->msgId, 1);
|
|
free(buf);
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
exit:
|
|
FUNC_EXIT_RC(*error);
|
|
return pack;
|
|
}
|
|
|
|
|
|
/**
|
|
* Sends an MQTT packet in one system call write
|
|
* @param socket the socket to which to write the data
|
|
* @param header the one-byte MQTT header
|
|
* @param buffer the rest of the buffer to write (not including remaining length)
|
|
* @param buflen the length of the data in buffer to be written
|
|
* @return the completion code (TCPSOCKET_COMPLETE etc)
|
|
*/
|
|
int MQTTPacket_send(networkHandles* net, Header header, char* buffer, int buflen)
|
|
{
|
|
int rc, buf0len;
|
|
char *buf;
|
|
|
|
FUNC_ENTRY;
|
|
buf = malloc(10);
|
|
buf[0] = header.byte;
|
|
buf0len = 1 + MQTTPacket_encode(&buf[1], buflen);
|
|
#if !defined(NO_PERSISTENCE)
|
|
if (header.bits.type == PUBREL)
|
|
{
|
|
char* ptraux = buffer;
|
|
int msgId = readInt(&ptraux);
|
|
rc = MQTTPersistence_put(net->socket, buf, buf0len, 1, &buffer, &buflen,
|
|
header.bits.type, msgId, 0);
|
|
}
|
|
#endif
|
|
|
|
#if defined(OPENSSL)
|
|
if (net->ssl)
|
|
rc = SSLSocket_putdatas(net->ssl, net->socket, buf, buf0len, 1, &buffer, &buflen);
|
|
else
|
|
#endif
|
|
rc = Socket_putdatas(net->socket, buf, buf0len, 1, &buffer, &buflen);
|
|
|
|
if (rc == TCPSOCKET_COMPLETE)
|
|
time(&(net->lastContact));
|
|
|
|
if (rc != TCPSOCKET_INTERRUPTED)
|
|
free(buf);
|
|
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Sends an MQTT packet from multiple buffers in one system call write
|
|
* @param socket the socket to which to write the data
|
|
* @param header the one-byte MQTT header
|
|
* @param count the number of buffers
|
|
* @param buffers the rest of the buffers to write (not including remaining length)
|
|
* @param buflens the lengths of the data in the array of buffers to be written
|
|
* @return the completion code (TCPSOCKET_COMPLETE etc)
|
|
*/
|
|
int MQTTPacket_sends(networkHandles* net, Header header, int count, char** buffers, int* buflens)
|
|
{
|
|
int i, rc, buf0len, total = 0;
|
|
char *buf;
|
|
|
|
FUNC_ENTRY;
|
|
buf = malloc(10);
|
|
buf[0] = header.byte;
|
|
for (i = 0; i < count; i++)
|
|
total += buflens[i];
|
|
buf0len = 1 + MQTTPacket_encode(&buf[1], total);
|
|
#if !defined(NO_PERSISTENCE)
|
|
if (header.bits.type == PUBLISH && header.bits.qos != 0)
|
|
{ /* persist PUBLISH QoS1 and Qo2 */
|
|
char *ptraux = buffers[2];
|
|
int msgId = readInt(&ptraux);
|
|
rc = MQTTPersistence_put(net->socket, buf, buf0len, count, buffers, buflens,
|
|
header.bits.type, msgId, 0);
|
|
}
|
|
#endif
|
|
#if defined(OPENSSL)
|
|
if (net->ssl)
|
|
rc = SSLSocket_putdatas(net->ssl, net->socket, buf, buf0len, count, buffers, buflens);
|
|
else
|
|
#endif
|
|
rc = Socket_putdatas(net->socket, buf, buf0len, count, buffers, buflens);
|
|
|
|
if (rc == TCPSOCKET_COMPLETE)
|
|
time(&(net->lastContact));
|
|
|
|
if (rc != TCPSOCKET_INTERRUPTED)
|
|
free(buf);
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Encodes the message length according to the MQTT algorithm
|
|
* @param buf the buffer into which the encoded data is written
|
|
* @param length the length to be encoded
|
|
* @return the number of bytes written to buffer
|
|
*/
|
|
int MQTTPacket_encode(char* buf, int length)
|
|
{
|
|
int rc = 0;
|
|
|
|
FUNC_ENTRY;
|
|
do
|
|
{
|
|
char d = length % 128;
|
|
length /= 128;
|
|
/* if there are more digits to encode, set the top bit of this digit */
|
|
if (length > 0)
|
|
d |= 0x80;
|
|
buf[rc++] = d;
|
|
} while (length > 0);
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Decodes the message length according to the MQTT algorithm
|
|
* @param socket the socket from which to read the bytes
|
|
* @param value the decoded length returned
|
|
* @return the number of bytes read from the socket
|
|
*/
|
|
int MQTTPacket_decode(networkHandles* net, int* value)
|
|
{
|
|
int rc = SOCKET_ERROR;
|
|
char c;
|
|
int multiplier = 1;
|
|
int len = 0;
|
|
#define MAX_NO_OF_REMAINING_LENGTH_BYTES 4
|
|
|
|
FUNC_ENTRY;
|
|
*value = 0;
|
|
do
|
|
{
|
|
if (++len > MAX_NO_OF_REMAINING_LENGTH_BYTES)
|
|
{
|
|
rc = SOCKET_ERROR; /* bad data */
|
|
goto exit;
|
|
}
|
|
#if defined(OPENSSL)
|
|
rc = (net->ssl) ? SSLSocket_getch(net->ssl, net->socket, &c) : Socket_getch(net->socket, &c);
|
|
#else
|
|
rc = Socket_getch(net->socket, &c);
|
|
#endif
|
|
if (rc != TCPSOCKET_COMPLETE)
|
|
goto exit;
|
|
*value += (c & 127) * multiplier;
|
|
multiplier *= 128;
|
|
} while ((c & 128) != 0);
|
|
exit:
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Calculates an integer from two bytes read from the input buffer
|
|
* @param pptr pointer to the input buffer - incremented by the number of bytes used & returned
|
|
* @return the integer value calculated
|
|
*/
|
|
int readInt(char** pptr)
|
|
{
|
|
char* ptr = *pptr;
|
|
int len = 256*((unsigned char)(*ptr)) + (unsigned char)(*(ptr+1));
|
|
*pptr += 2;
|
|
return len;
|
|
}
|
|
|
|
|
|
/**
|
|
* Reads a "UTF" string from the input buffer. UTF as in the MQTT v3 spec which really means
|
|
* a length delimited string. So it reads the two byte length then the data according to
|
|
* that length. The end of the buffer is provided too, so we can prevent buffer overruns caused
|
|
* by an incorrect length.
|
|
* @param pptr pointer to the input buffer - incremented by the number of bytes used & returned
|
|
* @param enddata pointer to the end of the buffer not to be read beyond
|
|
* @param len returns the calculcated value of the length bytes read
|
|
* @return an allocated C string holding the characters read, or NULL if the length read would
|
|
* have caused an overrun.
|
|
*
|
|
*/
|
|
char* readUTFlen(char** pptr, char* enddata, int* len)
|
|
{
|
|
char* string = NULL;
|
|
|
|
FUNC_ENTRY;
|
|
if (enddata - (*pptr) > 1) /* enough length to read the integer? */
|
|
{
|
|
*len = readInt(pptr);
|
|
if (&(*pptr)[*len] <= enddata)
|
|
{
|
|
string = malloc(*len+1);
|
|
memcpy(string, *pptr, *len);
|
|
string[*len] = '\0';
|
|
*pptr += *len;
|
|
}
|
|
}
|
|
FUNC_EXIT;
|
|
return string;
|
|
}
|
|
|
|
|
|
/**
|
|
* Reads a "UTF" string from the input buffer. UTF as in the MQTT v3 spec which really means
|
|
* a length delimited string. So it reads the two byte length then the data according to
|
|
* that length. The end of the buffer is provided too, so we can prevent buffer overruns caused
|
|
* by an incorrect length.
|
|
* @param pptr pointer to the input buffer - incremented by the number of bytes used & returned
|
|
* @param enddata pointer to the end of the buffer not to be read beyond
|
|
* @return an allocated C string holding the characters read, or NULL if the length read would
|
|
* have caused an overrun.
|
|
*/
|
|
char* readUTF(char** pptr, char* enddata)
|
|
{
|
|
int len;
|
|
return readUTFlen(pptr, enddata, &len);
|
|
}
|
|
|
|
|
|
/**
|
|
* Reads one character from the input buffer.
|
|
* @param pptr pointer to the input buffer - incremented by the number of bytes used & returned
|
|
* @return the character read
|
|
*/
|
|
char readChar(char** pptr)
|
|
{
|
|
char c = **pptr;
|
|
(*pptr)++;
|
|
return c;
|
|
}
|
|
|
|
|
|
/**
|
|
* Writes one character to an output buffer.
|
|
* @param pptr pointer to the output buffer - incremented by the number of bytes used & returned
|
|
* @param c the character to write
|
|
*/
|
|
void writeChar(char** pptr, char c)
|
|
{
|
|
**pptr = c;
|
|
(*pptr)++;
|
|
}
|
|
|
|
|
|
/**
|
|
* Writes an integer as 2 bytes to an output buffer.
|
|
* @param pptr pointer to the output buffer - incremented by the number of bytes used & returned
|
|
* @param anInt the integer to write
|
|
*/
|
|
void writeInt(char** pptr, int anInt)
|
|
{
|
|
**pptr = (char)(anInt / 256);
|
|
(*pptr)++;
|
|
**pptr = (char)(anInt % 256);
|
|
(*pptr)++;
|
|
}
|
|
|
|
|
|
/**
|
|
* Writes a "UTF" string to an output buffer. Converts C string to length-delimited.
|
|
* @param pptr pointer to the output buffer - incremented by the number of bytes used & returned
|
|
* @param string the C string to write
|
|
*/
|
|
void writeUTF(char** pptr, char* string)
|
|
{
|
|
int len = strlen(string);
|
|
writeInt(pptr, len);
|
|
memcpy(*pptr, string, len);
|
|
*pptr += len;
|
|
}
|
|
|
|
|
|
/**
|
|
* Function used in the new packets table to create packets which have only a header.
|
|
* @param aHeader the MQTT header byte
|
|
* @param data the rest of the packet
|
|
* @param datalen the length of the rest of the packet
|
|
* @return pointer to the packet structure
|
|
*/
|
|
void* MQTTPacket_header_only(unsigned char aHeader, char* data, int datalen)
|
|
{
|
|
static unsigned char header = 0;
|
|
header = aHeader;
|
|
return &header;
|
|
}
|
|
|
|
|
|
/**
|
|
* Send an MQTT disconnect packet down a socket.
|
|
* @param socket the open socket to send the data to
|
|
* @return the completion code (e.g. TCPSOCKET_COMPLETE)
|
|
*/
|
|
int MQTTPacket_send_disconnect(networkHandles *net, char* clientID)
|
|
{
|
|
Header header;
|
|
int rc = 0;
|
|
|
|
FUNC_ENTRY;
|
|
header.byte = 0;
|
|
header.bits.type = DISCONNECT;
|
|
rc = MQTTPacket_send(net, header, NULL, 0);
|
|
Log(LOG_PROTOCOL, 28, NULL, net->socket, clientID, rc);
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Function used in the new packets table to create publish packets.
|
|
* @param aHeader the MQTT header byte
|
|
* @param data the rest of the packet
|
|
* @param datalen the length of the rest of the packet
|
|
* @return pointer to the packet structure
|
|
*/
|
|
void* MQTTPacket_publish(unsigned char aHeader, char* data, int datalen)
|
|
{
|
|
Publish* pack = malloc(sizeof(Publish));
|
|
char* curdata = data;
|
|
char* enddata = &data[datalen];
|
|
|
|
FUNC_ENTRY;
|
|
pack->header.byte = aHeader;
|
|
if ((pack->topic = readUTFlen(&curdata, enddata, &pack->topiclen)) == NULL) /* Topic name on which to publish */
|
|
{
|
|
free(pack);
|
|
pack = NULL;
|
|
goto exit;
|
|
}
|
|
if (pack->header.bits.qos > 0) /* Msgid only exists for QoS 1 or 2 */
|
|
pack->msgId = readInt(&curdata);
|
|
else
|
|
pack->msgId = 0;
|
|
pack->payload = curdata;
|
|
pack->payloadlen = datalen-(curdata-data);
|
|
exit:
|
|
FUNC_EXIT;
|
|
return pack;
|
|
}
|
|
|
|
|
|
/**
|
|
* Free allocated storage for a publish packet.
|
|
* @param pack pointer to the publish packet structure
|
|
*/
|
|
void MQTTPacket_freePublish(Publish* pack)
|
|
{
|
|
FUNC_ENTRY;
|
|
if (pack->topic != NULL)
|
|
free(pack->topic);
|
|
free(pack);
|
|
FUNC_EXIT;
|
|
}
|
|
|
|
|
|
/**
|
|
* Send an MQTT acknowledgement packet down a socket.
|
|
* @param type the MQTT packet type e.g. SUBACK
|
|
* @param msgid the MQTT message id to use
|
|
* @param dup boolean - whether to set the MQTT DUP flag
|
|
* @param socket the open socket to send the data to
|
|
* @return the completion code (e.g. TCPSOCKET_COMPLETE)
|
|
*/
|
|
int MQTTPacket_send_ack(int type, int msgid, int dup, networkHandles *net)
|
|
{
|
|
Header header;
|
|
int rc;
|
|
char *buf = malloc(2);
|
|
char *ptr = buf;
|
|
|
|
FUNC_ENTRY;
|
|
header.byte = 0;
|
|
header.bits.type = type;
|
|
header.bits.dup = dup;
|
|
writeInt(&ptr, msgid);
|
|
if ((rc = MQTTPacket_send(net, header, buf, 2)) != TCPSOCKET_INTERRUPTED)
|
|
free(buf);
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Send an MQTT PUBACK packet down a socket.
|
|
* @param msgid the MQTT message id to use
|
|
* @param socket the open socket to send the data to
|
|
* @param clientID the string client identifier, only used for tracing
|
|
* @return the completion code (e.g. TCPSOCKET_COMPLETE)
|
|
*/
|
|
int MQTTPacket_send_puback(int msgid, networkHandles* net, char* clientID)
|
|
{
|
|
int rc = 0;
|
|
|
|
FUNC_ENTRY;
|
|
rc = MQTTPacket_send_ack(PUBACK, msgid, 0, net);
|
|
Log(LOG_PROTOCOL, 12, NULL, net->socket, clientID, msgid, rc);
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Free allocated storage for a suback packet.
|
|
* @param pack pointer to the suback packet structure
|
|
*/
|
|
void MQTTPacket_freeSuback(Suback* pack)
|
|
{
|
|
FUNC_ENTRY;
|
|
if (pack->qoss != NULL)
|
|
ListFree(pack->qoss);
|
|
free(pack);
|
|
FUNC_EXIT;
|
|
}
|
|
|
|
|
|
/**
|
|
* Send an MQTT PUBREC packet down a socket.
|
|
* @param msgid the MQTT message id to use
|
|
* @param socket the open socket to send the data to
|
|
* @param clientID the string client identifier, only used for tracing
|
|
* @return the completion code (e.g. TCPSOCKET_COMPLETE)
|
|
*/
|
|
int MQTTPacket_send_pubrec(int msgid, networkHandles* net, char* clientID)
|
|
{
|
|
int rc = 0;
|
|
|
|
FUNC_ENTRY;
|
|
rc = MQTTPacket_send_ack(PUBREC, msgid, 0, net);
|
|
Log(LOG_PROTOCOL, 13, NULL, net->socket, clientID, msgid, rc);
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Send an MQTT PUBREL packet down a socket.
|
|
* @param msgid the MQTT message id to use
|
|
* @param dup boolean - whether to set the MQTT DUP flag
|
|
* @param socket the open socket to send the data to
|
|
* @param clientID the string client identifier, only used for tracing
|
|
* @return the completion code (e.g. TCPSOCKET_COMPLETE)
|
|
*/
|
|
int MQTTPacket_send_pubrel(int msgid, int dup, networkHandles* net, char* clientID)
|
|
{
|
|
int rc = 0;
|
|
|
|
FUNC_ENTRY;
|
|
rc = MQTTPacket_send_ack(PUBREL, msgid, dup, net);
|
|
Log(LOG_PROTOCOL, 16, NULL, net->socket, clientID, msgid, rc);
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Send an MQTT PUBCOMP packet down a socket.
|
|
* @param msgid the MQTT message id to use
|
|
* @param socket the open socket to send the data to
|
|
* @param clientID the string client identifier, only used for tracing
|
|
* @return the completion code (e.g. TCPSOCKET_COMPLETE)
|
|
*/
|
|
int MQTTPacket_send_pubcomp(int msgid, networkHandles* net, char* clientID)
|
|
{
|
|
int rc = 0;
|
|
|
|
FUNC_ENTRY;
|
|
rc = MQTTPacket_send_ack(PUBCOMP, msgid, 0, net);
|
|
Log(LOG_PROTOCOL, 18, NULL, net->socket, clientID, msgid, rc);
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Function used in the new packets table to create acknowledgement packets.
|
|
* @param aHeader the MQTT header byte
|
|
* @param data the rest of the packet
|
|
* @param datalen the length of the rest of the packet
|
|
* @return pointer to the packet structure
|
|
*/
|
|
void* MQTTPacket_ack(unsigned char aHeader, char* data, int datalen)
|
|
{
|
|
Ack* pack = malloc(sizeof(Ack));
|
|
char* curdata = data;
|
|
|
|
FUNC_ENTRY;
|
|
pack->header.byte = aHeader;
|
|
pack->msgId = readInt(&curdata);
|
|
FUNC_EXIT;
|
|
return pack;
|
|
}
|
|
|
|
|
|
/**
|
|
* Send an MQTT PUBLISH packet down a socket.
|
|
* @param pack a structure from which to get some values to use, e.g topic, payload
|
|
* @param dup boolean - whether to set the MQTT DUP flag
|
|
* @param qos the value to use for the MQTT QoS setting
|
|
* @param retained boolean - whether to set the MQTT retained flag
|
|
* @param socket the open socket to send the data to
|
|
* @param clientID the string client identifier, only used for tracing
|
|
* @return the completion code (e.g. TCPSOCKET_COMPLETE)
|
|
*/
|
|
int MQTTPacket_send_publish(Publish* pack, int dup, int qos, int retained, networkHandles* net, char* clientID)
|
|
{
|
|
Header header;
|
|
char *topiclen;
|
|
int rc = -1;
|
|
|
|
FUNC_ENTRY;
|
|
topiclen = malloc(2);
|
|
|
|
header.bits.type = PUBLISH;
|
|
header.bits.dup = dup;
|
|
header.bits.qos = qos;
|
|
header.bits.retain = retained;
|
|
if (qos > 0)
|
|
{
|
|
char *buf = malloc(2);
|
|
char *ptr = buf;
|
|
char* bufs[4] = {topiclen, pack->topic, buf, pack->payload};
|
|
int lens[4] = {2, strlen(pack->topic), 2, pack->payloadlen};
|
|
writeInt(&ptr, pack->msgId);
|
|
ptr = topiclen;
|
|
writeInt(&ptr, lens[1]);
|
|
rc = MQTTPacket_sends(net, header, 4, bufs, lens);
|
|
if (rc != TCPSOCKET_INTERRUPTED)
|
|
free(buf);
|
|
}
|
|
else
|
|
{
|
|
char* ptr = topiclen;
|
|
char* bufs[3] = {topiclen, pack->topic, pack->payload};
|
|
int lens[3] = {2, strlen(pack->topic), pack->payloadlen};
|
|
writeInt(&ptr, lens[1]);
|
|
rc = MQTTPacket_sends(net, header, 3, bufs, lens);
|
|
}
|
|
if (rc != TCPSOCKET_INTERRUPTED)
|
|
free(topiclen);
|
|
if (qos == 0)
|
|
Log(LOG_PROTOCOL, 27, NULL, net->socket, clientID, retained, rc);
|
|
else
|
|
Log(LOG_PROTOCOL, 10, NULL, net->socket, clientID, pack->msgId, qos, retained, rc,
|
|
min(20, pack->payloadlen), pack->payload);
|
|
FUNC_EXIT_RC(rc);
|
|
return rc;
|
|
}
|
|
|
|
|
|
/**
|
|
* Free allocated storage for a various packet tyoes
|
|
* @param pack pointer to the suback packet structure
|
|
*/
|
|
void MQTTPacket_free_packet(MQTTPacket* pack)
|
|
{
|
|
FUNC_ENTRY;
|
|
if (pack->header.bits.type == PUBLISH)
|
|
MQTTPacket_freePublish((Publish*)pack);
|
|
/*else if (pack->header.type == SUBSCRIBE)
|
|
MQTTPacket_freeSubscribe((Subscribe*)pack, 1);
|
|
else if (pack->header.type == UNSUBSCRIBE)
|
|
MQTTPacket_freeUnsubscribe((Unsubscribe*)pack);*/
|
|
else
|
|
free(pack);
|
|
FUNC_EXIT;
|
|
}
|