mosquitto/src/loop.c

550 lines
14 KiB
C
Raw Normal View History

2014-05-07 22:27:00 +00:00
/*
2016-07-08 08:42:24 +00:00
Copyright (c) 2009-2016 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.
*/
#define _GNU_SOURCE
#include <config.h>
#include <assert.h>
#ifndef WIN32
#include <poll.h>
#include <unistd.h>
2014-05-07 22:27:00 +00:00
#else
#include <process.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#endif
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
2014-10-24 21:49:48 +00:00
#ifndef WIN32
# include <sys/socket.h>
#endif
2014-09-14 17:08:09 +00:00
#include <time.h>
2014-05-07 22:27:00 +00:00
#ifdef WITH_WEBSOCKETS
# include <libwebsockets.h>
#endif
#include "mosquitto_broker_internal.h"
2015-04-29 20:37:47 +00:00
#include "memory_mosq.h"
2015-04-29 20:23:59 +00:00
#include "packet_mosq.h"
2015-04-29 20:37:47 +00:00
#include "send_mosq.h"
#include "sys_tree.h"
2015-04-29 20:37:47 +00:00
#include "time_mosq.h"
#include "util_mosq.h"
2014-05-07 22:27:00 +00:00
extern bool flag_reload;
#ifdef WITH_PERSISTENCE
extern bool flag_db_backup;
#endif
extern bool flag_tree_print;
extern int run;
static void loop_handle_reads_writes(struct mosquitto_db *db, struct pollfd *pollfds);
#ifdef WITH_WEBSOCKETS
static void temp__expire_websockets_clients(struct mosquitto_db *db)
{
struct mosquitto *context, *ctxt_tmp;
static time_t last_check = 0;
time_t now = mosquitto_time();
char *id;
if(now - last_check > 60){
HASH_ITER(hh_id, db->contexts_by_id, context, ctxt_tmp){
if(context->wsi && context->sock != INVALID_SOCKET){
if(context->keepalive && now - context->last_msg_in > (time_t)(context->keepalive)*3/2){
if(db->config->connection_messages == true){
if(context->id){
id = context->id;
}else{
id = "<unknown>";
}
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_NOTICE, "Client %s has exceeded timeout, disconnecting.", id);
}
/* Client has exceeded keepalive*1.5 */
do_disconnect(db, context);
}
}
}
last_check = mosquitto_time();
}
}
#endif
int mosquitto_main_loop(struct mosquitto_db *db, mosq_sock_t *listensock, int listensock_count, int listener_max)
2014-05-07 22:27:00 +00:00
{
#ifdef WITH_SYS_TREE
2014-05-07 22:27:00 +00:00
time_t start_time = mosquitto_time();
#endif
#ifdef WITH_PERSISTENCE
2014-05-07 22:27:00 +00:00
time_t last_backup = mosquitto_time();
#endif
2014-06-30 22:37:37 +00:00
time_t now = 0;
time_t now_time;
2014-05-07 22:27:00 +00:00
int time_count;
int fdcount;
struct mosquitto *context, *ctxt_tmp;
2014-05-07 22:27:00 +00:00
#ifndef WIN32
sigset_t sigblock, origsig;
#endif
int i;
struct pollfd *pollfds = NULL;
int pollfd_index;
int pollfd_max;
2014-05-07 22:27:00 +00:00
#ifdef WITH_BRIDGE
mosq_sock_t bridge_sock;
2014-05-07 22:27:00 +00:00
int rc;
#endif
time_t expiration_check_time = 0;
char *id;
2014-05-07 22:27:00 +00:00
#ifndef WIN32
sigemptyset(&sigblock);
sigaddset(&sigblock, SIGINT);
2016-06-21 22:33:58 +00:00
sigaddset(&sigblock, SIGTERM);
2016-07-19 14:05:53 +00:00
sigaddset(&sigblock, SIGUSR1);
sigaddset(&sigblock, SIGUSR2);
2017-06-27 21:32:10 +00:00
sigaddset(&sigblock, SIGHUP);
2014-05-07 22:27:00 +00:00
#endif
#ifdef WIN32
pollfd_max = _getmaxstdio();
#else
pollfd_max = sysconf(_SC_OPEN_MAX);
#endif
2017-07-16 21:52:01 +00:00
pollfds = mosquitto__malloc(sizeof(struct pollfd)*pollfd_max);
if(!pollfds){
2017-07-16 21:52:01 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Out of memory.");
return MOSQ_ERR_NOMEM;
}
if(db->config->persistent_client_expiration > 0){
expiration_check_time = time(NULL) + 3600;
}
2014-05-07 22:27:00 +00:00
while(run){
2015-05-16 14:24:24 +00:00
context__free_disused(db);
2014-05-07 22:27:00 +00:00
#ifdef WITH_SYS_TREE
if(db->config->sys_interval > 0){
2016-07-08 08:14:11 +00:00
sys_tree__update(db, db->config->sys_interval, start_time);
2014-05-07 22:27:00 +00:00
}
#endif
memset(pollfds, -1, sizeof(struct pollfd)*pollfd_max);
2014-05-07 22:27:00 +00:00
pollfd_index = 0;
for(i=0; i<listensock_count; i++){
pollfds[pollfd_index].fd = listensock[i];
pollfds[pollfd_index].events = POLLIN;
pollfds[pollfd_index].revents = 0;
pollfd_index++;
}
now_time = time(NULL);
2014-05-07 22:27:00 +00:00
time_count = 0;
HASH_ITER(hh_sock, db->contexts_by_sock, context, ctxt_tmp){
if(time_count > 0){
time_count--;
}else{
time_count = 1000;
now = mosquitto_time();
}
context->pollfd_index = -1;
if(context->sock != INVALID_SOCKET){
#ifdef WITH_BRIDGE
if(context->bridge){
mosquitto__check_keepalive(db, context);
if(context->bridge->round_robin == false
&& context->bridge->cur_address != 0
&& now > context->bridge->primary_retry){
if(net__try_connect(context, context->bridge->addresses[0].address, context->bridge->addresses[0].port, &bridge_sock, NULL, false) <= 0){
COMPAT_CLOSE(bridge_sock);
2015-05-18 08:29:22 +00:00
net__socket_close(db, context);
context->bridge->cur_address = context->bridge->address_count-1;
}
}
}
#endif
/* Local bridges never time out in this fashion. */
if(!(context->keepalive)
|| context->bridge
|| now - context->last_msg_in < (time_t)(context->keepalive)*3/2){
2015-05-16 14:24:24 +00:00
if(db__message_write(db, context) == MOSQ_ERR_SUCCESS){
pollfds[pollfd_index].fd = context->sock;
pollfds[pollfd_index].events = POLLIN;
pollfds[pollfd_index].revents = 0;
if(context->current_out_packet || context->state == mosq_cs_connect_pending || context->ws_want_write){
pollfds[pollfd_index].events |= POLLOUT;
context->ws_want_write = false;
}
context->pollfd_index = pollfd_index;
pollfd_index++;
}else{
2014-07-08 22:07:19 +00:00
do_disconnect(db, context);
}
}else{
if(db->config->connection_messages == true){
if(context->id){
id = context->id;
}else{
id = "<unknown>";
}
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_NOTICE, "Client %s has exceeded timeout, disconnecting.", id);
}
/* Client has exceeded keepalive*1.5 */
2014-07-08 22:07:19 +00:00
do_disconnect(db, context);
}
}
}
#ifdef WITH_BRIDGE
time_count = 0;
for(i=0; i<db->bridge_count; i++){
if(!db->bridges[i]) continue;
context = db->bridges[i];
if(context->sock == INVALID_SOCKET){
2014-05-07 22:27:00 +00:00
if(time_count > 0){
time_count--;
}else{
time_count = 1000;
now = mosquitto_time();
}
/* Want to try to restart the bridge connection */
if(!context->bridge->restart_t){
context->bridge->restart_t = now+context->bridge->restart_timeout;
context->bridge->cur_address++;
if(context->bridge->cur_address == context->bridge->address_count){
context->bridge->cur_address = 0;
}
if(context->bridge->round_robin == false && context->bridge->cur_address != 0){
context->bridge->primary_retry = now + 5;
}
}else{
2017-02-06 22:39:39 +00:00
if((context->bridge->start_type == bst_lazy && context->bridge->lazy_reconnect)
|| (context->bridge->start_type == bst_automatic && now > context->bridge->restart_t)){
context->bridge->restart_t = 0;
#if defined(__GLIBC__) && defined(WITH_ADNS)
2017-02-06 22:39:39 +00:00
if(context->adns){
/* Waiting on DNS lookup */
rc = gai_error(context->adns);
if(rc == EAI_INPROGRESS){
/* Just keep on waiting */
}else if(rc == 0){
2017-03-06 21:19:53 +00:00
rc = bridge__connect_step2(db, context);
if(rc == MOSQ_ERR_SUCCESS){
pollfds[pollfd_index].fd = context->sock;
pollfds[pollfd_index].events = POLLIN;
pollfds[pollfd_index].revents = 0;
if(context->current_out_packet){
pollfds[pollfd_index].events |= POLLOUT;
}
context->pollfd_index = pollfd_index;
pollfd_index++;
}else{
context->bridge->cur_address++;
if(context->bridge->cur_address == context->bridge->address_count){
context->bridge->cur_address = 0;
}
2017-02-06 22:39:39 +00:00
}
}else{
/* Need to retry */
if(context->adns->ar_result){
freeaddrinfo(context->adns->ar_result);
2017-02-06 22:39:39 +00:00
}
2017-07-16 21:52:01 +00:00
mosquitto__free(context->adns);
context->adns = NULL;
2014-05-07 22:27:00 +00:00
}
}else{
2017-03-06 21:19:53 +00:00
rc = bridge__connect_step1(db, context);
2017-02-06 22:39:39 +00:00
if(rc){
context->bridge->cur_address++;
if(context->bridge->cur_address == context->bridge->address_count){
context->bridge->cur_address = 0;
}
2014-05-07 22:27:00 +00:00
}
}
2017-02-06 22:39:39 +00:00
#else
{
2017-03-06 21:19:53 +00:00
rc = bridge__connect(db, context);
2017-02-06 22:39:39 +00:00
if(rc == MOSQ_ERR_SUCCESS){
pollfds[pollfd_index].fd = context->sock;
pollfds[pollfd_index].events = POLLIN;
pollfds[pollfd_index].revents = 0;
if(context->current_out_packet){
pollfds[pollfd_index].events |= POLLOUT;
}
context->pollfd_index = pollfd_index;
pollfd_index++;
}else{
context->bridge->cur_address++;
if(context->bridge->cur_address == context->bridge->address_count){
context->bridge->cur_address = 0;
}
2014-05-07 22:27:00 +00:00
}
}
2017-02-06 22:39:39 +00:00
#endif
}
}
}
}
2014-05-07 22:27:00 +00:00
#endif
now_time = time(NULL);
if(db->config->persistent_client_expiration > 0 && now_time > expiration_check_time){
HASH_ITER(hh_id, db->contexts_by_id, context, ctxt_tmp){
if(context->sock == INVALID_SOCKET && context->clean_session == 0){
/* This is a persistent client, check to see if the
* last time it connected was longer than
* persistent_client_expiration seconds ago. If so,
* expire it and clean up.
*/
if(now_time > context->disconnect_t+db->config->persistent_client_expiration){
if(context->id){
id = context->id;
}else{
id = "<unknown>";
}
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_NOTICE, "Expiring persistent client %s due to timeout.", id);
G_CLIENTS_EXPIRED_INC();
context->clean_session = true;
context->state = mosq_cs_expiring;
2014-08-18 23:36:09 +00:00
do_disconnect(db, context);
2014-05-07 22:27:00 +00:00
}
}
}
expiration_check_time = time(NULL) + 3600;
2014-05-07 22:27:00 +00:00
}
#ifndef WIN32
sigprocmask(SIG_SETMASK, &sigblock, &origsig);
fdcount = poll(pollfds, pollfd_index, 100);
sigprocmask(SIG_SETMASK, &origsig, NULL);
#else
fdcount = WSAPoll(pollfds, pollfd_index, 100);
#endif
if(fdcount == -1){
2016-06-21 22:33:58 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error in poll: %s.", strerror(errno));
2014-05-07 22:27:00 +00:00
}else{
loop_handle_reads_writes(db, pollfds);
for(i=0; i<listensock_count; i++){
if(pollfds[i].revents & (POLLIN | POLLPRI)){
2015-05-16 17:43:06 +00:00
while(net__socket_accept(db, listensock[i]) != -1){
2014-05-07 22:27:00 +00:00
}
}
}
}
#ifdef WITH_PERSISTENCE
if(db->config->persistence && db->config->autosave_interval){
if(db->config->autosave_on_changes){
if(db->persistence_changes >= db->config->autosave_interval){
2015-05-16 14:24:24 +00:00
persist__backup(db, false);
2014-05-07 22:27:00 +00:00
db->persistence_changes = 0;
}
}else{
if(last_backup + db->config->autosave_interval < mosquitto_time()){
2015-05-16 14:24:24 +00:00
persist__backup(db, false);
2014-05-07 22:27:00 +00:00
last_backup = mosquitto_time();
}
}
}
#endif
2014-05-07 22:27:00 +00:00
#ifdef WITH_PERSISTENCE
if(flag_db_backup){
2015-05-16 14:24:24 +00:00
persist__backup(db, false);
2014-05-07 22:27:00 +00:00
flag_db_backup = false;
}
#endif
if(flag_reload){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_INFO, "Reloading config.");
2015-05-16 14:24:24 +00:00
config__read(db->config, true);
2014-05-07 22:27:00 +00:00
mosquitto_security_cleanup(db, true);
mosquitto_security_init(db, true);
mosquitto_security_apply(db);
2015-05-16 14:24:24 +00:00
log__close(db->config);
log__init(db->config);
2014-05-07 22:27:00 +00:00
flag_reload = false;
}
if(flag_tree_print){
2016-07-19 14:05:53 +00:00
sub__tree_print(db->subs, 0);
2014-05-07 22:27:00 +00:00
flag_tree_print = false;
}
#ifdef WITH_WEBSOCKETS
2014-05-26 17:01:24 +00:00
for(i=0; i<db->config->listener_count; i++){
/* Extremely hacky, should be using the lws provided external poll
* interface, but their interface has changed recently and ours
* will soon, so for now websockets clients are second class
* citizens. */
if(db->config->listeners[i].ws_context){
libwebsocket_service(db->config->listeners[i].ws_context, 0);
}
}
if(db->config->have_websockets_listener){
temp__expire_websockets_clients(db);
}
#endif
2014-05-07 22:27:00 +00:00
}
mosquitto__free(pollfds);
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_SUCCESS;
}
2014-07-03 00:00:57 +00:00
void do_disconnect(struct mosquitto_db *db, struct mosquitto *context)
2014-05-07 22:27:00 +00:00
{
char *id;
2014-07-08 22:16:34 +00:00
if(context->state == mosq_cs_disconnected){
return;
}
2014-07-03 00:00:57 +00:00
#ifdef WITH_WEBSOCKETS
if(context->wsi){
if(context->state != mosq_cs_disconnecting){
2014-07-03 00:00:57 +00:00
context->state = mosq_cs_disconnect_ws;
2014-05-07 22:27:00 +00:00
}
2014-07-03 00:00:57 +00:00
if(context->wsi){
libwebsocket_callback_on_writable(context->ws_context, context->wsi);
}
if(context->sock != INVALID_SOCKET){
HASH_DELETE(hh_sock, db->contexts_by_sock, context);
context->sock = INVALID_SOCKET;
context->pollfd_index = -1;
}
}else
2014-07-03 00:00:57 +00:00
#endif
{
2014-07-03 00:00:57 +00:00
if(db->config->connection_messages == true){
if(context->id){
id = context->id;
}else{
id = "<unknown>";
}
2014-07-03 00:00:57 +00:00
if(context->state != mosq_cs_disconnecting){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_NOTICE, "Socket error on client %s, disconnecting.", id);
2014-07-03 00:00:57 +00:00
}else{
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_NOTICE, "Client %s disconnected.", id);
2014-07-03 00:00:57 +00:00
}
}
2015-05-16 14:24:24 +00:00
context__disconnect(db, context);
#ifdef WITH_BRIDGE
if(context->clean_session && !context->bridge){
#else
2014-07-03 00:00:57 +00:00
if(context->clean_session){
#endif
2015-05-16 14:24:24 +00:00
context__add_to_disused(db, context);
2014-07-03 00:00:57 +00:00
if(context->id){
HASH_DELETE(hh_id, db->contexts_by_id, context);
mosquitto__free(context->id);
2014-07-03 00:00:57 +00:00
context->id = NULL;
}
}
context->state = mosq_cs_disconnected;
2014-05-07 22:27:00 +00:00
}
}
static void loop_handle_reads_writes(struct mosquitto_db *db, struct pollfd *pollfds)
{
struct mosquitto *context, *ctxt_tmp;
int err;
socklen_t len;
2014-05-07 22:27:00 +00:00
HASH_ITER(hh_sock, db->contexts_by_sock, context, ctxt_tmp){
if(context->pollfd_index < 0){
continue;
}
assert(pollfds[context->pollfd_index].fd == context->sock);
#ifdef WITH_WEBSOCKETS
if(context->wsi){
struct lws_pollfd wspoll;
wspoll.fd = pollfds[context->pollfd_index].fd;
wspoll.events = pollfds[context->pollfd_index].events;
wspoll.revents = pollfds[context->pollfd_index].revents;
lws_service_fd(lws_get_context(context->wsi), &wspoll);
continue;
}
#endif
2014-05-07 22:27:00 +00:00
#ifdef WITH_TLS
if(pollfds[context->pollfd_index].revents & POLLOUT ||
context->want_write ||
(context->ssl && context->state == mosq_cs_new)){
2014-05-07 22:27:00 +00:00
#else
if(pollfds[context->pollfd_index].revents & POLLOUT){
2014-05-07 22:27:00 +00:00
#endif
if(context->state == mosq_cs_connect_pending){
len = sizeof(int);
if(!getsockopt(context->sock, SOL_SOCKET, SO_ERROR, (char *)&err, &len)){
if(err == 0){
context->state = mosq_cs_new;
}
}else{
do_disconnect(db, context);
continue;
}
}
2015-05-16 13:16:40 +00:00
if(packet__write(context)){
do_disconnect(db, context);
continue;
2014-05-07 22:27:00 +00:00
}
}
}
HASH_ITER(hh_sock, db->contexts_by_sock, context, ctxt_tmp){
if(context->pollfd_index < 0){
continue;
}
#ifdef WITH_WEBSOCKETS
if(context->wsi){
// Websocket are already handled above
continue;
}
#endif
2014-05-07 22:27:00 +00:00
#ifdef WITH_TLS
if(pollfds[context->pollfd_index].revents & POLLIN ||
(context->ssl && context->state == mosq_cs_new)){
2014-05-07 22:27:00 +00:00
#else
if(pollfds[context->pollfd_index].revents & POLLIN){
2014-05-07 22:27:00 +00:00
#endif
do{
if(packet__read(db, context)){
do_disconnect(db, context);
continue;
}
}while(SSL_DATA_PENDING(context));
2014-05-07 22:27:00 +00:00
}
2017-06-22 08:47:03 +00:00
if(context->pollfd_index >= 0 && pollfds[context->pollfd_index].revents & (POLLERR | POLLNVAL | POLLHUP)){
do_disconnect(db, context);
continue;
}
2014-05-07 22:27:00 +00:00
}
}