Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 1 | /* Shared library add-on to iptables to add limit support. |
| 2 | * |
Jan Engelhardt | 81bd588 | 2008-09-04 17:49:18 +0200 | [diff] [blame] | 3 | * Jérôme de Vivie <devivie@info.enserb.u-bordeaux.fr> |
| 4 | * Hervé Eychenne <rv@wallfire.org> |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 5 | */ |
Jan Engelhardt | 9921f2b | 2012-10-10 00:35:14 +0000 | [diff] [blame] | 6 | #define _BSD_SOURCE 1 |
| 7 | #define _ISOC99_SOURCE 1 |
Jan Engelhardt | 9d69da4 | 2012-07-28 19:10:08 +0200 | [diff] [blame] | 8 | #include <math.h> |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 9 | #include <stdio.h> |
| 10 | #include <string.h> |
| 11 | #include <stdlib.h> |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 12 | #include <xtables.h> |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 13 | #include <linux/netfilter/x_tables.h> |
Jan Engelhardt | a2a7f2b | 2008-09-01 14:20:13 +0200 | [diff] [blame] | 14 | #include <linux/netfilter/xt_limit.h> |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 15 | |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 16 | #define XT_LIMIT_AVG "3/hour" |
| 17 | #define XT_LIMIT_BURST 5 |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 18 | |
Jan Engelhardt | 0f77e2e | 2011-05-07 03:26:08 +0200 | [diff] [blame] | 19 | enum { |
| 20 | O_LIMIT = 0, |
| 21 | O_BURST, |
| 22 | }; |
| 23 | |
Jan Engelhardt | 181dead | 2007-10-04 16:27:07 +0000 | [diff] [blame] | 24 | static void limit_help(void) |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 25 | { |
| 26 | printf( |
Jan Engelhardt | 8b7c64d | 2008-04-15 11:48:25 +0200 | [diff] [blame] | 27 | "limit match options:\n" |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 28 | "--limit avg max average match rate: default "XT_LIMIT_AVG"\n" |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 29 | " [Packets per second unless followed by \n" |
| 30 | " /sec /minute /hour /day postfixes]\n" |
Jan Engelhardt | 8b7c64d | 2008-04-15 11:48:25 +0200 | [diff] [blame] | 31 | "--limit-burst number number to match in a burst, default %u\n", |
| 32 | XT_LIMIT_BURST); |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 33 | } |
| 34 | |
Jan Engelhardt | 0f77e2e | 2011-05-07 03:26:08 +0200 | [diff] [blame] | 35 | static const struct xt_option_entry limit_opts[] = { |
| 36 | {.name = "limit", .id = O_LIMIT, .type = XTTYPE_STRING}, |
| 37 | {.name = "limit-burst", .id = O_BURST, .type = XTTYPE_UINT32, |
| 38 | .flags = XTOPT_PUT, XTOPT_POINTER(struct xt_rateinfo, burst), |
| 39 | .min = 0, .max = 10000}, |
| 40 | XTOPT_TABLEEND, |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | static |
Jan Engelhardt | 7ac4052 | 2011-01-07 12:34:04 +0100 | [diff] [blame] | 44 | int parse_rate(const char *rate, uint32_t *val) |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 45 | { |
| 46 | const char *delim; |
Jan Engelhardt | 7ac4052 | 2011-01-07 12:34:04 +0100 | [diff] [blame] | 47 | uint32_t r; |
| 48 | uint32_t mult = 1; /* Seconds by default. */ |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 49 | |
| 50 | delim = strchr(rate, '/'); |
| 51 | if (delim) { |
| 52 | if (strlen(delim+1) == 0) |
| 53 | return 0; |
| 54 | |
| 55 | if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0) |
| 56 | mult = 1; |
| 57 | else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0) |
| 58 | mult = 60; |
| 59 | else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0) |
| 60 | mult = 60*60; |
| 61 | else if (strncasecmp(delim+1, "day", strlen(delim+1)) == 0) |
| 62 | mult = 24*60*60; |
| 63 | else |
| 64 | return 0; |
| 65 | } |
| 66 | r = atoi(rate); |
| 67 | if (!r) |
| 68 | return 0; |
| 69 | |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 70 | *val = XT_LIMIT_SCALE * mult / r; |
Jan Engelhardt | 9d69da4 | 2012-07-28 19:10:08 +0200 | [diff] [blame] | 71 | if (*val == 0) |
| 72 | /* |
| 73 | * The rate maps to infinity. (1/day is the minimum they can |
| 74 | * specify, so we are ok at that end). |
| 75 | */ |
| 76 | xtables_error(PARAMETER_PROBLEM, "Rate too fast \"%s\"\n", rate); |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 77 | return 1; |
| 78 | } |
| 79 | |
Jan Engelhardt | 181dead | 2007-10-04 16:27:07 +0000 | [diff] [blame] | 80 | static void limit_init(struct xt_entry_match *m) |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 81 | { |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 82 | struct xt_rateinfo *r = (struct xt_rateinfo *)m->data; |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 83 | |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 84 | parse_rate(XT_LIMIT_AVG, &r->avg); |
| 85 | r->burst = XT_LIMIT_BURST; |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 86 | |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /* FIXME: handle overflow: |
| 90 | if (r->avg*r->burst/r->burst != r->avg) |
Jan Engelhardt | 1829ed4 | 2009-02-21 03:29:44 +0100 | [diff] [blame] | 91 | xtables_error(PARAMETER_PROBLEM, |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 92 | "Sorry: burst too large for that avg rate.\n"); |
| 93 | */ |
| 94 | |
Jan Engelhardt | 0f77e2e | 2011-05-07 03:26:08 +0200 | [diff] [blame] | 95 | static void limit_parse(struct xt_option_call *cb) |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 96 | { |
Jan Engelhardt | 0f77e2e | 2011-05-07 03:26:08 +0200 | [diff] [blame] | 97 | struct xt_rateinfo *r = cb->data; |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 98 | |
Jan Engelhardt | 0f77e2e | 2011-05-07 03:26:08 +0200 | [diff] [blame] | 99 | xtables_option_parse(cb); |
| 100 | switch (cb->entry->id) { |
| 101 | case O_LIMIT: |
| 102 | if (!parse_rate(cb->arg, &r->avg)) |
Jan Engelhardt | 1829ed4 | 2009-02-21 03:29:44 +0100 | [diff] [blame] | 103 | xtables_error(PARAMETER_PROBLEM, |
Jan Engelhardt | 0f77e2e | 2011-05-07 03:26:08 +0200 | [diff] [blame] | 104 | "bad rate \"%s\"'", cb->arg); |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 105 | break; |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 106 | } |
Jan Engelhardt | 0f77e2e | 2011-05-07 03:26:08 +0200 | [diff] [blame] | 107 | if (cb->invert) |
Jan Engelhardt | 1829ed4 | 2009-02-21 03:29:44 +0100 | [diff] [blame] | 108 | xtables_error(PARAMETER_PROBLEM, |
Phil Oester | 35160ee | 2004-09-21 10:43:45 +0000 | [diff] [blame] | 109 | "limit does not support invert"); |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 110 | } |
| 111 | |
Jan Engelhardt | 0e2abed | 2007-10-04 16:25:58 +0000 | [diff] [blame] | 112 | static const struct rates |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 113 | { |
| 114 | const char *name; |
Jan Engelhardt | 7ac4052 | 2011-01-07 12:34:04 +0100 | [diff] [blame] | 115 | uint32_t mult; |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 116 | } rates[] = { { "day", XT_LIMIT_SCALE*24*60*60 }, |
| 117 | { "hour", XT_LIMIT_SCALE*60*60 }, |
| 118 | { "min", XT_LIMIT_SCALE*60 }, |
| 119 | { "sec", XT_LIMIT_SCALE } }; |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 120 | |
Jan Engelhardt | 7ac4052 | 2011-01-07 12:34:04 +0100 | [diff] [blame] | 121 | static void print_rate(uint32_t period) |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 122 | { |
| 123 | unsigned int i; |
| 124 | |
Jan Engelhardt | 9d69da4 | 2012-07-28 19:10:08 +0200 | [diff] [blame] | 125 | if (period == 0) { |
| 126 | printf(" %f", INFINITY); |
| 127 | return; |
| 128 | } |
| 129 | |
Jan Engelhardt | 2c69b55 | 2009-04-30 19:32:02 +0200 | [diff] [blame] | 130 | for (i = 1; i < ARRAY_SIZE(rates); ++i) |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 131 | if (period > rates[i].mult |
Harald Welte | 1412e45 | 2001-10-16 08:26:37 +0000 | [diff] [blame] | 132 | || rates[i].mult/period < rates[i].mult%period) |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 133 | break; |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 134 | |
Jan Engelhardt | 7386635 | 2010-12-18 02:04:59 +0100 | [diff] [blame] | 135 | printf(" %u/%s", rates[i-1].mult / period, rates[i-1].name); |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 138 | static void |
Jan Engelhardt | 181dead | 2007-10-04 16:27:07 +0000 | [diff] [blame] | 139 | limit_print(const void *ip, const struct xt_entry_match *match, int numeric) |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 140 | { |
Jan Engelhardt | 69f564e | 2009-05-26 13:14:06 +0200 | [diff] [blame] | 141 | const struct xt_rateinfo *r = (const void *)match->data; |
Jan Engelhardt | 7386635 | 2010-12-18 02:04:59 +0100 | [diff] [blame] | 142 | printf(" limit: avg"); print_rate(r->avg); |
| 143 | printf(" burst %u", r->burst); |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Jan Engelhardt | 181dead | 2007-10-04 16:27:07 +0000 | [diff] [blame] | 146 | static void limit_save(const void *ip, const struct xt_entry_match *match) |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 147 | { |
Jan Engelhardt | 69f564e | 2009-05-26 13:14:06 +0200 | [diff] [blame] | 148 | const struct xt_rateinfo *r = (const void *)match->data; |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 149 | |
Jan Engelhardt | 7386635 | 2010-12-18 02:04:59 +0100 | [diff] [blame] | 150 | printf(" --limit"); print_rate(r->avg); |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 151 | if (r->burst != XT_LIMIT_BURST) |
Jan Engelhardt | 7386635 | 2010-12-18 02:04:59 +0100 | [diff] [blame] | 152 | printf(" --limit-burst %u", r->burst); |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 153 | } |
| 154 | |
Shivani Bhardwaj | a8dfbe3 | 2015-12-23 03:25:21 +0530 | [diff] [blame] | 155 | static const struct rates rates_xlate[] = { |
| 156 | { "day", XT_LIMIT_SCALE * 24 * 60 * 60 }, |
| 157 | { "hour", XT_LIMIT_SCALE * 60 * 60 }, |
| 158 | { "minute", XT_LIMIT_SCALE * 60 }, |
| 159 | { "second", XT_LIMIT_SCALE } |
| 160 | }; |
| 161 | |
Pablo Neira Ayuso | 6b60dc5 | 2016-02-01 19:24:38 +0100 | [diff] [blame] | 162 | static void print_rate_xlate(uint32_t period, struct xt_xlate *xl) |
Shivani Bhardwaj | a8dfbe3 | 2015-12-23 03:25:21 +0530 | [diff] [blame] | 163 | { |
| 164 | unsigned int i; |
| 165 | |
| 166 | if (period == 0) { |
Pablo Neira Ayuso | 6b60dc5 | 2016-02-01 19:24:38 +0100 | [diff] [blame] | 167 | xt_xlate_add(xl, " %f ", INFINITY); |
Shivani Bhardwaj | a8dfbe3 | 2015-12-23 03:25:21 +0530 | [diff] [blame] | 168 | return; |
| 169 | } |
| 170 | |
| 171 | for (i = 1; i < ARRAY_SIZE(rates); ++i) |
| 172 | if (period > rates_xlate[i].mult || |
| 173 | rates_xlate[i].mult / period < rates_xlate[i].mult % period) |
| 174 | break; |
| 175 | |
Pablo Neira Ayuso | 6b60dc5 | 2016-02-01 19:24:38 +0100 | [diff] [blame] | 176 | xt_xlate_add(xl, " %u/%s ", rates_xlate[i - 1].mult / period, |
Shivani Bhardwaj | a8dfbe3 | 2015-12-23 03:25:21 +0530 | [diff] [blame] | 177 | rates_xlate[i - 1].name); |
| 178 | } |
| 179 | |
Pablo Neira Ayuso | 9e14d43 | 2016-03-09 18:18:11 +0100 | [diff] [blame] | 180 | static int limit_xlate(const void *ip, const struct xt_entry_match *match, |
Pablo Neira Ayuso | 6b60dc5 | 2016-02-01 19:24:38 +0100 | [diff] [blame] | 181 | struct xt_xlate *xl, int numeric) |
Shivani Bhardwaj | a8dfbe3 | 2015-12-23 03:25:21 +0530 | [diff] [blame] | 182 | { |
| 183 | const struct xt_rateinfo *r = (const void *)match->data; |
| 184 | |
Pablo Neira Ayuso | 6b60dc5 | 2016-02-01 19:24:38 +0100 | [diff] [blame] | 185 | xt_xlate_add(xl, "limit rate"); |
| 186 | print_rate_xlate(r->avg, xl); |
Liping Zhang | 9916470 | 2016-05-21 18:07:16 +0800 | [diff] [blame^] | 187 | if (r->burst != 0) |
Pablo Neira Ayuso | 6b60dc5 | 2016-02-01 19:24:38 +0100 | [diff] [blame] | 188 | xt_xlate_add(xl, "burst %u packets ", r->burst); |
Shivani Bhardwaj | a8dfbe3 | 2015-12-23 03:25:21 +0530 | [diff] [blame] | 189 | |
| 190 | return 1; |
| 191 | } |
| 192 | |
Jan Engelhardt | 181dead | 2007-10-04 16:27:07 +0000 | [diff] [blame] | 193 | static struct xtables_match limit_match = { |
Jan Engelhardt | 4297936 | 2009-06-01 11:56:23 +0200 | [diff] [blame] | 194 | .family = NFPROTO_UNSPEC, |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 195 | .name = "limit", |
Jan Engelhardt | 8b7c64d | 2008-04-15 11:48:25 +0200 | [diff] [blame] | 196 | .version = XTABLES_VERSION, |
Yasuyuki KOZAKAI | 4489c0d | 2007-07-24 07:11:26 +0000 | [diff] [blame] | 197 | .size = XT_ALIGN(sizeof(struct xt_rateinfo)), |
| 198 | .userspacesize = offsetof(struct xt_rateinfo, prev), |
Jan Engelhardt | 181dead | 2007-10-04 16:27:07 +0000 | [diff] [blame] | 199 | .help = limit_help, |
| 200 | .init = limit_init, |
Jan Engelhardt | 0f77e2e | 2011-05-07 03:26:08 +0200 | [diff] [blame] | 201 | .x6_parse = limit_parse, |
Jan Engelhardt | 181dead | 2007-10-04 16:27:07 +0000 | [diff] [blame] | 202 | .print = limit_print, |
| 203 | .save = limit_save, |
Jan Engelhardt | 0f77e2e | 2011-05-07 03:26:08 +0200 | [diff] [blame] | 204 | .x6_options = limit_opts, |
Shivani Bhardwaj | a8dfbe3 | 2015-12-23 03:25:21 +0530 | [diff] [blame] | 205 | .xlate = limit_xlate, |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 206 | }; |
| 207 | |
| 208 | void _init(void) |
| 209 | { |
Jan Engelhardt | 181dead | 2007-10-04 16:27:07 +0000 | [diff] [blame] | 210 | xtables_register_match(&limit_match); |
Marc Boucher | e6869a8 | 2000-03-20 06:03:29 +0000 | [diff] [blame] | 211 | } |