mosquitto/lib/send_subscribe.c

103 lines
2.6 KiB
C
Raw Normal View History

/*
Copyright (c) 2009-2020 Roger Light <roger@atchoo.org>
All rights reserved. This program and the accompanying materials
2020-11-25 17:34:21 +00:00
are made available under the terms of the Eclipse Public License 2.0
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
2020-11-25 17:34:21 +00:00
https://www.eclipse.org/legal/epl-2.0/
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
2020-12-01 18:21:59 +00:00
Contributors:
Roger Light - initial implementation and documentation.
*/
#include "config.h"
#include <assert.h>
2018-02-24 11:15:09 +00:00
#include <string.h>
2018-04-16 10:48:42 +00:00
#ifdef WITH_BROKER
# include "mosquitto_broker_internal.h"
#endif
#include "mosquitto.h"
#include "mosquitto_internal.h"
#include "logging_mosq.h"
#include "memory_mosq.h"
#include "mqtt_protocol.h"
#include "packet_mosq.h"
#include "property_mosq.h"
2021-03-21 09:17:53 +00:00
#include "send_mosq.h"
#include "util_mosq.h"
2021-03-21 09:17:53 +00:00
int send__subscribe(struct mosquitto *mosq, int *mid, int topic_count, char *const *const topic, int topic_qos, const mosquitto_property *properties)
{
struct mosquitto__packet *packet = NULL;
uint32_t packetlen;
uint16_t local_mid;
int rc;
2018-09-27 21:05:15 +00:00
int i;
2020-10-17 00:23:08 +00:00
size_t tlen;
assert(mosq);
assert(topic);
2018-09-27 21:05:15 +00:00
packetlen = 2;
if(mosq->protocol == mosq_p_mqtt5){
packetlen += property__get_remaining_length(properties);
}
2018-09-27 21:05:15 +00:00
for(i=0; i<topic_count; i++){
2020-10-17 00:23:08 +00:00
tlen = strlen(topic[i]);
if(tlen > UINT16_MAX){
return MOSQ_ERR_INVAL;
}
packetlen += 2U+(uint16_t)tlen + 1U;
2018-09-27 21:05:15 +00:00
}
2020-10-17 00:23:08 +00:00
packet = mosquitto__calloc(1, sizeof(struct mosquitto__packet));
if(!packet) return MOSQ_ERR_NOMEM;
packet->command = CMD_SUBSCRIBE | (1<<1);
packet->remaining_length = packetlen;
rc = packet__alloc(packet);
if(rc){
mosquitto__free(packet);
return rc;
}
/* Variable header */
local_mid = mosquitto__mid_generate(mosq);
if(mid) *mid = (int)local_mid;
packet__write_uint16(packet, local_mid);
if(mosq->protocol == mosq_p_mqtt5){
2018-12-20 15:32:43 +00:00
property__write_all(packet, properties, true);
}
/* Payload */
2018-09-27 21:05:15 +00:00
for(i=0; i<topic_count; i++){
2020-10-17 00:23:08 +00:00
packet__write_string(packet, topic[i], (uint16_t)strlen(topic[i]));
packet__write_byte(packet, (uint8_t)topic_qos);
2018-09-27 21:05:15 +00:00
}
#ifdef WITH_BROKER
# ifdef WITH_BRIDGE
log__printf(mosq, MOSQ_LOG_DEBUG, "Bridge %s sending SUBSCRIBE (Mid: %d, Topic: %s, QoS: %d, Options: 0x%02x)", SAFE_PRINT(mosq->id), local_mid, topic[0], topic_qos&0x03, topic_qos&0xFC);
# endif
#else
2018-09-27 21:05:15 +00:00
for(i=0; i<topic_count; i++){
log__printf(mosq, MOSQ_LOG_DEBUG, "Client %s sending SUBSCRIBE (Mid: %d, Topic: %s, QoS: %d, Options: 0x%02x)", SAFE_PRINT(mosq->id), local_mid, topic[i], topic_qos&0x03, topic_qos&0xFC);
2018-09-27 21:05:15 +00:00
}
#endif
return packet__queue(mosq, packet);
}