mosquitto/lib/handle_unsuback.c

88 lines
2.2 KiB
C
Raw Normal View History

2014-05-07 22:27:00 +00:00
/*
Copyright (c) 2009-2019 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.
2014-05-07 22:27:00 +00:00
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.
2014-05-07 22:27:00 +00:00
Contributors:
Roger Light - initial implementation and documentation.
*/
#include "config.h"
2014-05-07 22:27:00 +00:00
#include <assert.h>
#include <stdio.h>
#include <string.h>
2014-05-07 22:27:00 +00:00
2018-04-16 10:48:42 +00:00
#ifdef WITH_BROKER
# include "mosquitto_broker_internal.h"
#endif
2015-04-29 20:37:47 +00:00
#include "mosquitto.h"
#include "logging_mosq.h"
#include "memory_mosq.h"
#include "messages_mosq.h"
#include "mqtt_protocol.h"
2015-04-29 20:37:47 +00:00
#include "net_mosq.h"
#include "packet_mosq.h"
2018-10-25 11:03:22 +00:00
#include "property_mosq.h"
2015-04-29 20:37:47 +00:00
#include "read_handle.h"
#include "send_mosq.h"
#include "util_mosq.h"
2014-05-07 22:27:00 +00:00
int handle__unsuback(struct mosquitto *mosq)
2014-05-07 22:27:00 +00:00
{
uint16_t mid;
2014-05-07 22:27:00 +00:00
int rc;
mosquitto_property *properties = NULL;
2014-05-07 22:27:00 +00:00
assert(mosq);
if(mosq->state != mosq_cs_connected){
return MOSQ_ERR_PROTOCOL;
}
#ifdef WITH_BROKER
log__printf(NULL, MOSQ_LOG_DEBUG, "Received UNSUBACK from %s", mosq->id);
#else
log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s received UNSUBACK", mosq->id);
#endif
rc = packet__read_uint16(&mosq->in_packet, &mid);
2014-05-07 22:27:00 +00:00
if(rc) return rc;
2018-10-25 11:12:57 +00:00
if(mid == 0) return MOSQ_ERR_PROTOCOL;
2018-10-25 11:03:22 +00:00
if(mosq->protocol == mosq_p_mqtt5){
rc = property__read_all(CMD_UNSUBACK, &mosq->in_packet, &properties);
2018-10-25 11:03:22 +00:00
if(rc) return rc;
}
2018-11-20 14:36:18 +00:00
#ifdef WITH_BROKER
/* Immediately free, we don't do anything with Reason String or User Property at the moment */
mosquitto_property_free_all(&properties);
#else
2014-05-07 22:27:00 +00:00
pthread_mutex_lock(&mosq->callback_mutex);
if(mosq->on_unsubscribe){
2014-05-07 22:27:00 +00:00
mosq->in_callback = true;
mosq->on_unsubscribe(mosq, mosq->userdata, mid);
2014-05-07 22:27:00 +00:00
mosq->in_callback = false;
}
2018-11-20 14:36:18 +00:00
if(mosq->on_unsubscribe_v5){
mosq->in_callback = true;
mosq->on_unsubscribe_v5(mosq, mosq->userdata, mid, properties);
mosq->in_callback = false;
}
2014-05-07 22:27:00 +00:00
pthread_mutex_unlock(&mosq->callback_mutex);
2018-11-20 14:36:18 +00:00
mosquitto_property_free_all(&properties);
#endif
return MOSQ_ERR_SUCCESS;
2014-05-07 22:27:00 +00:00
}