mosquitto/src/read_handle.c

280 lines
7.7 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 "config.h"
2014-05-07 22:27:00 +00:00
2015-04-29 20:37:47 +00:00
#include "mosquitto_broker.h"
#include "mqtt3_protocol.h"
#include "memory_mosq.h"
#include "packet_mosq.h"
#include "read_handle.h"
#include "send_mosq.h"
#include "sys_tree.h"
2015-04-29 20:37:47 +00:00
#include "util_mosq.h"
2014-05-07 22:27:00 +00:00
int mqtt3_packet_handle(struct mosquitto_db *db, struct mosquitto *context)
{
if(!context) return MOSQ_ERR_INVAL;
switch((context->in_packet.command)&0xF0){
case PINGREQ:
return mosquitto__handle_pingreq(context);
2014-05-07 22:27:00 +00:00
case PINGRESP:
return mosquitto__handle_pingresp(context);
2014-05-07 22:27:00 +00:00
case PUBACK:
return mosquitto__handle_pubackcomp(db, context, "PUBACK");
2014-05-07 22:27:00 +00:00
case PUBCOMP:
return mosquitto__handle_pubackcomp(db, context, "PUBCOMP");
2014-05-07 22:27:00 +00:00
case PUBLISH:
return mqtt3_handle_publish(db, context);
case PUBREC:
return mosquitto__handle_pubrec(context);
2014-05-07 22:27:00 +00:00
case PUBREL:
return mosquitto__handle_pubrel(db, context);
2014-05-07 22:27:00 +00:00
case CONNECT:
return mqtt3_handle_connect(db, context);
case DISCONNECT:
return mqtt3_handle_disconnect(db, context);
case SUBSCRIBE:
return mqtt3_handle_subscribe(db, context);
case UNSUBSCRIBE:
return mqtt3_handle_unsubscribe(db, context);
#ifdef WITH_BRIDGE
case CONNACK:
return mqtt3_handle_connack(db, context);
case SUBACK:
return mosquitto__handle_suback(context);
2014-05-07 22:27:00 +00:00
case UNSUBACK:
return mosquitto__handle_unsuback(context);
2014-05-07 22:27:00 +00:00
#endif
default:
/* If we don't recognise the command, return an error straight away. */
return MOSQ_ERR_PROTOCOL;
}
}
int mqtt3_handle_publish(struct mosquitto_db *db, struct mosquitto *context)
{
char *topic;
void *payload = NULL;
uint32_t payloadlen;
uint8_t dup, qos, retain;
uint16_t mid = 0;
int rc = 0;
uint8_t header = context->in_packet.command;
int res = 0;
struct mosquitto_msg_store *stored = NULL;
int len;
char *topic_mount;
#ifdef WITH_BRIDGE
char *topic_temp;
int i;
struct mqtt3__bridge_topic *cur_topic;
2014-05-07 22:27:00 +00:00
bool match;
#endif
dup = (header & 0x08)>>3;
qos = (header & 0x06)>>1;
if(qos == 3){
mosquitto__log_printf(NULL, MOSQ_LOG_INFO,
2014-05-07 22:27:00 +00:00
"Invalid QoS in PUBLISH from %s, disconnecting.", context->id);
return 1;
}
retain = (header & 0x01);
2015-05-16 13:16:40 +00:00
if(packet__read_string(&context->in_packet, &topic)) return 1;
2014-05-07 22:27:00 +00:00
if(strlen(topic) == 0){
/* Invalid publish topic, disconnect client. */
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
return 1;
}
#ifdef WITH_BRIDGE
if(context->bridge && context->bridge->topics && context->bridge->topic_remapping){
for(i=0; i<context->bridge->topic_count; i++){
cur_topic = &context->bridge->topics[i];
if((cur_topic->direction == bd_both || cur_topic->direction == bd_in)
&& (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->remote_topic, topic, &match);
if(rc){
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
return rc;
}
if(match){
if(cur_topic->remote_prefix){
/* This prefix needs removing. */
if(!strncmp(cur_topic->remote_prefix, topic, strlen(cur_topic->remote_prefix))){
topic_temp = mosquitto__strdup(topic+strlen(cur_topic->remote_prefix));
2014-05-07 22:27:00 +00:00
if(!topic_temp){
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_NOMEM;
}
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
topic = topic_temp;
}
}
if(cur_topic->local_prefix){
/* This prefix needs adding. */
len = strlen(topic) + strlen(cur_topic->local_prefix)+1;
topic_temp = mosquitto__malloc(len+1);
2014-05-07 22:27:00 +00:00
if(!topic_temp){
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_NOMEM;
}
snprintf(topic_temp, len, "%s%s", cur_topic->local_prefix, topic);
2014-11-17 21:58:53 +00:00
topic_temp[len] = '\0';
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
topic = topic_temp;
}
break;
}
}
}
}
#endif
if(mosquitto_pub_topic_check(topic) != MOSQ_ERR_SUCCESS){
2014-05-07 22:27:00 +00:00
/* Invalid publish topic, just swallow it. */
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
return 1;
}
if(qos > 0){
2015-05-16 13:16:40 +00:00
if(packet__read_uint16(&context->in_packet, &mid)){
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
return 1;
}
}
payloadlen = context->in_packet.remaining_length - context->in_packet.pos;
G_PUB_BYTES_RECEIVED_INC(payloadlen);
2014-05-07 22:27:00 +00:00
if(context->listener && context->listener->mount_point){
len = strlen(context->listener->mount_point) + strlen(topic) + 1;
topic_mount = mosquitto__malloc(len+1);
2014-05-07 22:27:00 +00:00
if(!topic_mount){
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_NOMEM;
}
snprintf(topic_mount, len, "%s%s", context->listener->mount_point, topic);
2014-11-17 21:58:53 +00:00
topic_mount[len] = '\0';
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
topic = topic_mount;
}
if(payloadlen){
if(db->config->message_size_limit && payloadlen > db->config->message_size_limit){
mosquitto__log_printf(NULL, MOSQ_LOG_DEBUG, "Dropped too large PUBLISH from %s (d%d, q%d, r%d, m%d, '%s', ... (%ld bytes))", context->id, dup, qos, retain, mid, topic, (long)payloadlen);
2014-05-07 22:27:00 +00:00
goto process_bad_message;
}
payload = mosquitto__calloc(payloadlen+1, 1);
2014-05-07 22:27:00 +00:00
if(!payload){
mosquitto__free(topic);
2014-05-07 22:27:00 +00:00
return 1;
}
2015-05-16 13:16:40 +00:00
if(packet__read_bytes(&context->in_packet, payload, payloadlen)){
mosquitto__free(topic);
mosquitto__free(payload);
2014-05-07 22:27:00 +00:00
return 1;
}
}
/* Check for topic access */
rc = mosquitto_acl_check(db, context, topic, MOSQ_ACL_WRITE);
if(rc == MOSQ_ERR_ACL_DENIED){
mosquitto__log_printf(NULL, MOSQ_LOG_DEBUG, "Denied PUBLISH from %s (d%d, q%d, r%d, m%d, '%s', ... (%ld bytes))", context->id, dup, qos, retain, mid, topic, (long)payloadlen);
2014-05-07 22:27:00 +00:00
goto process_bad_message;
}else if(rc != MOSQ_ERR_SUCCESS){
mosquitto__free(topic);
if(payload) mosquitto__free(payload);
2014-05-07 22:27:00 +00:00
return rc;
}
mosquitto__log_printf(NULL, MOSQ_LOG_DEBUG, "Received PUBLISH from %s (d%d, q%d, r%d, m%d, '%s', ... (%ld bytes))", context->id, dup, qos, retain, mid, topic, (long)payloadlen);
2014-05-07 22:27:00 +00:00
if(qos > 0){
2015-05-16 14:24:24 +00:00
db__message_store_find(context, mid, &stored);
2014-05-07 22:27:00 +00:00
}
if(!stored){
dup = 0;
2015-05-16 14:24:24 +00:00
if(db__message_store(db, context->id, mid, topic, qos, payloadlen, payload, retain, &stored, 0)){
mosquitto__free(topic);
if(payload) mosquitto__free(payload);
2014-05-07 22:27:00 +00:00
return 1;
}
}else{
dup = 1;
}
switch(qos){
case 0:
if(mqtt3_db_messages_queue(db, context->id, topic, qos, retain, &stored)) rc = 1;
2014-05-07 22:27:00 +00:00
break;
case 1:
if(mqtt3_db_messages_queue(db, context->id, topic, qos, retain, &stored)) rc = 1;
2015-05-16 14:24:24 +00:00
if(send__puback(context, mid)) rc = 1;
2014-05-07 22:27:00 +00:00
break;
case 2:
if(!dup){
2015-05-16 14:24:24 +00:00
res = db__message_insert(db, context, mid, mosq_md_in, qos, retain, stored);
2014-05-07 22:27:00 +00:00
}else{
res = 0;
}
2015-05-16 14:24:24 +00:00
/* db__message_insert() returns 2 to indicate dropped message
2014-05-07 22:27:00 +00:00
* due to queue. This isn't an error so don't disconnect them. */
if(!res){
2015-05-16 14:24:24 +00:00
if(send__pubrec(context, mid)) rc = 1;
2014-05-07 22:27:00 +00:00
}else if(res == 1){
rc = 1;
}
break;
}
mosquitto__free(topic);
if(payload) mosquitto__free(payload);
2014-05-07 22:27:00 +00:00
return rc;
process_bad_message:
mosquitto__free(topic);
if(payload) mosquitto__free(payload);
2014-05-07 22:27:00 +00:00
switch(qos){
case 0:
return MOSQ_ERR_SUCCESS;
case 1:
2015-05-16 14:24:24 +00:00
return send__puback(context, mid);
2014-05-07 22:27:00 +00:00
case 2:
2015-05-16 14:24:24 +00:00
db__message_store_find(context, mid, &stored);
2014-05-07 22:27:00 +00:00
if(!stored){
2015-05-16 14:24:24 +00:00
if(db__message_store(db, context->id, mid, NULL, qos, 0, NULL, false, &stored, 0)){
2014-05-07 22:27:00 +00:00
return 1;
}
2015-05-16 14:24:24 +00:00
res = db__message_insert(db, context, mid, mosq_md_in, qos, false, stored);
2014-05-07 22:27:00 +00:00
}else{
res = 0;
}
if(!res){
2015-05-16 14:24:24 +00:00
res = send__pubrec(context, mid);
2014-05-07 22:27:00 +00:00
}
return res;
}
return 1;
}