mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-02-06 02:52:07 +08:00
This removes the remote chance that we may init but then not destroy, or destroy after not initing
358 lines
8.3 KiB
C
358 lines
8.3 KiB
C
/*
|
|
Copyright (c) 2010-2021 Roger Light <roger@atchoo.org>
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
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
|
|
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
|
|
|
|
Contributors:
|
|
Roger Light - initial implementation and documentation.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
#include <string.h>
|
|
#ifndef WIN32
|
|
#include <sys/time.h>
|
|
#include <strings.h>
|
|
#endif
|
|
|
|
#if defined(__APPLE__)
|
|
# include <mach/mach_time.h>
|
|
#endif
|
|
|
|
#include "logging_mosq.h"
|
|
#include "mosquitto.h"
|
|
#include "mosquitto_internal.h"
|
|
#include "messages_mosq.h"
|
|
#include "mosquitto/mqtt_protocol.h"
|
|
#include "net_mosq.h"
|
|
#include "packet_mosq.h"
|
|
#include "will_mosq.h"
|
|
|
|
static unsigned int init_refcount = 0;
|
|
|
|
void mosquitto__destroy(struct mosquitto *mosq);
|
|
|
|
|
|
int mosquitto_lib_version(int *major, int *minor, int *revision)
|
|
{
|
|
if(major){
|
|
*major = LIBMOSQUITTO_MAJOR;
|
|
}
|
|
if(minor){
|
|
*minor = LIBMOSQUITTO_MINOR;
|
|
}
|
|
if(revision){
|
|
*revision = LIBMOSQUITTO_REVISION;
|
|
}
|
|
return LIBMOSQUITTO_VERSION_NUMBER;
|
|
}
|
|
|
|
|
|
int mosquitto_lib_init(void)
|
|
{
|
|
int rc;
|
|
|
|
if(init_refcount == 0){
|
|
mosquitto_time_init();
|
|
|
|
rc = net__init();
|
|
if(rc != MOSQ_ERR_SUCCESS){
|
|
return rc;
|
|
}
|
|
}
|
|
|
|
init_refcount++;
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
|
|
int mosquitto_lib_cleanup(void)
|
|
{
|
|
if(init_refcount == 1){
|
|
net__cleanup();
|
|
}
|
|
|
|
if(init_refcount > 0){
|
|
--init_refcount;
|
|
}
|
|
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
|
|
static int alloc_packet_buffer(struct mosquitto *mosq)
|
|
{
|
|
mosq->in_packet.packet_buffer_size = 4096;
|
|
mosq->in_packet.packet_buffer = mosquitto_calloc(1, mosq->in_packet.packet_buffer_size);
|
|
return !mosq->in_packet.packet_buffer;
|
|
}
|
|
|
|
struct mosquitto *mosquitto_new(const char *id, bool clean_start, void *userdata)
|
|
{
|
|
struct mosquitto *mosq = NULL;
|
|
int rc;
|
|
|
|
if(clean_start == false && id == NULL){
|
|
errno = EINVAL;
|
|
return NULL;
|
|
}
|
|
|
|
mosq = (struct mosquitto *)mosquitto_calloc(1, sizeof(struct mosquitto));
|
|
if(mosq){
|
|
mosq->sock = INVALID_SOCKET;
|
|
#ifdef WITH_THREADING
|
|
# ifndef WIN32
|
|
/* Windows doesn't have pthread_cancel, so no need to record self */
|
|
mosq->thread_id = pthread_self();
|
|
# endif
|
|
#endif
|
|
mosq->sockpairR = INVALID_SOCKET;
|
|
mosq->sockpairW = INVALID_SOCKET;
|
|
rc = mosquitto_reinitialise(mosq, id, clean_start, userdata);
|
|
if(rc){
|
|
mosquitto_destroy(mosq);
|
|
if(rc == MOSQ_ERR_INVAL){
|
|
errno = EINVAL;
|
|
}else if(rc == MOSQ_ERR_NOMEM){
|
|
errno = ENOMEM;
|
|
}
|
|
return NULL;
|
|
}
|
|
}else{
|
|
errno = ENOMEM;
|
|
}
|
|
return mosq;
|
|
}
|
|
|
|
|
|
int mosquitto_reinitialise(struct mosquitto *mosq, const char *id, bool clean_start, void *userdata)
|
|
{
|
|
if(!mosq){
|
|
return MOSQ_ERR_INVAL;
|
|
}
|
|
|
|
if(clean_start == false && id == NULL){
|
|
return MOSQ_ERR_INVAL;
|
|
}
|
|
|
|
mosquitto__destroy(mosq);
|
|
memset(mosq, 0, sizeof(struct mosquitto));
|
|
|
|
#ifdef WITH_THREADING
|
|
COMPAT_pthread_mutex_init(&mosq->callback_mutex, NULL);
|
|
COMPAT_pthread_mutex_init(&mosq->log_callback_mutex, NULL);
|
|
COMPAT_pthread_mutex_init(&mosq->state_mutex, NULL);
|
|
COMPAT_pthread_mutex_init(&mosq->out_packet_mutex, NULL);
|
|
COMPAT_pthread_mutex_init(&mosq->msgtime_mutex, NULL);
|
|
COMPAT_pthread_mutex_init(&mosq->msgs_in.mutex, NULL);
|
|
COMPAT_pthread_mutex_init(&mosq->msgs_out.mutex, NULL);
|
|
COMPAT_pthread_mutex_init(&mosq->mid_mutex, NULL);
|
|
mosq->thread_id = pthread_self();
|
|
#endif
|
|
|
|
if(userdata){
|
|
mosq->userdata = userdata;
|
|
}else{
|
|
mosq->userdata = mosq;
|
|
}
|
|
#if defined(WITH_WEBSOCKETS) && WITH_WEBSOCKETS == WS_IS_BUILTIN
|
|
memset(&mosq->wsd, 0, sizeof(mosq->wsd));
|
|
mosq->wsd.opcode = UINT8_MAX;
|
|
mosq->wsd.mask = UINT8_MAX;
|
|
mosq->wsd.disconnect_reason = 0xE8;
|
|
mosq->wsd.is_client = true;
|
|
mosq->wsd.http_header_size = 4096;
|
|
#endif
|
|
if(alloc_packet_buffer(mosq)){
|
|
return MOSQ_ERR_NOMEM;
|
|
}
|
|
mosq->transport = mosq_t_tcp;
|
|
mosq->protocol = mosq_p_mqtt311;
|
|
mosq->sock = INVALID_SOCKET;
|
|
mosq->sockpairR = INVALID_SOCKET;
|
|
mosq->sockpairW = INVALID_SOCKET;
|
|
mosq->keepalive = 60;
|
|
mosq->clean_start = clean_start;
|
|
if(id){
|
|
if(STREMPTY(id)){
|
|
return MOSQ_ERR_INVAL;
|
|
}
|
|
if(mosquitto_validate_utf8(id, (int)strlen(id))){
|
|
return MOSQ_ERR_MALFORMED_UTF8;
|
|
}
|
|
mosq->id = mosquitto_strdup(id);
|
|
if(!mosq->id){
|
|
return MOSQ_ERR_NOMEM;
|
|
}
|
|
}
|
|
packet__cleanup(&mosq->in_packet);
|
|
mosq->out_packet = NULL;
|
|
mosq->out_packet_count = 0;
|
|
mosq->out_packet_bytes = 0;
|
|
mosq->last_msg_in = mosquitto_time();
|
|
mosq->next_msg_out = mosquitto_time() + mosq->keepalive;
|
|
mosq->ping_t = 0;
|
|
mosq->last_mid = 0;
|
|
mosq->state = mosq_cs_new;
|
|
mosq->max_qos = 2;
|
|
mosq->msgs_in.inflight_maximum = 20;
|
|
mosq->msgs_out.inflight_maximum = 20;
|
|
mosq->msgs_in.inflight_quota = 20;
|
|
mosq->msgs_out.inflight_quota = 20;
|
|
mosq->will = NULL;
|
|
mosq->on_connect = NULL;
|
|
mosq->on_publish = NULL;
|
|
mosq->on_message = NULL;
|
|
mosq->on_subscribe = NULL;
|
|
mosq->on_unsubscribe = NULL;
|
|
mosq->host = NULL;
|
|
mosq->port = 1883;
|
|
mosq->reconnect_delay = 1;
|
|
mosq->reconnect_delay_max = 1;
|
|
mosq->reconnect_exponential_backoff = false;
|
|
mosq->threaded = mosq_ts_none;
|
|
#ifdef WITH_TLS
|
|
mosq->ssl = NULL;
|
|
mosq->ssl_ctx = NULL;
|
|
mosq->ssl_ctx_defaults = true;
|
|
#ifndef WITH_BROKER
|
|
mosq->user_ssl_ctx = NULL;
|
|
#endif
|
|
mosq->tls_cert_reqs = SSL_VERIFY_PEER;
|
|
mosq->tls_insecure = false;
|
|
mosq->want_write = false;
|
|
mosq->tls_ocsp_required = false;
|
|
#endif
|
|
if(mosq->disable_socketpair == false){
|
|
/* This must be after pthread_mutex_init(), otherwise the log mutex may be
|
|
* used before being initialised. */
|
|
if(net__socketpair(&mosq->sockpairR, &mosq->sockpairW)){
|
|
log__printf(mosq, MOSQ_LOG_WARNING,
|
|
"Warning: Unable to open socket pair, outgoing publish commands may be delayed.");
|
|
}
|
|
}
|
|
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
|
|
void mosquitto__destroy(struct mosquitto *mosq)
|
|
{
|
|
if(!mosq){
|
|
return;
|
|
}
|
|
|
|
#ifdef WITH_THREADING
|
|
# ifdef HAVE_PTHREAD_CANCEL
|
|
if(mosq->threaded == mosq_ts_self && !pthread_equal(mosq->thread_id, pthread_self())){
|
|
COMPAT_pthread_cancel(mosq->thread_id);
|
|
COMPAT_pthread_join(mosq->thread_id, NULL);
|
|
mosq->threaded = mosq_ts_none;
|
|
}
|
|
# endif
|
|
|
|
COMPAT_pthread_mutex_destroy(&mosq->callback_mutex);
|
|
COMPAT_pthread_mutex_destroy(&mosq->log_callback_mutex);
|
|
COMPAT_pthread_mutex_destroy(&mosq->state_mutex);
|
|
COMPAT_pthread_mutex_destroy(&mosq->out_packet_mutex);
|
|
COMPAT_pthread_mutex_destroy(&mosq->msgtime_mutex);
|
|
COMPAT_pthread_mutex_destroy(&mosq->msgs_in.mutex);
|
|
COMPAT_pthread_mutex_destroy(&mosq->msgs_out.mutex);
|
|
COMPAT_pthread_mutex_destroy(&mosq->mid_mutex);
|
|
#endif
|
|
if(net__is_connected(mosq)){
|
|
net__socket_close(mosq);
|
|
}
|
|
message__cleanup_all(mosq);
|
|
will__clear(mosq);
|
|
#ifdef WITH_TLS
|
|
if(mosq->ssl){
|
|
SSL_free(mosq->ssl);
|
|
}
|
|
#ifndef WITH_BROKER
|
|
if(mosq->user_ssl_ctx){
|
|
SSL_CTX_free(mosq->user_ssl_ctx);
|
|
}else if(mosq->ssl_ctx){
|
|
SSL_CTX_free(mosq->ssl_ctx);
|
|
}
|
|
#else
|
|
if(mosq->ssl_ctx){
|
|
SSL_CTX_free(mosq->ssl_ctx);
|
|
}
|
|
#endif
|
|
mosquitto_FREE(mosq->tls_cafile);
|
|
mosquitto_FREE(mosq->tls_capath);
|
|
mosquitto_FREE(mosq->tls_certfile);
|
|
mosquitto_FREE(mosq->tls_keyfile);
|
|
mosq->tls_pw_callback = NULL;
|
|
mosquitto_FREE(mosq->tls_version);
|
|
mosquitto_FREE(mosq->tls_ciphers);
|
|
mosquitto_FREE(mosq->tls_psk);
|
|
mosquitto_FREE(mosq->tls_psk_identity);
|
|
mosquitto_FREE(mosq->tls_alpn);
|
|
#ifndef OPENSSL_NO_ENGINE
|
|
mosquitto_FREE(mosq->tls_engine);
|
|
#endif
|
|
#endif
|
|
|
|
mosquitto_FREE(mosq->address);
|
|
mosquitto_FREE(mosq->id);
|
|
mosquitto_FREE(mosq->username);
|
|
mosquitto_FREE(mosq->password);
|
|
mosquitto_FREE(mosq->host);
|
|
mosquitto_FREE(mosq->bind_address);
|
|
mosquitto_FREE(mosq->in_packet.packet_buffer);
|
|
mosq->in_packet.packet_buffer_size = 4096;
|
|
|
|
mosquitto_property_free_all(&mosq->connect_properties);
|
|
|
|
packet__cleanup_all_no_locks(mosq);
|
|
|
|
packet__cleanup(&mosq->in_packet);
|
|
if(mosq->sockpairR != INVALID_SOCKET){
|
|
COMPAT_CLOSE(mosq->sockpairR);
|
|
mosq->sockpairR = INVALID_SOCKET;
|
|
}
|
|
if(mosq->sockpairW != INVALID_SOCKET){
|
|
COMPAT_CLOSE(mosq->sockpairW);
|
|
mosq->sockpairW = INVALID_SOCKET;
|
|
}
|
|
}
|
|
|
|
|
|
void mosquitto_destroy(struct mosquitto *mosq)
|
|
{
|
|
if(!mosq){
|
|
return;
|
|
}
|
|
|
|
mosquitto__destroy(mosq);
|
|
mosquitto_FREE(mosq);
|
|
}
|
|
|
|
|
|
int mosquitto_socket(struct mosquitto *mosq)
|
|
{
|
|
if(!mosq){
|
|
return INVALID_SOCKET;
|
|
}
|
|
return mosq->sock;
|
|
}
|
|
|
|
|
|
bool mosquitto_want_write(struct mosquitto *mosq)
|
|
{
|
|
return mosq->out_packet || mosq->want_write;
|
|
}
|