mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-02-06 02:52:07 +08:00
70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
/*
|
|
Copyright (c) 2016-2025 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 <string.h>
|
|
|
|
#include "mosquitto_broker_internal.h"
|
|
#include "mosquitto/broker.h"
|
|
#include "utlist.h"
|
|
|
|
|
|
static int plugin__handle_reload_single(struct mosquitto__security_options *opts)
|
|
{
|
|
struct mosquitto_evt_reload event_data;
|
|
struct mosquitto__callback *cb_base, *cb_next;
|
|
|
|
memset(&event_data, 0, sizeof(event_data));
|
|
|
|
// Using DL_FOREACH_SAFE here, as reload callbacks might unregister themself
|
|
DL_FOREACH_SAFE(opts->plugin_callbacks.reload, cb_base, cb_next){
|
|
int rc = cb_base->cb(MOSQ_EVT_RELOAD, &event_data, cb_base->userdata);
|
|
if(rc){
|
|
log__printf(NULL, MOSQ_LOG_ERR, "Error: Plugin %s produced error on reload: %s",
|
|
cb_base->identifier->plugin_name?cb_base->identifier->plugin_name:"",
|
|
mosquitto_strerror(rc));
|
|
|
|
return rc;
|
|
}
|
|
}
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|
|
|
|
|
|
int plugin__handle_reload(void)
|
|
{
|
|
struct mosquitto__security_options *opts;
|
|
int rc;
|
|
|
|
/* Global plugins */
|
|
rc = plugin__handle_reload_single(&db.config->security_options);
|
|
if(rc) return rc;
|
|
|
|
if(db.config->per_listener_settings){
|
|
for(int i=0; i<db.config->listener_count; i++){
|
|
opts = db.config->listeners[i].security_options;
|
|
if(opts && opts->plugin_callbacks.reload){
|
|
rc = plugin__handle_reload_single(opts);
|
|
if(rc) return rc;
|
|
}
|
|
}
|
|
}
|
|
return MOSQ_ERR_SUCCESS;
|
|
}
|