mosquitto/src/mosquitto.c

472 lines
11 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.
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.
*/
2015-04-29 20:37:47 +00:00
#include "config.h"
2014-05-07 22:27:00 +00:00
#ifndef WIN32
/* For initgroups() */
# include <unistd.h>
# include <grp.h>
# include <assert.h>
2014-05-07 22:27:00 +00:00
#endif
#ifndef WIN32
#include <pwd.h>
#else
#include <process.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#endif
2014-06-02 00:01:29 +00:00
#ifndef WIN32
# include <sys/time.h>
#endif
2014-05-07 22:27:00 +00:00
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
#ifdef WITH_SYSTEMD
# include <systemd/sd-daemon.h>
#endif
2014-05-07 22:27:00 +00:00
#ifdef WITH_WRAP
#include <tcpd.h>
#endif
2014-06-30 22:30:43 +00:00
#ifdef WITH_WEBSOCKETS
# include <libwebsockets.h>
#endif
2014-05-07 22:27:00 +00:00
#include "mosquitto_broker_internal.h"
2015-04-29 20:37:47 +00:00
#include "memory_mosq.h"
2014-05-07 22:27:00 +00:00
#include "util_mosq.h"
struct mosquitto_db int_db;
bool flag_reload = false;
#ifdef WITH_PERSISTENCE
bool flag_db_backup = false;
#endif
bool flag_tree_print = false;
int run;
#ifdef WITH_WRAP
#include <syslog.h>
int allow_severity = LOG_INFO;
int deny_severity = LOG_INFO;
#endif
void handle_sigint(int signal);
void handle_sigusr1(int signal);
void handle_sigusr2(int signal);
2016-07-03 21:40:27 +00:00
#ifdef SIGHUP
void handle_sighup(int signal);
#endif
2014-05-07 22:27:00 +00:00
struct mosquitto_db *mosquitto__get_db(void)
2014-05-07 22:27:00 +00:00
{
return &int_db;
}
/* mosquitto shouldn't run as root.
* This function will attempt to change to an unprivileged user and group if
* running as root. The user is given in config->user.
* Returns 1 on failure (unknown user, setuid/setgid failure)
* Returns 0 on success.
* Note that setting config->user to "root" does not produce an error, but it
* strongly discouraged.
*/
2015-05-16 18:03:12 +00:00
int drop_privileges(struct mosquitto__config *config, bool temporary)
2014-05-07 22:27:00 +00:00
{
#if !defined(__CYGWIN__) && !defined(WIN32)
struct passwd *pwd;
2018-11-07 17:43:21 +00:00
char *err;
int rc;
2014-05-07 22:27:00 +00:00
const char *snap = getenv("SNAP_NAME");
if(snap && !strcmp(snap, "mosquitto")){
/* Don't attempt to drop privileges if running as a snap */
return MOSQ_ERR_SUCCESS;
}
2014-05-07 22:27:00 +00:00
if(geteuid() == 0){
if(config->user && strcmp(config->user, "root")){
pwd = getpwnam(config->user);
if(!pwd){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Invalid user '%s'.", config->user);
2014-05-07 22:27:00 +00:00
return 1;
}
if(initgroups(config->user, pwd->pw_gid) == -1){
2018-11-07 17:43:21 +00:00
err = strerror(errno);
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error setting groups whilst dropping privileges: %s.", err);
2014-05-07 22:27:00 +00:00
return 1;
}
if(temporary){
rc = setegid(pwd->pw_gid);
}else{
rc = setgid(pwd->pw_gid);
}
if(rc == -1){
2018-11-07 17:43:21 +00:00
err = strerror(errno);
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error setting gid whilst dropping privileges: %s.", err);
2014-05-07 22:27:00 +00:00
return 1;
}
if(temporary){
rc = seteuid(pwd->pw_uid);
}else{
rc = setuid(pwd->pw_uid);
}
if(rc == -1){
2018-11-07 17:43:21 +00:00
err = strerror(errno);
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error setting uid whilst dropping privileges: %s.", err);
2014-05-07 22:27:00 +00:00
return 1;
}
}
if(geteuid() == 0 || getegid() == 0){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_WARNING, "Warning: Mosquitto should not be run as root/administrator.");
2014-05-07 22:27:00 +00:00
}
}
#endif
return MOSQ_ERR_SUCCESS;
}
int restore_privileges(void)
{
#if !defined(__CYGWIN__) && !defined(WIN32)
2018-11-07 17:43:21 +00:00
char *err;
int rc;
if(getuid() == 0){
rc = setegid(0);
if(rc == -1){
2018-11-07 17:43:21 +00:00
err = strerror(errno);
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error setting gid whilst restoring privileges: %s.", err);
return 1;
}
rc = seteuid(0);
if(rc == -1){
2018-11-07 17:43:21 +00:00
err = strerror(errno);
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error setting uid whilst restoring privileges: %s.", err);
return 1;
}
}
#endif
return MOSQ_ERR_SUCCESS;
}
2014-05-07 22:27:00 +00:00
void mosquitto__daemonise(void)
{
#ifndef WIN32
2018-11-07 17:43:21 +00:00
char *err;
pid_t pid;
pid = fork();
if(pid < 0){
2018-11-07 17:43:21 +00:00
err = strerror(errno);
2016-06-21 22:33:58 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error in fork: %s", err);
exit(1);
}
if(pid > 0){
exit(0);
}
if(setsid() < 0){
2018-11-07 17:43:21 +00:00
err = strerror(errno);
2016-06-21 22:33:58 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error in setsid: %s", err);
exit(1);
}
assert(freopen("/dev/null", "r", stdin));
assert(freopen("/dev/null", "w", stdout));
assert(freopen("/dev/null", "w", stderr));
#else
2016-06-21 22:33:58 +00:00
log__printf(NULL, MOSQ_LOG_WARNING, "Warning: Can't start in daemon mode in Windows.");
#endif
}
2014-05-07 22:27:00 +00:00
int main(int argc, char *argv[])
{
mosq_sock_t *listensock = NULL;
2014-05-07 22:27:00 +00:00
int listensock_count = 0;
int listensock_index = 0;
2015-05-16 18:03:12 +00:00
struct mosquitto__config config;
2014-05-07 22:27:00 +00:00
int i, j;
FILE *pid;
int rc;
#ifdef WIN32
SYSTEMTIME st;
#else
struct timeval tv;
#endif
struct mosquitto *ctxt, *ctxt_tmp;
2014-05-07 22:27:00 +00:00
#if defined(WIN32) || defined(__CYGWIN__)
if(argc == 2){
if(!strcmp(argv[1], "run")){
service_run();
return 0;
}else if(!strcmp(argv[1], "install")){
service_install();
return 0;
}else if(!strcmp(argv[1], "uninstall")){
service_uninstall();
return 0;
}
}
#endif
#ifdef WIN32
GetSystemTime(&st);
srand(st.wSecond + st.wMilliseconds);
#else
gettimeofday(&tv, NULL);
srand(tv.tv_sec + tv.tv_usec);
#endif
#ifdef WIN32
_setmaxstdio(2048);
#endif
2014-05-07 22:27:00 +00:00
memset(&int_db, 0, sizeof(struct mosquitto_db));
2018-09-18 11:08:49 +00:00
net__broker_init();
2014-05-07 22:27:00 +00:00
2018-05-02 22:56:11 +00:00
config__init(&int_db, &config);
rc = config__parse_args(&int_db, &config, argc, argv);
2014-05-07 22:27:00 +00:00
if(rc != MOSQ_ERR_SUCCESS) return rc;
int_db.config = &config;
if(config.daemon){
mosquitto__daemonise();
2014-05-07 22:27:00 +00:00
}
if(config.daemon && config.pid_file){
2017-07-16 21:52:01 +00:00
pid = mosquitto__fopen(config.pid_file, "wt", false);
2014-05-07 22:27:00 +00:00
if(pid){
fprintf(pid, "%d", getpid());
fclose(pid);
}else{
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Unable to write pid file.");
2014-05-07 22:27:00 +00:00
return 1;
}
}
2015-05-16 14:24:24 +00:00
rc = db__open(&config, &int_db);
2014-05-07 22:27:00 +00:00
if(rc != MOSQ_ERR_SUCCESS){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Couldn't open database.");
2014-05-07 22:27:00 +00:00
return rc;
}
/* Initialise logging only after initialising the database in case we're
* logging to topics */
2017-03-06 21:19:53 +00:00
if(log__init(&config)){
rc = 1;
return rc;
}
log__printf(NULL, MOSQ_LOG_INFO, "mosquitto version %s starting", VERSION);
if(int_db.config_file){
2018-05-02 22:56:11 +00:00
log__printf(NULL, MOSQ_LOG_INFO, "Config loaded from %s.", int_db.config_file);
2014-05-07 22:27:00 +00:00
}else{
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_INFO, "Using default config.");
2014-05-07 22:27:00 +00:00
}
rc = mosquitto_security_module_init(&int_db);
if(rc) return rc;
rc = mosquitto_security_init(&int_db, false);
if(rc) return rc;
#ifdef WITH_SYS_TREE
2016-07-08 08:14:11 +00:00
sys_tree__init(&int_db);
2014-05-07 22:27:00 +00:00
#endif
listensock_index = 0;
for(i=0; i<config.listener_count; i++){
2014-05-18 21:40:20 +00:00
if(config.listeners[i].protocol == mp_mqtt){
2015-05-16 17:43:06 +00:00
if(net__socket_listen(&config.listeners[i])){
2015-05-16 14:24:24 +00:00
db__close(&int_db);
2014-05-18 21:40:20 +00:00
if(config.pid_file){
remove(config.pid_file);
}
return 1;
2014-05-07 22:27:00 +00:00
}
2014-05-18 21:40:20 +00:00
listensock_count += config.listeners[i].sock_count;
listensock = mosquitto__realloc(listensock, sizeof(mosq_sock_t)*listensock_count);
2014-05-18 21:40:20 +00:00
if(!listensock){
2015-05-16 14:24:24 +00:00
db__close(&int_db);
2014-05-07 22:27:00 +00:00
if(config.pid_file){
remove(config.pid_file);
}
return 1;
}
2014-05-18 21:40:20 +00:00
for(j=0; j<config.listeners[i].sock_count; j++){
if(config.listeners[i].socks[j] == INVALID_SOCKET){
2015-05-16 14:24:24 +00:00
db__close(&int_db);
2014-05-18 21:40:20 +00:00
if(config.pid_file){
remove(config.pid_file);
}
return 1;
}
listensock[listensock_index] = config.listeners[i].socks[j];
listensock_index++;
2014-05-07 22:27:00 +00:00
}
2014-05-18 21:40:20 +00:00
}else if(config.listeners[i].protocol == mp_websockets){
#ifdef WITH_WEBSOCKETS
config.listeners[i].ws_context = mosq_websockets_init(&config.listeners[i], &config);
if(!config.listeners[i].ws_context){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Unable to create websockets listener on port %d.", config.listeners[i].port);
return 1;
}
2014-05-18 21:40:20 +00:00
#endif
2014-05-07 22:27:00 +00:00
}
}
rc = drop_privileges(&config, false);
if(rc != MOSQ_ERR_SUCCESS) return rc;
2014-05-07 22:27:00 +00:00
signal(SIGINT, handle_sigint);
signal(SIGTERM, handle_sigint);
#ifdef SIGHUP
signal(SIGHUP, handle_sighup);
#endif
#ifndef WIN32
signal(SIGUSR1, handle_sigusr1);
signal(SIGUSR2, handle_sigusr2);
signal(SIGPIPE, SIG_IGN);
#endif
#ifdef WIN32
CreateThread(NULL, 0, SigThreadProc, NULL, 0, NULL);
#endif
2014-05-07 22:27:00 +00:00
#ifdef WITH_BRIDGE
for(i=0; i<config.bridge_count; i++){
2015-05-16 14:24:24 +00:00
if(bridge__new(&int_db, &(config.bridges[i]))){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_WARNING, "Warning: Unable to connect to bridge %s.",
2014-05-07 22:27:00 +00:00
config.bridges[i].name);
}
}
#endif
#ifdef WITH_SYSTEMD
sd_notify(0, "READY=1");
#endif
2014-05-07 22:27:00 +00:00
run = 1;
2019-03-13 14:11:50 +00:00
rc = mosquitto_main_loop(&int_db, listensock, listensock_count);
2014-05-07 22:27:00 +00:00
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_INFO, "mosquitto version %s terminating", VERSION);
2015-05-16 14:24:24 +00:00
log__close(&config);
2014-05-07 22:27:00 +00:00
2014-09-17 20:50:08 +00:00
#ifdef WITH_WEBSOCKETS
for(i=0; i<int_db.config->listener_count; i++){
if(int_db.config->listeners[i].ws_context){
libwebsocket_context_destroy(int_db.config->listeners[i].ws_context);
}
mosquitto__free(int_db.config->listeners[i].ws_protocol);
2014-09-17 20:50:08 +00:00
}
#endif
2019-02-25 22:28:51 +00:00
/* FIXME - this isn't quite right, all wills with will delay zero should be
* sent now, but those with positive will delay should be persisted and
* restored, pending the client reconnecting in time. */
HASH_ITER(hh_id, int_db.contexts_by_id, ctxt, ctxt_tmp){
2017-07-19 13:49:49 +00:00
context__send_will(&int_db, ctxt);
}
2019-02-25 22:28:51 +00:00
will_delay__send_all(&int_db);
session_expiry__remove_all(&int_db);
#ifdef WITH_PERSISTENCE
if(config.persistence){
2017-07-19 13:49:49 +00:00
persist__backup(&int_db, true);
}
#endif
HASH_ITER(hh_id, int_db.contexts_by_id, ctxt, ctxt_tmp){
2014-06-30 22:30:43 +00:00
#ifdef WITH_WEBSOCKETS
if(!ctxt->wsi){
2015-05-16 14:24:24 +00:00
context__cleanup(&int_db, ctxt, true);
2014-06-30 22:30:43 +00:00
}
#else
2015-05-16 14:24:24 +00:00
context__cleanup(&int_db, ctxt, true);
2014-06-30 22:30:43 +00:00
#endif
2014-05-07 22:27:00 +00:00
}
2014-06-28 00:38:58 +00:00
HASH_ITER(hh_sock, int_db.contexts_by_sock, ctxt, ctxt_tmp){
2015-05-16 14:24:24 +00:00
context__cleanup(&int_db, ctxt, true);
2014-06-28 00:38:58 +00:00
}
2014-06-30 22:37:03 +00:00
#ifdef WITH_BRIDGE
for(i=0; i<int_db.bridge_count; i++){
if(int_db.bridges[i]){
2015-05-16 14:24:24 +00:00
context__cleanup(&int_db, int_db.bridges[i], true);
}
}
mosquitto__free(int_db.bridges);
2014-06-30 22:37:03 +00:00
#endif
2015-05-16 14:24:24 +00:00
context__free_disused(&int_db);
2014-06-30 22:30:43 +00:00
2015-05-16 14:24:24 +00:00
db__close(&int_db);
2014-05-07 22:27:00 +00:00
if(listensock){
for(i=0; i<listensock_count; i++){
if(listensock[i] != INVALID_SOCKET){
#ifndef WIN32
close(listensock[i]);
#else
closesocket(listensock[i]);
#endif
}
}
mosquitto__free(listensock);
2014-05-07 22:27:00 +00:00
}
mosquitto_security_module_cleanup(&int_db);
if(config.pid_file){
remove(config.pid_file);
}
2015-05-16 14:24:24 +00:00
config__cleanup(int_db.config);
2018-09-19 12:01:13 +00:00
net__broker_cleanup();
2014-05-07 22:27:00 +00:00
return rc;
}
#ifdef WIN32
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
2014-05-07 22:27:00 +00:00
{
char **argv;
int argc = 1;
char *token;
char *saveptr = NULL;
int rc;
argv = mosquitto__malloc(sizeof(char *)*1);
2014-05-07 22:27:00 +00:00
argv[0] = "mosquitto";
token = strtok_r(lpCmdLine, " ", &saveptr);
while(token){
argc++;
argv = mosquitto__realloc(argv, sizeof(char *)*argc);
2014-05-07 22:27:00 +00:00
if(!argv){
fprintf(stderr, "Error: Out of memory.\n");
return MOSQ_ERR_NOMEM;
}
argv[argc-1] = token;
token = strtok_r(NULL, " ", &saveptr);
}
rc = main(argc, argv);
mosquitto__free(argv);
2014-05-07 22:27:00 +00:00
return rc;
}
#endif