2 * Copyright (c) 2008-2009 Patrick McHardy <kaber@trash.net>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Development of this code funded by Astaro AG (http://www.astaro.com/)
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/spinlock.h>
15 #include <linux/netlink.h>
16 #include <linux/netfilter.h>
17 #include <linux/netfilter/nf_tables.h>
18 #include <net/netfilter/nf_tables.h>
31 static inline bool nft_limit_eval(struct nft_limit
*limit
, u64 cost
)
36 spin_lock_bh(&limit
->lock
);
38 tokens
= limit
->tokens
+ now
- limit
->last
;
39 if (tokens
> limit
->tokens_max
)
40 tokens
= limit
->tokens_max
;
43 delta
= tokens
- cost
;
45 limit
->tokens
= delta
;
46 spin_unlock_bh(&limit
->lock
);
49 limit
->tokens
= tokens
;
50 spin_unlock_bh(&limit
->lock
);
51 return !limit
->invert
;
54 /* Use same default as in iptables. */
55 #define NFT_LIMIT_PKT_BURST_DEFAULT 5
57 static int nft_limit_init(struct nft_limit
*limit
,
58 const struct nlattr
* const tb
[], bool pkts
)
62 if (tb
[NFTA_LIMIT_RATE
] == NULL
||
63 tb
[NFTA_LIMIT_UNIT
] == NULL
)
66 limit
->rate
= be64_to_cpu(nla_get_be64(tb
[NFTA_LIMIT_RATE
]));
67 unit
= be64_to_cpu(nla_get_be64(tb
[NFTA_LIMIT_UNIT
]));
68 limit
->nsecs
= unit
* NSEC_PER_SEC
;
69 if (limit
->rate
== 0 || limit
->nsecs
< unit
)
72 if (tb
[NFTA_LIMIT_BURST
])
73 limit
->burst
= ntohl(nla_get_be32(tb
[NFTA_LIMIT_BURST
]));
75 if (pkts
&& limit
->burst
== 0)
76 limit
->burst
= NFT_LIMIT_PKT_BURST_DEFAULT
;
78 if (limit
->rate
+ limit
->burst
< limit
->rate
)
82 tokens
= div_u64(limit
->nsecs
, limit
->rate
) * limit
->burst
;
84 /* The token bucket size limits the number of tokens can be
85 * accumulated. tokens_max specifies the bucket size.
86 * tokens_max = unit * (rate + burst) / rate.
88 tokens
= div_u64(limit
->nsecs
* (limit
->rate
+ limit
->burst
),
92 limit
->tokens
= tokens
;
93 limit
->tokens_max
= limit
->tokens
;
95 if (tb
[NFTA_LIMIT_FLAGS
]) {
96 u32 flags
= ntohl(nla_get_be32(tb
[NFTA_LIMIT_FLAGS
]));
98 if (flags
& NFT_LIMIT_F_INV
)
101 limit
->last
= ktime_get_ns();
102 spin_lock_init(&limit
->lock
);
107 static int nft_limit_dump(struct sk_buff
*skb
, const struct nft_limit
*limit
,
108 enum nft_limit_type type
)
110 u32 flags
= limit
->invert
? NFT_LIMIT_F_INV
: 0;
111 u64 secs
= div_u64(limit
->nsecs
, NSEC_PER_SEC
);
113 if (nla_put_be64(skb
, NFTA_LIMIT_RATE
, cpu_to_be64(limit
->rate
),
115 nla_put_be64(skb
, NFTA_LIMIT_UNIT
, cpu_to_be64(secs
),
117 nla_put_be32(skb
, NFTA_LIMIT_BURST
, htonl(limit
->burst
)) ||
118 nla_put_be32(skb
, NFTA_LIMIT_TYPE
, htonl(type
)) ||
119 nla_put_be32(skb
, NFTA_LIMIT_FLAGS
, htonl(flags
)))
120 goto nla_put_failure
;
127 struct nft_limit_pkts
{
128 struct nft_limit limit
;
132 static void nft_limit_pkts_eval(const struct nft_expr
*expr
,
133 struct nft_regs
*regs
,
134 const struct nft_pktinfo
*pkt
)
136 struct nft_limit_pkts
*priv
= nft_expr_priv(expr
);
138 if (nft_limit_eval(&priv
->limit
, priv
->cost
))
139 regs
->verdict
.code
= NFT_BREAK
;
142 static const struct nla_policy nft_limit_policy
[NFTA_LIMIT_MAX
+ 1] = {
143 [NFTA_LIMIT_RATE
] = { .type
= NLA_U64
},
144 [NFTA_LIMIT_UNIT
] = { .type
= NLA_U64
},
145 [NFTA_LIMIT_BURST
] = { .type
= NLA_U32
},
146 [NFTA_LIMIT_TYPE
] = { .type
= NLA_U32
},
147 [NFTA_LIMIT_FLAGS
] = { .type
= NLA_U32
},
150 static int nft_limit_pkts_init(const struct nft_ctx
*ctx
,
151 const struct nft_expr
*expr
,
152 const struct nlattr
* const tb
[])
154 struct nft_limit_pkts
*priv
= nft_expr_priv(expr
);
157 err
= nft_limit_init(&priv
->limit
, tb
, true);
161 priv
->cost
= div64_u64(priv
->limit
.nsecs
, priv
->limit
.rate
);
165 static int nft_limit_pkts_dump(struct sk_buff
*skb
, const struct nft_expr
*expr
)
167 const struct nft_limit_pkts
*priv
= nft_expr_priv(expr
);
169 return nft_limit_dump(skb
, &priv
->limit
, NFT_LIMIT_PKTS
);
172 static struct nft_expr_type nft_limit_type
;
173 static const struct nft_expr_ops nft_limit_pkts_ops
= {
174 .type
= &nft_limit_type
,
175 .size
= NFT_EXPR_SIZE(sizeof(struct nft_limit_pkts
)),
176 .eval
= nft_limit_pkts_eval
,
177 .init
= nft_limit_pkts_init
,
178 .dump
= nft_limit_pkts_dump
,
181 static void nft_limit_bytes_eval(const struct nft_expr
*expr
,
182 struct nft_regs
*regs
,
183 const struct nft_pktinfo
*pkt
)
185 struct nft_limit
*priv
= nft_expr_priv(expr
);
186 u64 cost
= div64_u64(priv
->nsecs
* pkt
->skb
->len
, priv
->rate
);
188 if (nft_limit_eval(priv
, cost
))
189 regs
->verdict
.code
= NFT_BREAK
;
192 static int nft_limit_bytes_init(const struct nft_ctx
*ctx
,
193 const struct nft_expr
*expr
,
194 const struct nlattr
* const tb
[])
196 struct nft_limit
*priv
= nft_expr_priv(expr
);
198 return nft_limit_init(priv
, tb
, false);
201 static int nft_limit_bytes_dump(struct sk_buff
*skb
,
202 const struct nft_expr
*expr
)
204 const struct nft_limit
*priv
= nft_expr_priv(expr
);
206 return nft_limit_dump(skb
, priv
, NFT_LIMIT_PKT_BYTES
);
209 static const struct nft_expr_ops nft_limit_bytes_ops
= {
210 .type
= &nft_limit_type
,
211 .size
= NFT_EXPR_SIZE(sizeof(struct nft_limit
)),
212 .eval
= nft_limit_bytes_eval
,
213 .init
= nft_limit_bytes_init
,
214 .dump
= nft_limit_bytes_dump
,
217 static const struct nft_expr_ops
*
218 nft_limit_select_ops(const struct nft_ctx
*ctx
,
219 const struct nlattr
* const tb
[])
221 if (tb
[NFTA_LIMIT_TYPE
] == NULL
)
222 return &nft_limit_pkts_ops
;
224 switch (ntohl(nla_get_be32(tb
[NFTA_LIMIT_TYPE
]))) {
226 return &nft_limit_pkts_ops
;
227 case NFT_LIMIT_PKT_BYTES
:
228 return &nft_limit_bytes_ops
;
230 return ERR_PTR(-EOPNOTSUPP
);
233 static struct nft_expr_type nft_limit_type __read_mostly
= {
235 .select_ops
= nft_limit_select_ops
,
236 .policy
= nft_limit_policy
,
237 .maxattr
= NFTA_LIMIT_MAX
,
238 .flags
= NFT_EXPR_STATEFUL
,
239 .owner
= THIS_MODULE
,
242 static void nft_limit_obj_pkts_eval(struct nft_object
*obj
,
243 struct nft_regs
*regs
,
244 const struct nft_pktinfo
*pkt
)
246 struct nft_limit_pkts
*priv
= nft_obj_data(obj
);
248 if (nft_limit_eval(&priv
->limit
, priv
->cost
))
249 regs
->verdict
.code
= NFT_BREAK
;
252 static int nft_limit_obj_pkts_init(const struct nft_ctx
*ctx
,
253 const struct nlattr
* const tb
[],
254 struct nft_object
*obj
)
256 struct nft_limit_pkts
*priv
= nft_obj_data(obj
);
259 err
= nft_limit_init(&priv
->limit
, tb
, true);
263 priv
->cost
= div64_u64(priv
->limit
.nsecs
, priv
->limit
.rate
);
267 static int nft_limit_obj_pkts_dump(struct sk_buff
*skb
,
268 struct nft_object
*obj
,
271 const struct nft_limit_pkts
*priv
= nft_obj_data(obj
);
273 return nft_limit_dump(skb
, &priv
->limit
, NFT_LIMIT_PKTS
);
276 static struct nft_object_type nft_limit_obj_type
;
277 static const struct nft_object_ops nft_limit_obj_pkts_ops
= {
278 .type
= &nft_limit_obj_type
,
279 .size
= NFT_EXPR_SIZE(sizeof(struct nft_limit_pkts
)),
280 .init
= nft_limit_obj_pkts_init
,
281 .eval
= nft_limit_obj_pkts_eval
,
282 .dump
= nft_limit_obj_pkts_dump
,
285 static void nft_limit_obj_bytes_eval(struct nft_object
*obj
,
286 struct nft_regs
*regs
,
287 const struct nft_pktinfo
*pkt
)
289 struct nft_limit
*priv
= nft_obj_data(obj
);
290 u64 cost
= div64_u64(priv
->nsecs
* pkt
->skb
->len
, priv
->rate
);
292 if (nft_limit_eval(priv
, cost
))
293 regs
->verdict
.code
= NFT_BREAK
;
296 static int nft_limit_obj_bytes_init(const struct nft_ctx
*ctx
,
297 const struct nlattr
* const tb
[],
298 struct nft_object
*obj
)
300 struct nft_limit
*priv
= nft_obj_data(obj
);
302 return nft_limit_init(priv
, tb
, false);
305 static int nft_limit_obj_bytes_dump(struct sk_buff
*skb
,
306 struct nft_object
*obj
,
309 const struct nft_limit
*priv
= nft_obj_data(obj
);
311 return nft_limit_dump(skb
, priv
, NFT_LIMIT_PKT_BYTES
);
314 static struct nft_object_type nft_limit_obj_type
;
315 static const struct nft_object_ops nft_limit_obj_bytes_ops
= {
316 .type
= &nft_limit_obj_type
,
317 .size
= sizeof(struct nft_limit
),
318 .init
= nft_limit_obj_bytes_init
,
319 .eval
= nft_limit_obj_bytes_eval
,
320 .dump
= nft_limit_obj_bytes_dump
,
323 static const struct nft_object_ops
*
324 nft_limit_obj_select_ops(const struct nft_ctx
*ctx
,
325 const struct nlattr
* const tb
[])
327 if (!tb
[NFTA_LIMIT_TYPE
])
328 return &nft_limit_obj_pkts_ops
;
330 switch (ntohl(nla_get_be32(tb
[NFTA_LIMIT_TYPE
]))) {
332 return &nft_limit_obj_pkts_ops
;
333 case NFT_LIMIT_PKT_BYTES
:
334 return &nft_limit_obj_bytes_ops
;
336 return ERR_PTR(-EOPNOTSUPP
);
339 static struct nft_object_type nft_limit_obj_type __read_mostly
= {
340 .select_ops
= nft_limit_obj_select_ops
,
341 .type
= NFT_OBJECT_LIMIT
,
342 .maxattr
= NFTA_LIMIT_MAX
,
343 .policy
= nft_limit_policy
,
344 .owner
= THIS_MODULE
,
347 static int __init
nft_limit_module_init(void)
351 err
= nft_register_obj(&nft_limit_obj_type
);
355 err
= nft_register_expr(&nft_limit_type
);
361 nft_unregister_obj(&nft_limit_obj_type
);
365 static void __exit
nft_limit_module_exit(void)
367 nft_unregister_expr(&nft_limit_type
);
368 nft_unregister_obj(&nft_limit_obj_type
);
371 module_init(nft_limit_module_init
);
372 module_exit(nft_limit_module_exit
);
374 MODULE_LICENSE("GPL");
375 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
376 MODULE_ALIAS_NFT_EXPR("limit");
377 MODULE_ALIAS_NFT_OBJ(NFT_OBJECT_LIMIT
);