blob: 755d2f6693a2ff39b975996b8d0a2fb65073a812 [file] [log] [blame]
Patrick McHardy50c164a2007-12-04 13:02:19 +01001/*
2 * (C) 2007 Patrick McHardy <kaber@trash.net>
3 *
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.
7 */
8#include <linux/module.h>
9#include <linux/skbuff.h>
10#include <linux/gen_stats.h>
11
12#include <linux/netfilter/x_tables.h>
13#include <linux/netfilter/xt_rateest.h>
14#include <net/netfilter/xt_rateest.h>
15
16
Jan Engelhardtf7108a22008-10-08 11:35:18 +020017static bool
Jan Engelhardt62fc8052009-07-07 20:42:08 +020018xt_rateest_mt(const struct sk_buff *skb, struct xt_action_param *par)
Patrick McHardy50c164a2007-12-04 13:02:19 +010019{
Jan Engelhardtf7108a22008-10-08 11:35:18 +020020 const struct xt_rateest_match_info *info = par->matchinfo;
Eric Dumazet1c0d32f2016-12-04 09:48:16 -080021 struct gnet_stats_rate_est64 sample = {0};
Patrick McHardy50c164a2007-12-04 13:02:19 +010022 u_int32_t bps1, bps2, pps1, pps2;
23 bool ret = true;
24
Eric Dumazet1c0d32f2016-12-04 09:48:16 -080025 gen_estimator_read(&info->est1->rate_est, &sample);
26
Patrick McHardy50c164a2007-12-04 13:02:19 +010027 if (info->flags & XT_RATEEST_MATCH_DELTA) {
Eric Dumazet1c0d32f2016-12-04 09:48:16 -080028 bps1 = info->bps1 >= sample.bps ? info->bps1 - sample.bps : 0;
29 pps1 = info->pps1 >= sample.pps ? info->pps1 - sample.pps : 0;
Patrick McHardy50c164a2007-12-04 13:02:19 +010030 } else {
Eric Dumazet1c0d32f2016-12-04 09:48:16 -080031 bps1 = sample.bps;
32 pps1 = sample.pps;
Patrick McHardy50c164a2007-12-04 13:02:19 +010033 }
Patrick McHardy50c164a2007-12-04 13:02:19 +010034
35 if (info->flags & XT_RATEEST_MATCH_ABS) {
36 bps2 = info->bps2;
37 pps2 = info->pps2;
38 } else {
Eric Dumazet1c0d32f2016-12-04 09:48:16 -080039 gen_estimator_read(&info->est2->rate_est, &sample);
40
Patrick McHardy50c164a2007-12-04 13:02:19 +010041 if (info->flags & XT_RATEEST_MATCH_DELTA) {
Eric Dumazet1c0d32f2016-12-04 09:48:16 -080042 bps2 = info->bps2 >= sample.bps ? info->bps2 - sample.bps : 0;
43 pps2 = info->pps2 >= sample.pps ? info->pps2 - sample.pps : 0;
Patrick McHardy50c164a2007-12-04 13:02:19 +010044 } else {
Eric Dumazet1c0d32f2016-12-04 09:48:16 -080045 bps2 = sample.bps;
46 pps2 = sample.pps;
Patrick McHardy50c164a2007-12-04 13:02:19 +010047 }
Patrick McHardy50c164a2007-12-04 13:02:19 +010048 }
49
50 switch (info->mode) {
51 case XT_RATEEST_MATCH_LT:
52 if (info->flags & XT_RATEEST_MATCH_BPS)
53 ret &= bps1 < bps2;
54 if (info->flags & XT_RATEEST_MATCH_PPS)
55 ret &= pps1 < pps2;
56 break;
57 case XT_RATEEST_MATCH_GT:
58 if (info->flags & XT_RATEEST_MATCH_BPS)
59 ret &= bps1 > bps2;
60 if (info->flags & XT_RATEEST_MATCH_PPS)
61 ret &= pps1 > pps2;
62 break;
63 case XT_RATEEST_MATCH_EQ:
64 if (info->flags & XT_RATEEST_MATCH_BPS)
65 ret &= bps1 == bps2;
66 if (info->flags & XT_RATEEST_MATCH_PPS)
Patrick McHardy4d900f92009-06-22 14:17:12 +020067 ret &= pps1 == pps2;
Patrick McHardy50c164a2007-12-04 13:02:19 +010068 break;
69 }
70
71 ret ^= info->flags & XT_RATEEST_MATCH_INVERT ? true : false;
72 return ret;
73}
74
Jan Engelhardtb0f38452010-03-19 17:16:42 +010075static int xt_rateest_mt_checkentry(const struct xt_mtchk_param *par)
Patrick McHardy50c164a2007-12-04 13:02:19 +010076{
Jan Engelhardt9b4fce72008-10-08 11:35:18 +020077 struct xt_rateest_match_info *info = par->matchinfo;
Patrick McHardy50c164a2007-12-04 13:02:19 +010078 struct xt_rateest *est1, *est2;
Eric Dumazet00fe1ae2011-07-29 16:24:46 +020079 int ret = -EINVAL;
Patrick McHardy50c164a2007-12-04 13:02:19 +010080
81 if (hweight32(info->flags & (XT_RATEEST_MATCH_ABS |
82 XT_RATEEST_MATCH_REL)) != 1)
83 goto err1;
84
85 if (!(info->flags & (XT_RATEEST_MATCH_BPS | XT_RATEEST_MATCH_PPS)))
86 goto err1;
87
88 switch (info->mode) {
89 case XT_RATEEST_MATCH_EQ:
90 case XT_RATEEST_MATCH_LT:
91 case XT_RATEEST_MATCH_GT:
92 break;
93 default:
94 goto err1;
95 }
96
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +010097 ret = -ENOENT;
Patrick McHardy50c164a2007-12-04 13:02:19 +010098 est1 = xt_rateest_lookup(info->name1);
99 if (!est1)
100 goto err1;
101
Eric Dumazet00fe1ae2011-07-29 16:24:46 +0200102 est2 = NULL;
Patrick McHardy50c164a2007-12-04 13:02:19 +0100103 if (info->flags & XT_RATEEST_MATCH_REL) {
104 est2 = xt_rateest_lookup(info->name2);
105 if (!est2)
106 goto err2;
Eric Dumazet00fe1ae2011-07-29 16:24:46 +0200107 }
Patrick McHardy50c164a2007-12-04 13:02:19 +0100108
109 info->est1 = est1;
110 info->est2 = est2;
Jan Engelhardtbd414ee2010-03-23 16:35:56 +0100111 return 0;
Patrick McHardy50c164a2007-12-04 13:02:19 +0100112
113err2:
114 xt_rateest_put(est1);
115err1:
Eric Dumazet00fe1ae2011-07-29 16:24:46 +0200116 return ret;
Patrick McHardy50c164a2007-12-04 13:02:19 +0100117}
118
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200119static void xt_rateest_mt_destroy(const struct xt_mtdtor_param *par)
Patrick McHardy50c164a2007-12-04 13:02:19 +0100120{
Jan Engelhardt6be3d852008-10-08 11:35:19 +0200121 struct xt_rateest_match_info *info = par->matchinfo;
Patrick McHardy50c164a2007-12-04 13:02:19 +0100122
123 xt_rateest_put(info->est1);
124 if (info->est2)
125 xt_rateest_put(info->est2);
126}
127
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200128static struct xt_match xt_rateest_mt_reg __read_mostly = {
129 .name = "rateest",
130 .revision = 0,
131 .family = NFPROTO_UNSPEC,
132 .match = xt_rateest_mt,
133 .checkentry = xt_rateest_mt_checkentry,
134 .destroy = xt_rateest_mt_destroy,
135 .matchsize = sizeof(struct xt_rateest_match_info),
Willem de Bruijnec231892017-01-02 17:19:46 -0500136 .usersize = offsetof(struct xt_rateest_match_info, est1),
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200137 .me = THIS_MODULE,
Patrick McHardy50c164a2007-12-04 13:02:19 +0100138};
139
140static int __init xt_rateest_mt_init(void)
141{
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200142 return xt_register_match(&xt_rateest_mt_reg);
Patrick McHardy50c164a2007-12-04 13:02:19 +0100143}
144
145static void __exit xt_rateest_mt_fini(void)
146{
Jan Engelhardt55b69e92008-10-08 11:35:01 +0200147 xt_unregister_match(&xt_rateest_mt_reg);
Patrick McHardy50c164a2007-12-04 13:02:19 +0100148}
149
150MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
151MODULE_LICENSE("GPL");
152MODULE_DESCRIPTION("xtables rate estimator match");
153MODULE_ALIAS("ipt_rateest");
154MODULE_ALIAS("ip6t_rateest");
155module_init(xt_rateest_mt_init);
156module_exit(xt_rateest_mt_fini);