mosquitto/lib/mosquitto_internal.h

488 lines
11 KiB
C
Raw Normal View History

2014-05-08 00:27:00 +02:00
/*
2021-11-03 23:08:24 +01:00
Copyright (c) 2010-2021 Roger Light <roger@atchoo.org>
2014-05-08 00:27:00 +02:00
All rights reserved. This program and the accompanying materials
2020-11-25 18:34:21 +01:00
are made available under the terms of the Eclipse Public License 2.0
2014-05-08 00:27:00 +02:00
and Eclipse Distribution License v1.0 which accompany this distribution.
2021-10-05 16:20:37 +02:00
2014-05-08 00:27:00 +02:00
The Eclipse Public License is available at
2020-11-25 18:34:21 +01:00
https://www.eclipse.org/legal/epl-2.0/
2014-05-08 00:27:00 +02:00
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
2021-10-05 16:20:37 +02:00
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
2020-12-01 19:21:59 +01:00
2014-05-08 00:27:00 +02:00
Contributors:
Roger Light - initial implementation and documentation.
Tatsuzo Osawa - Add epoll.
2014-05-08 00:27:00 +02:00
*/
#ifndef MOSQUITTO_INTERNAL_H
#define MOSQUITTO_INTERNAL_H
2014-05-08 00:27:00 +02:00
2015-04-29 22:37:47 +02:00
#include "config.h"
2014-05-08 00:27:00 +02:00
#ifdef WIN32
# include <winsock2.h>
#endif
#ifdef WITH_TLS
# include <openssl/ssl.h>
#else
# include <time.h>
2014-05-08 00:27:00 +02:00
#endif
#include <stdlib.h>
2024-10-12 18:00:40 +02:00
#include <pthread_compat.h>
2014-05-08 00:27:00 +02:00
#ifdef WITH_SRV
# include <ares.h>
#endif
#ifdef WIN32
2025-09-17 12:06:50 +02:00
# if _MSC_VER < 1600
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
# else
# include <stdint.h>
# endif
2014-05-08 00:27:00 +02:00
#else
2025-09-17 12:06:50 +02:00
# include <stdint.h>
2014-05-08 00:27:00 +02:00
#endif
#include "mosquitto.h"
#include "mosquitto/libcommon_time.h"
2014-05-08 00:27:00 +02:00
#ifdef WITH_BROKER
2017-02-06 23:39:39 +01:00
# ifdef __linux__
# include <netdb.h>
# endif
# include "uthash.h"
struct mosquitto__client_msg;
2014-05-08 00:27:00 +02:00
#endif
#if defined(WITH_WEBSOCKETS) && WITH_WEBSOCKETS == WS_IS_LWS
2024-11-20 15:30:11 +01:00
# include <libwebsockets.h>
# define WS_PACKET_OFFSET LWS_PRE
#else
# define WS_PACKET_OFFSET 16
#endif
#ifdef WIN32
typedef SOCKET mosq_sock_t;
#else
typedef int mosq_sock_t;
#endif
2025-07-25 20:10:28 +02:00
#ifdef WIN32
# define WINDOWS_SET_ERRNO() \
do{ \
errno = WSAGetLastError(); \
}while(0)
# define WINDOWS_SET_ERRNO_RW() \
2025-09-17 12:06:50 +02:00
if(errno != EAGAIN){ \
errno = WSAGetLastError(); \
}
2025-07-25 20:10:28 +02:00
#else
# define WINDOWS_SET_ERRNO()
# define WINDOWS_SET_ERRNO_RW()
2025-07-25 20:10:28 +02:00
#endif
#define SAFE_PRINT(A) (A)?(A):"null"
2025-09-17 12:06:50 +02:00
#define SAFE_FREE(A) do{ free(A); (A) = NULL;}while(0)
2024-03-18 16:29:40 +01:00
#define MSG_EXPIRY_INFINITE UINT32_MAX
2014-05-08 00:27:00 +02:00
enum mosquitto_msg_direction {
mosq_md_in = 0,
2025-09-17 12:06:50 +02:00
mosq_md_out = 1,
2014-05-08 00:27:00 +02:00
};
enum mosquitto_msg_state {
mosq_ms_invalid = 0,
mosq_ms_publish_qos0 = 1,
mosq_ms_publish_qos1 = 2,
mosq_ms_wait_for_puback = 3,
mosq_ms_publish_qos2 = 4,
mosq_ms_wait_for_pubrec = 5,
mosq_ms_resend_pubrel = 6,
mosq_ms_wait_for_pubrel = 7,
mosq_ms_resend_pubcomp = 8,
mosq_ms_wait_for_pubcomp = 9,
mosq_ms_send_pubrec = 10,
2025-09-17 12:06:50 +02:00
mosq_ms_queued = 11,
2026-01-21 17:58:42 +01:00
mosq_ms_any = 255,
/* max value allowed is 255 */
2014-05-08 00:27:00 +02:00
};
enum mosquitto_client_state {
mosq_cs_new = 0,
mosq_cs_connected = 1,
mosq_cs_disconnecting = 2,
mosq_cs_active = 3,
2014-05-08 00:27:00 +02:00
mosq_cs_connect_pending = 4,
2014-06-30 00:16:10 +02:00
mosq_cs_connect_srv = 5,
2014-07-09 00:16:34 +02:00
mosq_cs_disconnect_ws = 6,
mosq_cs_disconnected = 7,
mosq_cs_socks5_new = 8,
mosq_cs_socks5_start = 9,
mosq_cs_socks5_request = 10,
mosq_cs_socks5_reply = 11,
mosq_cs_socks5_auth_ok = 12,
mosq_cs_socks5_userpass_reply = 13,
mosq_cs_socks5_send_userpass = 14,
mosq_cs_expiring = 15,
mosq_cs_duplicate = 17, /* client that has been taken over by another with the same id */
2019-02-27 10:22:00 +01:00
mosq_cs_disconnect_with_will = 18,
2019-03-12 23:47:48 +01:00
mosq_cs_disused = 19, /* client that has been added to the disused list to be freed */
mosq_cs_authenticating = 20, /* Client has sent CONNECT but is still undergoing extended authentication */
mosq_cs_reauthenticating = 21, /* Client is undergoing reauthentication and shouldn't do anything else until complete */
2021-03-25 16:16:39 +01:00
mosq_cs_delayed_auth = 22, /* Client is awaiting an authentication result from a plugin */
2014-05-08 00:27:00 +02:00
};
enum mosquitto__protocol {
2014-05-08 00:27:00 +02:00
mosq_p_invalid = 0,
mosq_p_mqtts = 1,
mosq_p_mqtt31 = 3,
mosq_p_mqtt311 = 4,
mosq_p_mqtt5 = 5,
2014-05-08 00:27:00 +02:00
};
enum mosquitto__threaded_state {
2025-09-17 12:06:50 +02:00
mosq_ts_none, /* No threads in use */
mosq_ts_self, /* Threads started by libmosquitto */
mosq_ts_external, /* Threads started by external code */
};
enum mosquitto__transport {
2014-05-08 00:27:00 +02:00
mosq_t_invalid = 0,
mosq_t_tcp = 1,
mosq_t_ws = 2,
mosq_t_sctp = 3,
mosq_t_http = 4, /* not valid for MQTT, just as a ws precursor */
2024-04-10 12:58:02 +02:00
mosq_t_proxy_v2 = 5, /* not valid for MQTT, just as a PROXY protocol v2 precursor */
2024-08-17 10:08:11 +02:00
mosq_t_proxy_v1 = 6, /* not valid for MQTT, just as a PROXY protocol v1 precursor */
2014-05-08 00:27:00 +02:00
};
/* Alias direction - local <-> remote */
#define ALIAS_DIR_L2R 1
#define ALIAS_DIR_R2L 2
2019-01-18 22:30:34 +01:00
2025-09-17 12:06:50 +02:00
struct mosquitto__alias {
2019-01-18 22:30:34 +01:00
char *topic;
uint16_t alias;
};
struct session_expiry_list {
struct mosquitto *context;
struct session_expiry_list *prev;
struct session_expiry_list *next;
};
2025-09-17 12:06:50 +02:00
struct mosquitto__packet {
struct mosquitto__packet *next;
2014-05-08 00:27:00 +02:00
uint32_t remaining_length;
uint32_t packet_length;
uint32_t to_process;
uint32_t pos;
uint16_t mid;
uint8_t command;
int8_t remaining_count;
uint8_t payload[];
};
2025-09-17 12:06:50 +02:00
struct mosquitto__packet_in {
uint8_t *payload;
uint32_t remaining_mult;
uint32_t remaining_length;
uint32_t packet_length;
uint32_t to_process;
uint32_t pos;
uint16_t packet_buffer_to_process;
uint16_t packet_buffer_pos;
uint16_t packet_buffer_size;
uint8_t command;
uint8_t *packet_buffer;
int8_t remaining_count;
2014-05-08 00:27:00 +02:00
};
2025-09-17 12:06:50 +02:00
struct mosquitto_message_all {
2014-05-08 00:27:00 +02:00
struct mosquitto_message_all *next;
struct mosquitto_message_all *prev;
mosquitto_property *properties;
2014-05-08 00:27:00 +02:00
enum mosquitto_msg_state state;
bool dup;
struct mosquitto_message msg;
uint32_t expiry_interval;
2014-05-08 00:27:00 +02:00
};
#ifdef WITH_TLS
2019-02-26 18:11:29 +01:00
enum mosquitto__keyform {
mosq_k_pem = 0,
mosq_k_engine = 1,
};
#endif
struct will_delay_list {
struct mosquitto *context;
struct will_delay_list *prev;
struct will_delay_list *next;
};
2025-09-17 12:06:50 +02:00
struct mosquitto_msg_data {
#ifdef WITH_BROKER
struct mosquitto__client_msg *inflight;
struct mosquitto__client_msg *queued;
long inflight_bytes;
long inflight_bytes12;
int inflight_count;
int inflight_count12;
long queued_bytes;
long queued_bytes12;
int queued_count;
int queued_count12;
#else
struct mosquitto_message_all *inflight;
int queue_len;
# ifdef WITH_THREADING
pthread_mutex_t mutex;
# endif
#endif
int inflight_quota;
uint16_t inflight_maximum;
};
#define WS_CONTINUATION 0x00
#define WS_TEXT 0x01
#define WS_BINARY 0x02
#define WS_CLOSE 0x08
#define WS_PING 0x09
#define WS_PONG 0x0A
#if defined(WITH_WEBSOCKETS) && WITH_WEBSOCKETS == WS_IS_BUILTIN
2025-09-17 12:06:50 +02:00
struct ws_data {
struct mosquitto__packet *out_packet;
char *http_path;
char *accept_key;
uint64_t payloadlen;
ssize_t pos;
int http_header_size;
uint8_t maskingkey[4];
uint8_t disconnect_reason;
uint8_t opcode;
uint8_t mask;
uint8_t mask_bytes;
uint8_t payloadlen_bytes;
bool is_client;
};
#endif
2025-09-17 12:06:50 +02:00
struct proxy_data {
2024-04-10 12:58:02 +02:00
uint8_t *buf;
char *cipher;
char *tls_version;
uint16_t len;
uint16_t pos;
int8_t cmd;
uint8_t fam;
bool have_tls;
};
2025-09-17 12:06:50 +02:00
struct client_stats {
2021-11-18 12:15:51 +01:00
uint64_t messages_received;
uint64_t messages_sent;
uint64_t messages_dropped;
};
2014-05-08 00:27:00 +02:00
struct mosquitto {
2021-03-09 11:03:27 +01:00
#if defined(WITH_BROKER) && (defined(WITH_EPOLL) || defined(WITH_KQUEUE))
/* This *must* be the first element in the struct. */
int ident;
#endif
mosq_sock_t sock;
#ifndef WITH_BROKER
mosq_sock_t sockpairR, sockpairW;
2017-02-06 23:39:39 +01:00
#endif
2020-12-10 13:52:11 +01:00
uint32_t maximum_packet_size;
#if defined(__GLIBC__) && defined(WITH_ADNS)
2017-02-06 23:39:39 +01:00
struct gaicb *adns; /* For getaddrinfo_a */
#endif
uint64_t last_cmsg_id;
#if defined(WITH_WEBSOCKETS) && WITH_WEBSOCKETS == WS_IS_BUILTIN
struct ws_data wsd;
2014-05-08 00:27:00 +02:00
#endif
enum mosquitto__protocol protocol;
2014-05-08 00:27:00 +02:00
char *address;
char *id;
char *username;
char *password;
unsigned id_hashv;
2014-05-08 00:27:00 +02:00
uint16_t keepalive;
2015-02-13 22:17:11 +01:00
uint16_t last_mid;
uint16_t password_len;
2014-05-08 00:27:00 +02:00
enum mosquitto_client_state state;
uint8_t transport;
2014-05-08 00:27:00 +02:00
time_t last_msg_in;
time_t next_msg_out;
2014-05-08 00:27:00 +02:00
time_t ping_t;
struct mosquitto__packet_in in_packet;
struct mosquitto__packet *out_packet;
2018-10-24 15:07:09 +02:00
struct mosquitto_message_all *will;
struct mosquitto__alias *aliases_l2r;
struct mosquitto__alias *aliases_r2l;
struct will_delay_list *will_delay_entry;
uint16_t alias_count_l2r;
uint16_t alias_count_r2l;
uint16_t alias_max_l2r;
2019-02-25 23:28:51 +01:00
uint32_t will_delay_interval;
2021-05-21 16:38:29 +02:00
int out_packet_count;
int64_t out_packet_bytes;
2019-02-25 23:28:51 +01:00
time_t will_delay_time;
2014-05-08 00:27:00 +02:00
#ifdef WITH_TLS
SSL *ssl;
SSL_CTX *ssl_ctx;
#ifndef WITH_BROKER
SSL_CTX *user_ssl_ctx;
#endif
2014-05-08 00:27:00 +02:00
char *tls_cafile;
char *tls_capath;
char *tls_certfile;
char *tls_keyfile;
int (*tls_pw_callback)(char *buf, int size, int rwflag, void *userdata);
char *tls_version;
char *tls_ciphers;
char *tls_13_ciphers;
2014-05-08 00:27:00 +02:00
char *tls_psk;
char *tls_psk_identity;
char *tls_engine;
char *tls_engine_kpass_sha1;
char *tls_alpn;
int tls_cert_reqs;
2014-05-08 00:27:00 +02:00
bool tls_insecure;
bool ssl_ctx_defaults;
bool tls_ocsp_required;
bool tls_use_os_certs;
2019-02-26 18:11:29 +01:00
enum mosquitto__keyform tls_keyform;
2014-05-08 00:27:00 +02:00
#endif
bool want_write;
bool run;
2014-05-08 00:27:00 +02:00
#if defined(WITH_THREADING) && !defined(WITH_BROKER)
pthread_mutex_t callback_mutex;
pthread_mutex_t log_callback_mutex;
pthread_mutex_t msgtime_mutex;
pthread_mutex_t out_packet_mutex;
pthread_mutex_t state_mutex;
pthread_mutex_t mid_mutex;
2014-05-08 00:27:00 +02:00
pthread_t thread_id;
#endif
bool clean_start;
time_t session_expiry_time;
2020-12-10 13:52:11 +01:00
uint32_t session_expiry_interval;
2014-05-08 00:27:00 +02:00
#ifdef WITH_BROKER
bool in_by_id;
bool is_dropping;
2014-05-08 00:27:00 +02:00
bool is_bridge;
bool is_persisted;
2015-05-16 20:03:12 +02:00
struct mosquitto__bridge *bridge;
struct mosquitto_msg_data msgs_in;
struct mosquitto_msg_data msgs_out;
struct mosquitto__acl_user *acl_list;
2015-05-16 20:03:12 +02:00
struct mosquitto__listener *listener;
struct mosquitto__packet *out_packet_last;
struct mosquitto__subleaf **subs;
char *auth_method;
int subs_capacity; /* allocated size of the subs instance */
int subs_count; /* number of currently active subscriptions */
2020-12-10 13:52:11 +01:00
# ifndef WITH_EPOLL
int pollfd_index;
2020-12-10 13:52:11 +01:00
# endif
# ifdef WITH_WEBSOCKETS
# if WITH_WEBSOCKETS == WS_IS_LWS
2015-12-19 02:21:17 +01:00
struct lws *wsi;
# endif
# endif
bool assigned_id;
2014-05-08 00:27:00 +02:00
#else
# ifdef WITH_SOCKS
char *socks5_host;
2020-10-17 02:23:08 +02:00
uint16_t socks5_port;
char *socks5_username;
char *socks5_password;
# endif
2014-05-08 00:27:00 +02:00
void *userdata;
struct mosquitto_msg_data msgs_in;
struct mosquitto_msg_data msgs_out;
2025-04-16 15:23:16 +02:00
LIBMOSQ_CB_pre_connect on_pre_connect;
LIBMOSQ_CB_connect on_connect;
LIBMOSQ_CB_connect_with_flags on_connect_with_flags;
LIBMOSQ_CB_connect_v5 on_connect_v5;
LIBMOSQ_CB_disconnect on_disconnect;
LIBMOSQ_CB_disconnect_v5 on_disconnect_v5;
LIBMOSQ_CB_publish on_publish;
LIBMOSQ_CB_publish_v5 on_publish_v5;
LIBMOSQ_CB_message on_message;
LIBMOSQ_CB_message_v5 on_message_v5;
LIBMOSQ_CB_subscribe on_subscribe;
LIBMOSQ_CB_subscribe_v5 on_subscribe_v5;
LIBMOSQ_CB_unsubscribe on_unsubscribe;
LIBMOSQ_CB_unsubscribe_v5 on_unsubscribe_v5;
LIBMOSQ_CB_unsubscribe2_v5 on_unsubscribe2_v5;
LIBMOSQ_CB_ext_auth on_ext_auth;
LIBMOSQ_CB_log on_log;
/*void (*on_error)();*/
2014-05-08 00:27:00 +02:00
char *host;
char *bind_address;
unsigned int reconnects;
2014-05-08 00:27:00 +02:00
unsigned int reconnect_delay;
unsigned int reconnect_delay_max;
int callback_depth;
uint16_t port;
2021-01-14 15:10:28 +01:00
bool disable_socketpair;
2014-05-08 00:27:00 +02:00
bool reconnect_exponential_backoff;
bool request_disconnect;
char threaded;
struct mosquitto__packet *out_packet_last;
mosquitto_property *connect_properties;
2014-05-08 00:27:00 +02:00
# ifdef WITH_SRV
ares_channel achan;
# endif
#endif
uint8_t max_qos;
uint8_t retain_available;
bool tcp_nodelay;
#if defined(WITH_WEBSOCKETS) && WITH_WEBSOCKETS == WS_IS_BUILTIN
char *http_request;
#endif
#ifdef WITH_BROKER
UT_hash_handle hh_id;
UT_hash_handle hh_sock;
struct mosquitto *for_free_next;
struct session_expiry_list *expiry_list_item;
uint16_t remote_port;
2021-10-12 15:26:41 +02:00
# ifndef WITH_OLD_KEEPALIVE
struct mosquitto *keepalive_next;
struct mosquitto *keepalive_prev;
2025-07-25 20:10:28 +02:00
time_t keepalive_add_time;
2021-10-12 15:26:41 +02:00
# endif
2021-11-18 12:15:51 +01:00
struct client_stats stats;
#endif
2021-03-09 11:03:27 +01:00
#ifdef WITH_EPOLL
uint32_t events;
2021-03-09 11:03:27 +01:00
#elif defined(WITH_KQUEUE)
short events;
#else
uint32_t events;
#endif
2024-04-10 12:58:02 +02:00
struct proxy_data proxy;
2014-05-08 00:27:00 +02:00
};
#define STREMPTY(str) (str[0] == '\0')
void do_client_disconnect(struct mosquitto *mosq, int reason_code, const mosquitto_property *properties);
2014-05-08 00:27:00 +02:00
#endif