blob: e9c89c3ad23730b24257b7394312b3076aa5f00d [file] [log] [blame]
Marc Bouchere6869a82000-03-20 06:03:29 +00001/* Shared library add-on to iptables to add limit support.
2 *
3 * Jérôme de Vivie <devivie@info.enserb.u-bordeaux.fr>
Harald Welteb77f1da2002-03-14 11:35:58 +00004 * Hervé Eychenne <rv@wallfire.org>
Marc Bouchere6869a82000-03-20 06:03:29 +00005 */
Harald Welteb77f1da2002-03-14 11:35:58 +00006
Marc Bouchere6869a82000-03-20 06:03:29 +00007#include <stdio.h>
8#include <string.h>
9#include <stdlib.h>
10#include <getopt.h>
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000011#include <xtables.h>
Rusty Russell849779c2000-04-23 15:51:51 +000012#include <stddef.h>
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000013#include <linux/netfilter/x_tables.h>
Martin Josefsson1da399c2004-05-26 15:50:57 +000014/* For 64bit kernel / 32bit userspace */
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000015#include "../include/linux/netfilter/xt_limit.h"
Marc Bouchere6869a82000-03-20 06:03:29 +000016
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000017#define XT_LIMIT_AVG "3/hour"
18#define XT_LIMIT_BURST 5
Marc Bouchere6869a82000-03-20 06:03:29 +000019
20/* Function which prints out usage message. */
21static void
22help(void)
23{
24 printf(
25"limit v%s options:\n"
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000026"--limit avg max average match rate: default "XT_LIMIT_AVG"\n"
Marc Bouchere6869a82000-03-20 06:03:29 +000027" [Packets per second unless followed by \n"
28" /sec /minute /hour /day postfixes]\n"
29"--limit-burst number number to match in a burst, default %u\n"
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000030"\n", IPTABLES_VERSION, XT_LIMIT_BURST);
Marc Bouchere6869a82000-03-20 06:03:29 +000031}
32
Jan Engelhardt661f1122007-07-30 14:46:51 +000033static const struct option opts[] = {
Patrick McHardy500f4832007-09-08 15:59:04 +000034 { "limit", 1, NULL, '%' },
35 { "limit-burst", 1, NULL, '$' },
36 { }
Marc Bouchere6869a82000-03-20 06:03:29 +000037};
38
39static
40int parse_rate(const char *rate, u_int32_t *val)
41{
42 const char *delim;
43 u_int32_t r;
44 u_int32_t mult = 1; /* Seconds by default. */
45
46 delim = strchr(rate, '/');
47 if (delim) {
48 if (strlen(delim+1) == 0)
49 return 0;
50
51 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
52 mult = 1;
53 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
54 mult = 60;
55 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0)
56 mult = 60*60;
57 else if (strncasecmp(delim+1, "day", strlen(delim+1)) == 0)
58 mult = 24*60*60;
59 else
60 return 0;
61 }
62 r = atoi(rate);
63 if (!r)
64 return 0;
65
66 /* This would get mapped to infinite (1/day is minimum they
67 can specify, so we're ok at that end). */
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000068 if (r / mult > XT_LIMIT_SCALE)
Marc Bouchere6869a82000-03-20 06:03:29 +000069 exit_error(PARAMETER_PROBLEM, "Rate too fast `%s'\n", rate);
70
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000071 *val = XT_LIMIT_SCALE * mult / r;
Marc Bouchere6869a82000-03-20 06:03:29 +000072 return 1;
73}
74
75/* Initialize the match. */
76static void
Peter Rileyea146a92007-09-02 13:09:07 +000077init(struct xt_entry_match *m)
Marc Bouchere6869a82000-03-20 06:03:29 +000078{
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000079 struct xt_rateinfo *r = (struct xt_rateinfo *)m->data;
Marc Bouchere6869a82000-03-20 06:03:29 +000080
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000081 parse_rate(XT_LIMIT_AVG, &r->avg);
82 r->burst = XT_LIMIT_BURST;
Marc Bouchere6869a82000-03-20 06:03:29 +000083
Marc Bouchere6869a82000-03-20 06:03:29 +000084}
85
86/* FIXME: handle overflow:
87 if (r->avg*r->burst/r->burst != r->avg)
88 exit_error(PARAMETER_PROBLEM,
89 "Sorry: burst too large for that avg rate.\n");
90*/
91
92/* Function which parses command options; returns true if it
93 ate an option */
94static int
95parse(int c, char **argv, int invert, unsigned int *flags,
Yasuyuki KOZAKAIc0a9ab92007-07-24 06:02:05 +000096 const void *entry,
Yasuyuki KOZAKAI193df8e2007-07-24 05:57:28 +000097 struct xt_entry_match **match)
Marc Bouchere6869a82000-03-20 06:03:29 +000098{
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +000099 struct xt_rateinfo *r = (struct xt_rateinfo *)(*match)->data;
Harald Welteb4719762001-07-23 02:14:22 +0000100 unsigned int num;
Marc Bouchere6869a82000-03-20 06:03:29 +0000101
102 switch(c) {
103 case '%':
Phil Oester35160ee2004-09-21 10:43:45 +0000104 if (check_inverse(argv[optind-1], &invert, &optind, 0)) break;
Marc Bouchere6869a82000-03-20 06:03:29 +0000105 if (!parse_rate(optarg, &r->avg))
106 exit_error(PARAMETER_PROBLEM,
107 "bad rate `%s'", optarg);
Rusty Russell7e53bf92000-03-20 07:03:28 +0000108 break;
Marc Bouchere6869a82000-03-20 06:03:29 +0000109
110 case '$':
Phil Oester35160ee2004-09-21 10:43:45 +0000111 if (check_inverse(argv[optind-1], &invert, &optind, 0)) break;
Marc Boucher06e63942001-07-23 15:34:46 +0000112 if (string_to_number(optarg, 0, 10000, &num) == -1)
Marc Bouchere6869a82000-03-20 06:03:29 +0000113 exit_error(PARAMETER_PROBLEM,
114 "bad --limit-burst `%s'", optarg);
115 r->burst = num;
116 break;
117
118 default:
119 return 0;
120 }
121
Phil Oester35160ee2004-09-21 10:43:45 +0000122 if (invert)
123 exit_error(PARAMETER_PROBLEM,
124 "limit does not support invert");
125
Marc Bouchere6869a82000-03-20 06:03:29 +0000126 return 1;
127}
128
129/* Final check; nothing. */
130static void final_check(unsigned int flags)
131{
132}
133
134static struct rates
135{
136 const char *name;
137 u_int32_t mult;
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +0000138} rates[] = { { "day", XT_LIMIT_SCALE*24*60*60 },
139 { "hour", XT_LIMIT_SCALE*60*60 },
140 { "min", XT_LIMIT_SCALE*60 },
141 { "sec", XT_LIMIT_SCALE } };
Marc Bouchere6869a82000-03-20 06:03:29 +0000142
143static void print_rate(u_int32_t period)
144{
145 unsigned int i;
146
147 for (i = 1; i < sizeof(rates)/sizeof(struct rates); i++) {
148 if (period > rates[i].mult
Harald Welte1412e452001-10-16 08:26:37 +0000149 || rates[i].mult/period < rates[i].mult%period)
Marc Bouchere6869a82000-03-20 06:03:29 +0000150 break;
151 }
152
153 printf("%u/%s ", rates[i-1].mult / period, rates[i-1].name);
154}
155
156/* Prints out the matchinfo. */
157static void
Yasuyuki KOZAKAIc0a9ab92007-07-24 06:02:05 +0000158print(const void *ip,
Yasuyuki KOZAKAI193df8e2007-07-24 05:57:28 +0000159 const struct xt_entry_match *match,
Marc Bouchere6869a82000-03-20 06:03:29 +0000160 int numeric)
161{
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +0000162 struct xt_rateinfo *r = (struct xt_rateinfo *)match->data;
Marc Bouchere6869a82000-03-20 06:03:29 +0000163 printf("limit: avg "); print_rate(r->avg);
164 printf("burst %u ", r->burst);
165}
166
167/* FIXME: Make minimalist: only print rate if not default --RR */
Yasuyuki KOZAKAIc0a9ab92007-07-24 06:02:05 +0000168static void save(const void *ip, const struct xt_entry_match *match)
Marc Bouchere6869a82000-03-20 06:03:29 +0000169{
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +0000170 struct xt_rateinfo *r = (struct xt_rateinfo *)match->data;
Marc Bouchere6869a82000-03-20 06:03:29 +0000171
172 printf("--limit "); print_rate(r->avg);
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +0000173 if (r->burst != XT_LIMIT_BURST)
Marc Bouchere6869a82000-03-20 06:03:29 +0000174 printf("--limit-burst %u ", r->burst);
175}
176
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +0000177static struct xtables_match limit = {
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +0000178 .family = AF_INET,
Pablo Neira8caee8b2004-12-28 13:11:59 +0000179 .name = "limit",
180 .version = IPTABLES_VERSION,
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +0000181 .size = XT_ALIGN(sizeof(struct xt_rateinfo)),
182 .userspacesize = offsetof(struct xt_rateinfo, prev),
183 .help = &help,
184 .init = &init,
185 .parse = &parse,
186 .final_check = &final_check,
187 .print = &print,
188 .save = &save,
189 .extra_opts = opts
190};
191
192static struct xtables_match limit6 = {
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +0000193 .family = AF_INET6,
194 .name = "limit",
195 .version = IPTABLES_VERSION,
196 .size = XT_ALIGN(sizeof(struct xt_rateinfo)),
197 .userspacesize = offsetof(struct xt_rateinfo, prev),
Pablo Neira8caee8b2004-12-28 13:11:59 +0000198 .help = &help,
199 .init = &init,
200 .parse = &parse,
201 .final_check = &final_check,
202 .print = &print,
203 .save = &save,
204 .extra_opts = opts
Marc Bouchere6869a82000-03-20 06:03:29 +0000205};
206
207void _init(void)
208{
Yasuyuki KOZAKAI4489c0d2007-07-24 07:11:26 +0000209 xtables_register_match(&limit);
210 xtables_register_match(&limit6);
Marc Bouchere6869a82000-03-20 06:03:29 +0000211}