]> git.karo-electronics.de Git - karo-tx-linux.git/blob - net/netfilter/nft_quota.c
Merge remote-tracking branches 'asoc/fix/nau8825', 'asoc/fix/rt5645', 'asoc/fix/tlv32...
[karo-tx-linux.git] / net / netfilter / nft_quota.c
1 /*
2  * Copyright (c) 2016 Pablo Neira Ayuso <pablo@netfilter.org>
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
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/module.h>
12 #include <linux/atomic.h>
13 #include <linux/netlink.h>
14 #include <linux/netfilter.h>
15 #include <linux/netfilter/nf_tables.h>
16 #include <net/netfilter/nf_tables.h>
17
18 struct nft_quota {
19         u64             quota;
20         unsigned long   flags;
21         atomic64_t      consumed;
22 };
23
24 static inline bool nft_overquota(struct nft_quota *priv,
25                                  const struct sk_buff *skb)
26 {
27         return atomic64_add_return(skb->len, &priv->consumed) >= priv->quota;
28 }
29
30 static inline bool nft_quota_invert(struct nft_quota *priv)
31 {
32         return priv->flags & NFT_QUOTA_F_INV;
33 }
34
35 static inline void nft_quota_do_eval(struct nft_quota *priv,
36                                      struct nft_regs *regs,
37                                      const struct nft_pktinfo *pkt)
38 {
39         if (nft_overquota(priv, pkt->skb) ^ nft_quota_invert(priv))
40                 regs->verdict.code = NFT_BREAK;
41 }
42
43 static const struct nla_policy nft_quota_policy[NFTA_QUOTA_MAX + 1] = {
44         [NFTA_QUOTA_BYTES]      = { .type = NLA_U64 },
45         [NFTA_QUOTA_FLAGS]      = { .type = NLA_U32 },
46         [NFTA_QUOTA_CONSUMED]   = { .type = NLA_U64 },
47 };
48
49 #define NFT_QUOTA_DEPLETED_BIT  1       /* From NFT_QUOTA_F_DEPLETED. */
50
51 static void nft_quota_obj_eval(struct nft_object *obj,
52                                struct nft_regs *regs,
53                                const struct nft_pktinfo *pkt)
54 {
55         struct nft_quota *priv = nft_obj_data(obj);
56         bool overquota;
57
58         overquota = nft_overquota(priv, pkt->skb);
59         if (overquota ^ nft_quota_invert(priv))
60                 regs->verdict.code = NFT_BREAK;
61
62         if (overquota &&
63             !test_and_set_bit(NFT_QUOTA_DEPLETED_BIT, &priv->flags))
64                 nft_obj_notify(nft_net(pkt), obj->table, obj, 0, 0,
65                                NFT_MSG_NEWOBJ, nft_pf(pkt), 0, GFP_ATOMIC);
66 }
67
68 static int nft_quota_do_init(const struct nlattr * const tb[],
69                              struct nft_quota *priv)
70 {
71         unsigned long flags = 0;
72         u64 quota, consumed = 0;
73
74         if (!tb[NFTA_QUOTA_BYTES])
75                 return -EINVAL;
76
77         quota = be64_to_cpu(nla_get_be64(tb[NFTA_QUOTA_BYTES]));
78         if (quota > S64_MAX)
79                 return -EOVERFLOW;
80
81         if (tb[NFTA_QUOTA_CONSUMED]) {
82                 consumed = be64_to_cpu(nla_get_be64(tb[NFTA_QUOTA_CONSUMED]));
83                 if (consumed > quota)
84                         return -EINVAL;
85         }
86
87         if (tb[NFTA_QUOTA_FLAGS]) {
88                 flags = ntohl(nla_get_be32(tb[NFTA_QUOTA_FLAGS]));
89                 if (flags & ~NFT_QUOTA_F_INV)
90                         return -EINVAL;
91                 if (flags & NFT_QUOTA_F_DEPLETED)
92                         return -EOPNOTSUPP;
93         }
94
95         priv->quota = quota;
96         priv->flags = flags;
97         atomic64_set(&priv->consumed, consumed);
98
99         return 0;
100 }
101
102 static int nft_quota_obj_init(const struct nlattr * const tb[],
103                               struct nft_object *obj)
104 {
105         struct nft_quota *priv = nft_obj_data(obj);
106
107         return nft_quota_do_init(tb, priv);
108 }
109
110 static int nft_quota_do_dump(struct sk_buff *skb, struct nft_quota *priv,
111                              bool reset)
112 {
113         u32 flags = priv->flags;
114         u64 consumed;
115
116         if (reset) {
117                 consumed = atomic64_xchg(&priv->consumed, 0);
118                 if (test_and_clear_bit(NFT_QUOTA_DEPLETED_BIT, &priv->flags))
119                         flags |= NFT_QUOTA_F_DEPLETED;
120         } else {
121                 consumed = atomic64_read(&priv->consumed);
122         }
123
124         /* Since we inconditionally increment consumed quota for each packet
125          * that we see, don't go over the quota boundary in what we send to
126          * userspace.
127          */
128         if (consumed > priv->quota)
129                 consumed = priv->quota;
130
131         if (nla_put_be64(skb, NFTA_QUOTA_BYTES, cpu_to_be64(priv->quota),
132                          NFTA_QUOTA_PAD) ||
133             nla_put_be64(skb, NFTA_QUOTA_CONSUMED, cpu_to_be64(consumed),
134                          NFTA_QUOTA_PAD) ||
135             nla_put_be32(skb, NFTA_QUOTA_FLAGS, htonl(flags)))
136                 goto nla_put_failure;
137         return 0;
138
139 nla_put_failure:
140         return -1;
141 }
142
143 static int nft_quota_obj_dump(struct sk_buff *skb, struct nft_object *obj,
144                               bool reset)
145 {
146         struct nft_quota *priv = nft_obj_data(obj);
147
148         return nft_quota_do_dump(skb, priv, reset);
149 }
150
151 static struct nft_object_type nft_quota_obj __read_mostly = {
152         .type           = NFT_OBJECT_QUOTA,
153         .size           = sizeof(struct nft_quota),
154         .maxattr        = NFTA_QUOTA_MAX,
155         .policy         = nft_quota_policy,
156         .init           = nft_quota_obj_init,
157         .eval           = nft_quota_obj_eval,
158         .dump           = nft_quota_obj_dump,
159         .owner          = THIS_MODULE,
160 };
161
162 static void nft_quota_eval(const struct nft_expr *expr,
163                            struct nft_regs *regs,
164                            const struct nft_pktinfo *pkt)
165 {
166         struct nft_quota *priv = nft_expr_priv(expr);
167
168         nft_quota_do_eval(priv, regs, pkt);
169 }
170
171 static int nft_quota_init(const struct nft_ctx *ctx,
172                           const struct nft_expr *expr,
173                           const struct nlattr * const tb[])
174 {
175         struct nft_quota *priv = nft_expr_priv(expr);
176
177         return nft_quota_do_init(tb, priv);
178 }
179
180 static int nft_quota_dump(struct sk_buff *skb, const struct nft_expr *expr)
181 {
182         struct nft_quota *priv = nft_expr_priv(expr);
183
184         return nft_quota_do_dump(skb, priv, false);
185 }
186
187 static struct nft_expr_type nft_quota_type;
188 static const struct nft_expr_ops nft_quota_ops = {
189         .type           = &nft_quota_type,
190         .size           = NFT_EXPR_SIZE(sizeof(struct nft_quota)),
191         .eval           = nft_quota_eval,
192         .init           = nft_quota_init,
193         .dump           = nft_quota_dump,
194 };
195
196 static struct nft_expr_type nft_quota_type __read_mostly = {
197         .name           = "quota",
198         .ops            = &nft_quota_ops,
199         .policy         = nft_quota_policy,
200         .maxattr        = NFTA_QUOTA_MAX,
201         .flags          = NFT_EXPR_STATEFUL,
202         .owner          = THIS_MODULE,
203 };
204
205 static int __init nft_quota_module_init(void)
206 {
207         int err;
208
209         err = nft_register_obj(&nft_quota_obj);
210         if (err < 0)
211                 return err;
212
213         err = nft_register_expr(&nft_quota_type);
214         if (err < 0)
215                 goto err1;
216
217         return 0;
218 err1:
219         nft_unregister_obj(&nft_quota_obj);
220         return err;
221 }
222
223 static void __exit nft_quota_module_exit(void)
224 {
225         nft_unregister_expr(&nft_quota_type);
226         nft_unregister_obj(&nft_quota_obj);
227 }
228
229 module_init(nft_quota_module_init);
230 module_exit(nft_quota_module_exit);
231
232 MODULE_LICENSE("GPL");
233 MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
234 MODULE_ALIAS_NFT_EXPR("quota");
235 MODULE_ALIAS_NFT_OBJ(NFT_OBJECT_QUOTA);