mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-03-25 01:42:58 +08:00
71 lines
1.9 KiB
C
71 lines
1.9 KiB
C
/*
|
|
Copyright (c) 2016-2022 Roger Light <roger@atchoo.org>
|
|
Copyright (c) 2022 Cedalo GmbH
|
|
|
|
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 "mosquitto_broker_internal.h"
|
|
#include "utlist.h"
|
|
|
|
|
|
static int plugin__handle_unsubscribe_single(struct mosquitto__security_options *opts, struct mosquitto *context, struct mosquitto_subscription *sub)
|
|
{
|
|
struct mosquitto_evt_unsubscribe event_data;
|
|
struct mosquitto__callback *cb_base, *cb_next;
|
|
int rc = MOSQ_ERR_SUCCESS;
|
|
|
|
memset(&event_data, 0, sizeof(event_data));
|
|
event_data.client = context;
|
|
event_data.data.topic_filter = sub->topic_filter;
|
|
event_data.data.properties = sub->properties;
|
|
|
|
DL_FOREACH_SAFE(opts->plugin_callbacks.unsubscribe, cb_base, cb_next){
|
|
rc = cb_base->cb(MOSQ_EVT_UNSUBSCRIBE, &event_data, cb_base->userdata);
|
|
if(rc != MOSQ_ERR_SUCCESS){
|
|
break;
|
|
}
|
|
|
|
if(sub->topic_filter != event_data.data.topic_filter){
|
|
mosquitto_free(sub->topic_filter);
|
|
sub->topic_filter = event_data.data.topic_filter;
|
|
}
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
|
|
int plugin__handle_unsubscribe(struct mosquitto *context, struct mosquitto_subscription *sub)
|
|
{
|
|
int rc = MOSQ_ERR_SUCCESS;
|
|
|
|
/* Global plugins */
|
|
rc = plugin__handle_unsubscribe_single(&db.config->security_options,
|
|
context, sub);
|
|
if(rc){
|
|
return rc;
|
|
}
|
|
|
|
if(context->listener){
|
|
rc = plugin__handle_unsubscribe_single(context->listener->security_options,
|
|
context, sub);
|
|
}
|
|
|
|
return rc;
|
|
}
|