/* * OpenVPN -- An application to securely tunnel IP networks * over a single TCP/UDP port, with support for SSL/TLS-based * session authentication and key exchange, * packet encryption, packet authentication, and * packet compression. * * Copyright (C) 2022-2024 OpenVPN Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef REFLECT_FILTER_H #define REFLECT_FILTER_H #include /** struct that handles all the rate limiting logic for initial * responses */ struct initial_packet_rate_limit { /** This is a hard limit for packets per seconds. */ int64_t max_per_period; /** period length in seconds */ int period_length; /** Number of packets in the current period. We use int64_t here * to avoid any potiential issues with overflow */ int64_t curr_period_counter; /* Last time we reset our timer */ time_t last_period_reset; /* we want to warn once per period that packets are being started to * be dropped */ bool warning_displayed; }; /** * checks if the connection is still allowed to connect under the rate * limit. This also increases the internal counter at the same time */ bool reflect_filter_rate_limit_check(struct initial_packet_rate_limit *irl); /** * decreases the counter of initial packets seen, so connections that * successfully completed the three-way handshake do not count against * the counter of initial connection attempts */ void reflect_filter_rate_limit_decrease(struct initial_packet_rate_limit *irl); /** * allocate and initialize the initial-packet rate limiter structure */ struct initial_packet_rate_limit * initial_rate_limit_init(int max_per_period, int period_length); /** * free the initial-packet rate limiter structure */ void initial_rate_limit_free(struct initial_packet_rate_limit *irl); #endif /* ifndef REFLECT_FILTER_H */