mosquitto/lib/send_mosq.c

280 lines
8.1 KiB
C
Raw Normal View History

2014-05-07 22:27:00 +00:00
/*
Copyright (c) 2009-2015 Roger Light <roger@atchoo.org>
2014-05-07 22:27:00 +00:00
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:
Roger Light - initial implementation and documentation.
*/
#include <assert.h>
#include <stdio.h>
#include <string.h>
2015-04-29 20:37:47 +00:00
#include "mosquitto.h"
#include "mosquitto_internal.h"
#include "logging_mosq.h"
#include "mqtt3_protocol.h"
#include "memory_mosq.h"
#include "net_mosq.h"
#include "packet_mosq.h"
#include "send_mosq.h"
#include "time_mosq.h"
#include "util_mosq.h"
2014-05-07 22:27:00 +00:00
#ifdef WITH_BROKER
# include "mosquitto_broker.h"
# include "sys_tree.h"
#else
# define G_PUB_BYTES_SENT_INC(A)
2014-05-07 22:27:00 +00:00
#endif
2015-05-16 14:24:24 +00:00
int send__pingreq(struct mosquitto *mosq)
2014-05-07 22:27:00 +00:00
{
int rc;
assert(mosq);
#ifdef WITH_BROKER
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PINGREQ to %s", mosq->id);
2014-05-07 22:27:00 +00:00
#else
2015-05-18 07:53:21 +00:00
log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PINGREQ", mosq->id);
2014-05-07 22:27:00 +00:00
#endif
2015-05-16 14:24:24 +00:00
rc = send__simple_command(mosq, PINGREQ);
2014-05-07 22:27:00 +00:00
if(rc == MOSQ_ERR_SUCCESS){
mosq->ping_t = mosquitto_time();
}
return rc;
}
2015-05-16 14:24:24 +00:00
int send__pingresp(struct mosquitto *mosq)
2014-05-07 22:27:00 +00:00
{
#ifdef WITH_BROKER
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PINGRESP to %s", mosq->id);
2014-05-07 22:27:00 +00:00
#else
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PINGRESP", mosq->id);
2014-05-07 22:27:00 +00:00
#endif
2015-05-16 14:24:24 +00:00
return send__simple_command(mosq, PINGRESP);
2014-05-07 22:27:00 +00:00
}
2015-05-16 14:24:24 +00:00
int send__puback(struct mosquitto *mosq, uint16_t mid)
2014-05-07 22:27:00 +00:00
{
#ifdef WITH_BROKER
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBACK to %s (Mid: %d)", mosq->id, mid);
2014-05-07 22:27:00 +00:00
#else
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PUBACK (Mid: %d)", mosq->id, mid);
2014-05-07 22:27:00 +00:00
#endif
2015-05-16 14:24:24 +00:00
return send__command_with_mid(mosq, PUBACK, mid, false);
2014-05-07 22:27:00 +00:00
}
2015-05-16 14:24:24 +00:00
int send__pubcomp(struct mosquitto *mosq, uint16_t mid)
2014-05-07 22:27:00 +00:00
{
#ifdef WITH_BROKER
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBCOMP to %s (Mid: %d)", mosq->id, mid);
2014-05-07 22:27:00 +00:00
#else
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PUBCOMP (Mid: %d)", mosq->id, mid);
2014-05-07 22:27:00 +00:00
#endif
2015-05-16 14:24:24 +00:00
return send__command_with_mid(mosq, PUBCOMP, mid, false);
2014-05-07 22:27:00 +00:00
}
2015-05-16 14:24:24 +00:00
int send__publish(struct mosquitto *mosq, uint16_t mid, const char *topic, uint32_t payloadlen, const void *payload, int qos, bool retain, bool dup)
2014-05-07 22:27:00 +00:00
{
#ifdef WITH_BROKER
size_t len;
#ifdef WITH_BRIDGE
int i;
2015-05-16 18:03:12 +00:00
struct mosquitto__bridge_topic *cur_topic;
2014-05-07 22:27:00 +00:00
bool match;
int rc;
char *mapped_topic = NULL;
char *topic_temp = NULL;
#endif
#endif
assert(mosq);
assert(topic);
#if defined(WITH_BROKER) && defined(WITH_WEBSOCKETS)
if(mosq->sock == INVALID_SOCKET && !mosq->wsi) return MOSQ_ERR_NO_CONN;
#else
2014-05-07 22:27:00 +00:00
if(mosq->sock == INVALID_SOCKET) return MOSQ_ERR_NO_CONN;
#endif
2014-05-07 22:27:00 +00:00
#ifdef WITH_BROKER
if(mosq->listener && mosq->listener->mount_point){
len = strlen(mosq->listener->mount_point);
if(len < strlen(topic)){
topic += len;
}else{
/* Invalid topic string. Should never happen, but silently swallow the message anyway. */
return MOSQ_ERR_SUCCESS;
}
}
#ifdef WITH_BRIDGE
if(mosq->bridge && mosq->bridge->topics && mosq->bridge->topic_remapping){
for(i=0; i<mosq->bridge->topic_count; i++){
cur_topic = &mosq->bridge->topics[i];
if((cur_topic->direction == bd_both || cur_topic->direction == bd_out)
&& (cur_topic->remote_prefix || cur_topic->local_prefix)){
/* Topic mapping required on this topic if the message matches */
rc = mosquitto_topic_matches_sub(cur_topic->local_topic, topic, &match);
if(rc){
return rc;
}
if(match){
mapped_topic = mosquitto__strdup(topic);
2014-05-07 22:27:00 +00:00
if(!mapped_topic) return MOSQ_ERR_NOMEM;
if(cur_topic->local_prefix){
/* This prefix needs removing. */
if(!strncmp(cur_topic->local_prefix, mapped_topic, strlen(cur_topic->local_prefix))){
topic_temp = mosquitto__strdup(mapped_topic+strlen(cur_topic->local_prefix));
mosquitto__free(mapped_topic);
2014-05-07 22:27:00 +00:00
if(!topic_temp){
return MOSQ_ERR_NOMEM;
}
mapped_topic = topic_temp;
}
}
if(cur_topic->remote_prefix){
/* This prefix needs adding. */
len = strlen(mapped_topic) + strlen(cur_topic->remote_prefix)+1;
topic_temp = mosquitto__malloc(len+1);
2014-05-07 22:27:00 +00:00
if(!topic_temp){
mosquitto__free(mapped_topic);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_NOMEM;
}
snprintf(topic_temp, len, "%s%s", cur_topic->remote_prefix, mapped_topic);
2015-04-07 22:31:41 +00:00
topic_temp[len] = '\0';
mosquitto__free(mapped_topic);
2014-05-07 22:27:00 +00:00
mapped_topic = topic_temp;
}
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBLISH to %s (d%d, q%d, r%d, m%d, '%s', ... (%ld bytes))", mosq->id, dup, qos, retain, mid, mapped_topic, (long)payloadlen);
G_PUB_BYTES_SENT_INC(payloadlen);
2015-05-16 14:24:24 +00:00
rc = send__real_publish(mosq, mid, mapped_topic, payloadlen, payload, qos, retain, dup);
mosquitto__free(mapped_topic);
2014-05-07 22:27:00 +00:00
return rc;
}
}
}
}
#endif
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBLISH to %s (d%d, q%d, r%d, m%d, '%s', ... (%ld bytes))", mosq->id, dup, qos, retain, mid, topic, (long)payloadlen);
G_PUB_BYTES_SENT_INC(payloadlen);
2014-05-07 22:27:00 +00:00
#else
2015-05-18 07:53:21 +00:00
log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PUBLISH (d%d, q%d, r%d, m%d, '%s', ... (%ld bytes))", mosq->id, dup, qos, retain, mid, topic, (long)payloadlen);
2014-05-07 22:27:00 +00:00
#endif
2015-05-16 14:24:24 +00:00
return send__real_publish(mosq, mid, topic, payloadlen, payload, qos, retain, dup);
2014-05-07 22:27:00 +00:00
}
2015-05-16 14:24:24 +00:00
int send__pubrec(struct mosquitto *mosq, uint16_t mid)
2014-05-07 22:27:00 +00:00
{
#ifdef WITH_BROKER
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBREC to %s (Mid: %d)", mosq->id, mid);
2014-05-07 22:27:00 +00:00
#else
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PUBREC (Mid: %d)", mosq->id, mid);
2014-05-07 22:27:00 +00:00
#endif
2015-05-16 14:24:24 +00:00
return send__command_with_mid(mosq, PUBREC, mid, false);
2014-05-07 22:27:00 +00:00
}
2015-05-16 14:24:24 +00:00
int send__pubrel(struct mosquitto *mosq, uint16_t mid)
2014-05-07 22:27:00 +00:00
{
#ifdef WITH_BROKER
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(NULL, MOSQ_LOG_DEBUG, "Sending PUBREL to %s (Mid: %d)", mosq->id, mid);
2014-05-07 22:27:00 +00:00
#else
2015-05-18 07:53:21 +00:00
if(mosq) log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending PUBREL (Mid: %d)", mosq->id, mid);
2014-05-07 22:27:00 +00:00
#endif
2015-05-16 14:24:24 +00:00
return send__command_with_mid(mosq, PUBREL|2, mid, false);
2014-05-07 22:27:00 +00:00
}
/* For PUBACK, PUBCOMP, PUBREC, and PUBREL */
2015-05-16 14:24:24 +00:00
int send__command_with_mid(struct mosquitto *mosq, uint8_t command, uint16_t mid, bool dup)
2014-05-07 22:27:00 +00:00
{
struct mosquitto__packet *packet = NULL;
2014-05-07 22:27:00 +00:00
int rc;
assert(mosq);
packet = mosquitto__calloc(1, sizeof(struct mosquitto__packet));
2014-05-07 22:27:00 +00:00
if(!packet) return MOSQ_ERR_NOMEM;
packet->command = command;
if(dup){
packet->command |= 8;
}
packet->remaining_length = 2;
2015-05-16 13:16:40 +00:00
rc = packet__alloc(packet);
2014-05-07 22:27:00 +00:00
if(rc){
mosquitto__free(packet);
2014-05-07 22:27:00 +00:00
return rc;
}
packet->payload[packet->pos+0] = MOSQ_MSB(mid);
packet->payload[packet->pos+1] = MOSQ_LSB(mid);
2015-05-16 13:16:40 +00:00
return packet__queue(mosq, packet);
2014-05-07 22:27:00 +00:00
}
/* For DISCONNECT, PINGREQ and PINGRESP */
2015-05-16 14:24:24 +00:00
int send__simple_command(struct mosquitto *mosq, uint8_t command)
2014-05-07 22:27:00 +00:00
{
struct mosquitto__packet *packet = NULL;
2014-05-07 22:27:00 +00:00
int rc;
assert(mosq);
packet = mosquitto__calloc(1, sizeof(struct mosquitto__packet));
2014-05-07 22:27:00 +00:00
if(!packet) return MOSQ_ERR_NOMEM;
packet->command = command;
packet->remaining_length = 0;
2015-05-16 13:16:40 +00:00
rc = packet__alloc(packet);
2014-05-07 22:27:00 +00:00
if(rc){
mosquitto__free(packet);
2014-05-07 22:27:00 +00:00
return rc;
}
2015-05-16 13:16:40 +00:00
return packet__queue(mosq, packet);
2014-05-07 22:27:00 +00:00
}
2015-05-16 14:24:24 +00:00
int send__real_publish(struct mosquitto *mosq, uint16_t mid, const char *topic, uint32_t payloadlen, const void *payload, int qos, bool retain, bool dup)
2014-05-07 22:27:00 +00:00
{
struct mosquitto__packet *packet = NULL;
2014-05-07 22:27:00 +00:00
int packetlen;
int rc;
assert(mosq);
assert(topic);
packetlen = 2+strlen(topic) + payloadlen;
if(qos > 0) packetlen += 2; /* For message id */
packet = mosquitto__calloc(1, sizeof(struct mosquitto__packet));
2014-05-07 22:27:00 +00:00
if(!packet) return MOSQ_ERR_NOMEM;
packet->mid = mid;
packet->command = PUBLISH | ((dup&0x1)<<3) | (qos<<1) | retain;
packet->remaining_length = packetlen;
2015-05-16 13:16:40 +00:00
rc = packet__alloc(packet);
2014-05-07 22:27:00 +00:00
if(rc){
mosquitto__free(packet);
2014-05-07 22:27:00 +00:00
return rc;
}
/* Variable header (topic string) */
2015-05-16 13:16:40 +00:00
packet__write_string(packet, topic, strlen(topic));
2014-05-07 22:27:00 +00:00
if(qos > 0){
2015-05-16 13:16:40 +00:00
packet__write_uint16(packet, mid);
2014-05-07 22:27:00 +00:00
}
/* Payload */
if(payloadlen){
2015-05-16 13:16:40 +00:00
packet__write_bytes(packet, payload, payloadlen);
2014-05-07 22:27:00 +00:00
}
2015-05-16 13:16:40 +00:00
return packet__queue(mosq, packet);
2014-05-07 22:27:00 +00:00
}