2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-24 02:58:38 +00:00
bind/lib/isc/ratelimiter.c

247 lines
5.4 KiB
C
Raw Normal View History

/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* SPDX-License-Identifier: MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
/*! \file */
2000-06-22 22:00:42 +00:00
#include <inttypes.h>
#include <stdbool.h>
#include <isc/async.h>
#include <isc/event.h>
#include <isc/loop.h>
#include <isc/mem.h>
#include <isc/ratelimiter.h>
#include <isc/refcount.h>
#include <isc/task.h>
2000-04-25 19:32:11 +00:00
#include <isc/time.h>
#include <isc/timer.h>
1999-12-16 22:24:22 +00:00
#include <isc/util.h>
typedef enum {
isc_ratelimiter_ratelimited = 0,
isc_ratelimiter_idle = 1,
isc_ratelimiter_shuttingdown = 2
} isc_ratelimiter_state_t;
struct isc_ratelimiter {
2020-02-13 14:44:37 -08:00
isc_mem_t *mctx;
isc_mutex_t lock;
isc_loopmgr_t *loopmgr;
2020-02-13 14:44:37 -08:00
isc_timer_t *timer;
isc_interval_t interval;
uint32_t pertic;
bool pushpop;
isc_ratelimiter_state_t state;
ISC_LIST(isc_event_t) pending;
};
2020-02-14 08:14:03 +01:00
static void
ratelimiter_tick(void *arg);
isc_result_t
isc_ratelimiter_create(isc_loop_t *loop, isc_ratelimiter_t **ratelimiterp) {
isc_ratelimiter_t *rl = NULL;
isc_mem_t *mctx = isc_loop_getmctx(loop);
INSIST(ratelimiterp != NULL && *ratelimiterp == NULL);
rl = isc_mem_get(mctx, sizeof(*rl));
*rl = (isc_ratelimiter_t){
.pertic = 1,
.state = isc_ratelimiter_idle,
};
isc_mem_attach(mctx, &rl->mctx);
isc_interval_set(&rl->interval, 0, 0);
ISC_LIST_INIT(rl->pending);
2018-11-16 15:33:22 +01:00
isc_mutex_init(&rl->lock);
isc_timer_create(loop, ratelimiter_tick, rl, &rl->timer);
*ratelimiterp = rl;
return (ISC_R_SUCCESS);
}
void
2020-02-13 14:44:37 -08:00
isc_ratelimiter_setinterval(isc_ratelimiter_t *rl, isc_interval_t *interval) {
REQUIRE(rl != NULL);
REQUIRE(interval != NULL);
LOCK(&rl->lock);
rl->interval = *interval;
/*
* If the timer is currently running, change its rate.
*/
2012-10-24 23:46:51 +00:00
if (rl->state == isc_ratelimiter_ratelimited) {
isc_timer_start(rl->timer, isc_timertype_ticker, &rl->interval);
}
UNLOCK(&rl->lock);
}
void
2020-02-13 14:44:37 -08:00
isc_ratelimiter_setpertic(isc_ratelimiter_t *rl, uint32_t pertic) {
REQUIRE(rl != NULL);
REQUIRE(pertic > 0);
LOCK(&rl->lock);
rl->pertic = pertic;
UNLOCK(&rl->lock);
}
void
2020-02-13 14:44:37 -08:00
isc_ratelimiter_setpushpop(isc_ratelimiter_t *rl, bool pushpop) {
REQUIRE(rl != NULL);
LOCK(&rl->lock);
rl->pushpop = pushpop;
UNLOCK(&rl->lock);
}
isc_result_t
isc_ratelimiter_enqueue(isc_ratelimiter_t *rl, isc_task_t *task,
2020-02-13 14:44:37 -08:00
isc_event_t **eventp) {
isc_result_t result = ISC_R_SUCCESS;
isc_event_t *event;
REQUIRE(rl != NULL);
REQUIRE(task != NULL);
REQUIRE(eventp != NULL && *eventp != NULL);
event = *eventp;
REQUIRE(event->ev_sender == NULL);
LOCK(&rl->lock);
switch (rl->state) {
case isc_ratelimiter_shuttingdown:
result = ISC_R_SHUTTINGDOWN;
break;
case isc_ratelimiter_ratelimited:
event->ev_sender = task;
*eventp = NULL;
if (rl->pushpop) {
ISC_LIST_PREPEND(rl->pending, event, ev_ratelink);
} else {
ISC_LIST_APPEND(rl->pending, event, ev_ratelink);
}
break;
case isc_ratelimiter_idle:
isc_timer_start(rl->timer, isc_timertype_ticker, &rl->interval);
event->ev_sender = task;
rl->state = isc_ratelimiter_ratelimited;
break;
default:
UNREACHABLE();
}
UNLOCK(&rl->lock);
if (*eventp != NULL && result == ISC_R_SUCCESS) {
isc_task_send(task, eventp);
}
return (result);
}
isc_result_t
2020-02-13 14:44:37 -08:00
isc_ratelimiter_dequeue(isc_ratelimiter_t *rl, isc_event_t *event) {
isc_result_t result = ISC_R_SUCCESS;
REQUIRE(rl != NULL);
REQUIRE(event != NULL);
LOCK(&rl->lock);
if (ISC_LINK_LINKED(event, ev_ratelink)) {
ISC_LIST_UNLINK(rl->pending, event, ev_ratelink);
event->ev_sender = NULL;
} else {
result = ISC_R_NOTFOUND;
}
if (ISC_LIST_EMPTY(rl->pending)) {
/* No work left to do. Stop the timer. */
isc_timer_stop(rl->timer);
rl->state = isc_ratelimiter_idle;
}
UNLOCK(&rl->lock);
return (result);
}
static void
ratelimiter_tick(void *arg) {
isc_ratelimiter_t *rl = (isc_ratelimiter_t *)arg;
isc_event_t *event;
2020-02-13 14:44:37 -08:00
uint32_t pertic;
pertic = rl->pertic;
2012-10-24 23:46:51 +00:00
while (pertic != 0) {
pertic--;
LOCK(&rl->lock);
event = ISC_LIST_HEAD(rl->pending);
if (event != NULL) {
/*
* There is work to do. Let's do it after unlocking.
*/
ISC_LIST_UNLINK(rl->pending, event, ev_ratelink);
} else {
/* No work left to do. Stop the timer. */
isc_timer_stop(rl->timer);
2002-09-08 18:35:20 +00:00
rl->state = isc_ratelimiter_idle;
pertic = 0; /* Force the loop to exit. */
}
UNLOCK(&rl->lock);
if (event != NULL) {
isc_task_send(event->ev_sender, &event);
}
INSIST(event == NULL);
}
}
void
2020-02-13 14:44:37 -08:00
isc_ratelimiter_shutdown(isc_ratelimiter_t *rl) {
isc_event_t *event;
REQUIRE(rl != NULL);
LOCK(&rl->lock);
rl->state = isc_ratelimiter_shuttingdown;
isc_timer_stop(rl->timer);
isc_timer_destroy(&rl->timer);
while ((event = ISC_LIST_HEAD(rl->pending)) != NULL) {
ISC_LIST_UNLINK(rl->pending, event, ev_ratelink);
UNLOCK(&rl->lock);
event->ev_attributes |= ISC_EVENTATTR_CANCELED;
isc_task_send(event->ev_sender, &event);
LOCK(&rl->lock);
}
UNLOCK(&rl->lock);
}
void
isc_ratelimiter_destroy(isc_ratelimiter_t **rlp) {
isc_ratelimiter_t *rl;
REQUIRE(rlp != NULL && *rlp != NULL);
rl = *rlp;
*rlp = NULL;
2014-09-29 23:45:24 +00:00
LOCK(&rl->lock);
REQUIRE(rl->state == isc_ratelimiter_shuttingdown);
UNLOCK(&rl->lock);
isc_mutex_destroy(&rl->lock);
isc_mem_putanddetach(&rl->mctx, rl, sizeof(*rl));
}