blob: 2e07cec50ffdfdea27091a36762b1672bc84642c [file] [log] [blame]
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001/*
2 * (C) 2012-2013 by 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 * This software has been sponsored by Sophos Astaro <http://www.sophos.com>
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/netlink.h>
15#include <linux/netfilter.h>
16#include <linux/netfilter/nfnetlink.h>
17#include <linux/netfilter/nf_tables.h>
18#include <linux/netfilter/nf_tables_compat.h>
19#include <linux/netfilter/x_tables.h>
20#include <linux/netfilter_ipv4/ip_tables.h>
21#include <linux/netfilter_ipv6/ip6_tables.h>
Arturo Borrero5191f4d2015-01-29 19:34:42 +010022#include <linux/netfilter_bridge/ebtables.h>
Arturo Borrero5f158932015-02-16 11:32:28 +010023#include <linux/netfilter_arp/arp_tables.h>
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020024#include <net/netfilter/nf_tables.h>
25
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +020026static int nft_compat_chain_validate_dependency(const char *tablename,
27 const struct nft_chain *chain)
28{
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +020029 const struct nft_base_chain *basechain;
30
31 if (!tablename || !(chain->flags & NFT_BASE_CHAIN))
32 return 0;
33
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +020034 basechain = nft_base_chain(chain);
Pablo Neira Ayusoc9186872014-11-10 20:53:55 +010035 if (strcmp(tablename, "nat") == 0 &&
36 basechain->type->type != NFT_CHAIN_T_NAT)
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +020037 return -EINVAL;
38
39 return 0;
40}
41
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020042union nft_entry {
43 struct ipt_entry e4;
44 struct ip6t_entry e6;
Arturo Borrero5191f4d2015-01-29 19:34:42 +010045 struct ebt_entry ebt;
Arturo Borrero5f158932015-02-16 11:32:28 +010046 struct arpt_entry arp;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020047};
48
49static inline void
50nft_compat_set_par(struct xt_action_param *par, void *xt, const void *xt_info)
51{
52 par->target = xt;
53 par->targinfo = xt_info;
54 par->hotdrop = false;
55}
56
Arturo Borrero5191f4d2015-01-29 19:34:42 +010057static void nft_target_eval_xt(const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +010058 struct nft_regs *regs,
Arturo Borrero5191f4d2015-01-29 19:34:42 +010059 const struct nft_pktinfo *pkt)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020060{
61 void *info = nft_expr_priv(expr);
62 struct xt_target *target = expr->ops->data;
63 struct sk_buff *skb = pkt->skb;
64 int ret;
65
66 nft_compat_set_par((struct xt_action_param *)&pkt->xt, target, info);
67
68 ret = target->target(skb, &pkt->xt);
69
70 if (pkt->xt.hotdrop)
71 ret = NF_DROP;
72
Arturo Borrero5191f4d2015-01-29 19:34:42 +010073 switch (ret) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020074 case XT_CONTINUE:
Patrick McHardya55e22e2015-04-11 02:27:31 +010075 regs->verdict.code = NFT_CONTINUE;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020076 break;
77 default:
Patrick McHardya55e22e2015-04-11 02:27:31 +010078 regs->verdict.code = ret;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +020079 break;
80 }
Arturo Borrero5191f4d2015-01-29 19:34:42 +010081}
82
83static void nft_target_eval_bridge(const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +010084 struct nft_regs *regs,
Arturo Borrero5191f4d2015-01-29 19:34:42 +010085 const struct nft_pktinfo *pkt)
86{
87 void *info = nft_expr_priv(expr);
88 struct xt_target *target = expr->ops->data;
89 struct sk_buff *skb = pkt->skb;
90 int ret;
91
92 nft_compat_set_par((struct xt_action_param *)&pkt->xt, target, info);
93
94 ret = target->target(skb, &pkt->xt);
95
96 if (pkt->xt.hotdrop)
97 ret = NF_DROP;
98
99 switch (ret) {
100 case EBT_ACCEPT:
Patrick McHardya55e22e2015-04-11 02:27:31 +0100101 regs->verdict.code = NF_ACCEPT;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100102 break;
103 case EBT_DROP:
Patrick McHardya55e22e2015-04-11 02:27:31 +0100104 regs->verdict.code = NF_DROP;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100105 break;
106 case EBT_CONTINUE:
Patrick McHardya55e22e2015-04-11 02:27:31 +0100107 regs->verdict.code = NFT_CONTINUE;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100108 break;
109 case EBT_RETURN:
Patrick McHardya55e22e2015-04-11 02:27:31 +0100110 regs->verdict.code = NFT_RETURN;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100111 break;
112 default:
Patrick McHardya55e22e2015-04-11 02:27:31 +0100113 regs->verdict.code = ret;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100114 break;
115 }
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200116}
117
118static const struct nla_policy nft_target_policy[NFTA_TARGET_MAX + 1] = {
119 [NFTA_TARGET_NAME] = { .type = NLA_NUL_STRING },
120 [NFTA_TARGET_REV] = { .type = NLA_U32 },
121 [NFTA_TARGET_INFO] = { .type = NLA_BINARY },
122};
123
124static void
125nft_target_set_tgchk_param(struct xt_tgchk_param *par,
126 const struct nft_ctx *ctx,
127 struct xt_target *target, void *info,
Arturo Borrero2156d322015-02-21 19:30:55 +0100128 union nft_entry *entry, u16 proto, bool inv)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200129{
Pablo Neira Ayuso2daf1b42014-11-07 18:48:33 +0100130 par->net = ctx->net;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200131 par->table = ctx->table->name;
132 switch (ctx->afi->family) {
133 case AF_INET:
134 entry->e4.ip.proto = proto;
135 entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
136 break;
137 case AF_INET6:
Pablo Neira Ayuso749177c2015-03-21 19:25:05 +0100138 if (proto)
139 entry->e6.ipv6.flags |= IP6T_F_PROTO;
140
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200141 entry->e6.ipv6.proto = proto;
142 entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
143 break;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100144 case NFPROTO_BRIDGE:
Arturo Borrero2156d322015-02-21 19:30:55 +0100145 entry->ebt.ethproto = (__force __be16)proto;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100146 entry->ebt.invflags = inv ? EBT_IPROTO : 0;
147 break;
Arturo Borrero5f158932015-02-16 11:32:28 +0100148 case NFPROTO_ARP:
149 break;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200150 }
151 par->entryinfo = entry;
152 par->target = target;
153 par->targinfo = info;
154 if (ctx->chain->flags & NFT_BASE_CHAIN) {
155 const struct nft_base_chain *basechain =
156 nft_base_chain(ctx->chain);
Patrick McHardy115a60b2014-01-03 12:16:15 +0000157 const struct nf_hook_ops *ops = &basechain->ops[0];
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200158
159 par->hook_mask = 1 << ops->hooknum;
Pablo Neira Ayuso493618a2014-10-14 12:43:50 +0200160 } else {
161 par->hook_mask = 0;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200162 }
163 par->family = ctx->afi->family;
Pablo Neira Ayuso55917a22015-05-14 14:57:23 +0200164 par->nft_compat = true;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200165}
166
167static void target_compat_from_user(struct xt_target *t, void *in, void *out)
168{
Pablo Neira Ayuso756c1b12014-06-17 21:18:44 +0200169 int pad;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200170
Pablo Neira Ayuso756c1b12014-06-17 21:18:44 +0200171 memcpy(out, in, t->targetsize);
172 pad = XT_ALIGN(t->targetsize) - t->targetsize;
173 if (pad > 0)
174 memset(out + t->targetsize, 0, pad);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200175}
176
177static const struct nla_policy nft_rule_compat_policy[NFTA_RULE_COMPAT_MAX + 1] = {
178 [NFTA_RULE_COMPAT_PROTO] = { .type = NLA_U32 },
179 [NFTA_RULE_COMPAT_FLAGS] = { .type = NLA_U32 },
180};
181
Arturo Borrero2156d322015-02-21 19:30:55 +0100182static int nft_parse_compat(const struct nlattr *attr, u16 *proto, bool *inv)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200183{
184 struct nlattr *tb[NFTA_RULE_COMPAT_MAX+1];
185 u32 flags;
186 int err;
187
188 err = nla_parse_nested(tb, NFTA_RULE_COMPAT_MAX, attr,
189 nft_rule_compat_policy);
190 if (err < 0)
191 return err;
192
193 if (!tb[NFTA_RULE_COMPAT_PROTO] || !tb[NFTA_RULE_COMPAT_FLAGS])
194 return -EINVAL;
195
196 flags = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_FLAGS]));
197 if (flags & ~NFT_RULE_COMPAT_F_MASK)
198 return -EINVAL;
199 if (flags & NFT_RULE_COMPAT_F_INV)
200 *inv = true;
201
Pablo Neira Ayuso8691a9a2013-11-16 22:16:47 +0100202 *proto = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_PROTO]));
203 return 0;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200204}
205
206static int
207nft_target_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
208 const struct nlattr * const tb[])
209{
210 void *info = nft_expr_priv(expr);
211 struct xt_target *target = expr->ops->data;
212 struct xt_tgchk_param par;
213 size_t size = XT_ALIGN(nla_len(tb[NFTA_TARGET_INFO]));
Arturo Borrero2156d322015-02-21 19:30:55 +0100214 u16 proto = 0;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200215 bool inv = false;
216 union nft_entry e = {};
217 int ret;
218
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +0200219 ret = nft_compat_chain_validate_dependency(target->table, ctx->chain);
220 if (ret < 0)
221 goto err;
222
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200223 target_compat_from_user(target, nla_data(tb[NFTA_TARGET_INFO]), info);
224
Pablo Neira Ayuso8691a9a2013-11-16 22:16:47 +0100225 if (ctx->nla[NFTA_RULE_COMPAT]) {
226 ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
227 if (ret < 0)
228 goto err;
229 }
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200230
231 nft_target_set_tgchk_param(&par, ctx, target, info, &e, proto, inv);
232
233 ret = xt_check_target(&par, size, proto, inv);
234 if (ret < 0)
235 goto err;
236
237 /* The standard target cannot be used */
238 if (target->target == NULL) {
239 ret = -EINVAL;
240 goto err;
241 }
242
243 return 0;
244err:
245 module_put(target->me);
246 return ret;
247}
248
249static void
Patrick McHardy62472bc2014-03-07 19:08:30 +0100250nft_target_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200251{
252 struct xt_target *target = expr->ops->data;
Pablo Neira Ayuso3d9b1422014-06-11 14:27:46 +0200253 void *info = nft_expr_priv(expr);
254 struct xt_tgdtor_param par;
255
256 par.net = ctx->net;
257 par.target = target;
258 par.targinfo = info;
259 par.family = ctx->afi->family;
260 if (par.target->destroy != NULL)
261 par.target->destroy(&par);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200262
263 module_put(target->me);
264}
265
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200266static int nft_target_dump(struct sk_buff *skb, const struct nft_expr *expr)
267{
268 const struct xt_target *target = expr->ops->data;
269 void *info = nft_expr_priv(expr);
270
271 if (nla_put_string(skb, NFTA_TARGET_NAME, target->name) ||
272 nla_put_be32(skb, NFTA_TARGET_REV, htonl(target->revision)) ||
Pablo Neira Ayuso756c1b12014-06-17 21:18:44 +0200273 nla_put(skb, NFTA_TARGET_INFO, XT_ALIGN(target->targetsize), info))
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200274 goto nla_put_failure;
275
276 return 0;
277
278nla_put_failure:
279 return -1;
280}
281
282static int nft_target_validate(const struct nft_ctx *ctx,
283 const struct nft_expr *expr,
284 const struct nft_data **data)
285{
286 struct xt_target *target = expr->ops->data;
287 unsigned int hook_mask = 0;
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +0200288 int ret;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200289
290 if (ctx->chain->flags & NFT_BASE_CHAIN) {
291 const struct nft_base_chain *basechain =
292 nft_base_chain(ctx->chain);
Patrick McHardy115a60b2014-01-03 12:16:15 +0000293 const struct nf_hook_ops *ops = &basechain->ops[0];
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200294
295 hook_mask = 1 << ops->hooknum;
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +0200296 if (!(hook_mask & target->hooks))
297 return -EINVAL;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200298
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +0200299 ret = nft_compat_chain_validate_dependency(target->table,
300 ctx->chain);
301 if (ret < 0)
302 return ret;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200303 }
304 return 0;
305}
306
307static void nft_match_eval(const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +0100308 struct nft_regs *regs,
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200309 const struct nft_pktinfo *pkt)
310{
311 void *info = nft_expr_priv(expr);
312 struct xt_match *match = expr->ops->data;
313 struct sk_buff *skb = pkt->skb;
314 bool ret;
315
316 nft_compat_set_par((struct xt_action_param *)&pkt->xt, match, info);
317
318 ret = match->match(skb, (struct xt_action_param *)&pkt->xt);
319
320 if (pkt->xt.hotdrop) {
Patrick McHardya55e22e2015-04-11 02:27:31 +0100321 regs->verdict.code = NF_DROP;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200322 return;
323 }
324
David Millerc1f86672015-04-07 23:05:42 -0400325 switch (ret ? 1 : 0) {
326 case 1:
Patrick McHardya55e22e2015-04-11 02:27:31 +0100327 regs->verdict.code = NFT_CONTINUE;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200328 break;
David Millerc1f86672015-04-07 23:05:42 -0400329 case 0:
Patrick McHardya55e22e2015-04-11 02:27:31 +0100330 regs->verdict.code = NFT_BREAK;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200331 break;
332 }
333}
334
335static const struct nla_policy nft_match_policy[NFTA_MATCH_MAX + 1] = {
336 [NFTA_MATCH_NAME] = { .type = NLA_NUL_STRING },
337 [NFTA_MATCH_REV] = { .type = NLA_U32 },
338 [NFTA_MATCH_INFO] = { .type = NLA_BINARY },
339};
340
341/* struct xt_mtchk_param and xt_tgchk_param look very similar */
342static void
343nft_match_set_mtchk_param(struct xt_mtchk_param *par, const struct nft_ctx *ctx,
344 struct xt_match *match, void *info,
Arturo Borrero2156d322015-02-21 19:30:55 +0100345 union nft_entry *entry, u16 proto, bool inv)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200346{
Pablo Neira Ayuso2daf1b42014-11-07 18:48:33 +0100347 par->net = ctx->net;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200348 par->table = ctx->table->name;
349 switch (ctx->afi->family) {
350 case AF_INET:
351 entry->e4.ip.proto = proto;
352 entry->e4.ip.invflags = inv ? IPT_INV_PROTO : 0;
353 break;
354 case AF_INET6:
Pablo Neira Ayuso749177c2015-03-21 19:25:05 +0100355 if (proto)
356 entry->e6.ipv6.flags |= IP6T_F_PROTO;
357
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200358 entry->e6.ipv6.proto = proto;
359 entry->e6.ipv6.invflags = inv ? IP6T_INV_PROTO : 0;
360 break;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100361 case NFPROTO_BRIDGE:
Arturo Borrero2156d322015-02-21 19:30:55 +0100362 entry->ebt.ethproto = (__force __be16)proto;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100363 entry->ebt.invflags = inv ? EBT_IPROTO : 0;
364 break;
Arturo Borrero5f158932015-02-16 11:32:28 +0100365 case NFPROTO_ARP:
366 break;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200367 }
368 par->entryinfo = entry;
369 par->match = match;
370 par->matchinfo = info;
371 if (ctx->chain->flags & NFT_BASE_CHAIN) {
372 const struct nft_base_chain *basechain =
373 nft_base_chain(ctx->chain);
Patrick McHardy115a60b2014-01-03 12:16:15 +0000374 const struct nf_hook_ops *ops = &basechain->ops[0];
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200375
376 par->hook_mask = 1 << ops->hooknum;
Pablo Neira Ayuso493618a2014-10-14 12:43:50 +0200377 } else {
378 par->hook_mask = 0;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200379 }
380 par->family = ctx->afi->family;
Pablo Neira Ayuso55917a22015-05-14 14:57:23 +0200381 par->nft_compat = true;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200382}
383
384static void match_compat_from_user(struct xt_match *m, void *in, void *out)
385{
Pablo Neira Ayuso756c1b12014-06-17 21:18:44 +0200386 int pad;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200387
Pablo Neira Ayuso756c1b12014-06-17 21:18:44 +0200388 memcpy(out, in, m->matchsize);
389 pad = XT_ALIGN(m->matchsize) - m->matchsize;
390 if (pad > 0)
391 memset(out + m->matchsize, 0, pad);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200392}
393
394static int
395nft_match_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
396 const struct nlattr * const tb[])
397{
398 void *info = nft_expr_priv(expr);
399 struct xt_match *match = expr->ops->data;
400 struct xt_mtchk_param par;
401 size_t size = XT_ALIGN(nla_len(tb[NFTA_MATCH_INFO]));
Arturo Borrero2156d322015-02-21 19:30:55 +0100402 u16 proto = 0;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200403 bool inv = false;
404 union nft_entry e = {};
405 int ret;
406
Pablo Neira Ayusoafefb6f2014-11-10 19:08:21 +0100407 ret = nft_compat_chain_validate_dependency(match->table, ctx->chain);
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +0200408 if (ret < 0)
409 goto err;
410
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200411 match_compat_from_user(match, nla_data(tb[NFTA_MATCH_INFO]), info);
412
Pablo Neira Ayuso8691a9a2013-11-16 22:16:47 +0100413 if (ctx->nla[NFTA_RULE_COMPAT]) {
414 ret = nft_parse_compat(ctx->nla[NFTA_RULE_COMPAT], &proto, &inv);
415 if (ret < 0)
416 goto err;
417 }
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200418
419 nft_match_set_mtchk_param(&par, ctx, match, info, &e, proto, inv);
420
421 ret = xt_check_match(&par, size, proto, inv);
422 if (ret < 0)
423 goto err;
424
425 return 0;
426err:
427 module_put(match->me);
428 return ret;
429}
430
431static void
Patrick McHardy62472bc2014-03-07 19:08:30 +0100432nft_match_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200433{
434 struct xt_match *match = expr->ops->data;
Pablo Neira Ayuso3d9b1422014-06-11 14:27:46 +0200435 void *info = nft_expr_priv(expr);
436 struct xt_mtdtor_param par;
437
438 par.net = ctx->net;
439 par.match = match;
440 par.matchinfo = info;
441 par.family = ctx->afi->family;
442 if (par.match->destroy != NULL)
443 par.match->destroy(&par);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200444
445 module_put(match->me);
446}
447
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200448static int nft_match_dump(struct sk_buff *skb, const struct nft_expr *expr)
449{
450 void *info = nft_expr_priv(expr);
451 struct xt_match *match = expr->ops->data;
452
453 if (nla_put_string(skb, NFTA_MATCH_NAME, match->name) ||
454 nla_put_be32(skb, NFTA_MATCH_REV, htonl(match->revision)) ||
Pablo Neira Ayuso756c1b12014-06-17 21:18:44 +0200455 nla_put(skb, NFTA_MATCH_INFO, XT_ALIGN(match->matchsize), info))
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200456 goto nla_put_failure;
457
458 return 0;
459
460nla_put_failure:
461 return -1;
462}
463
464static int nft_match_validate(const struct nft_ctx *ctx,
465 const struct nft_expr *expr,
466 const struct nft_data **data)
467{
468 struct xt_match *match = expr->ops->data;
469 unsigned int hook_mask = 0;
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +0200470 int ret;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200471
472 if (ctx->chain->flags & NFT_BASE_CHAIN) {
473 const struct nft_base_chain *basechain =
474 nft_base_chain(ctx->chain);
Patrick McHardy115a60b2014-01-03 12:16:15 +0000475 const struct nf_hook_ops *ops = &basechain->ops[0];
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200476
477 hook_mask = 1 << ops->hooknum;
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +0200478 if (!(hook_mask & match->hooks))
479 return -EINVAL;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200480
Pablo Neira Ayusoafefb6f2014-11-10 19:08:21 +0100481 ret = nft_compat_chain_validate_dependency(match->table,
Pablo Neira Ayusof3f5dde2014-10-14 10:13:48 +0200482 ctx->chain);
483 if (ret < 0)
484 return ret;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200485 }
486 return 0;
487}
488
489static int
490nfnl_compat_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
491 int event, u16 family, const char *name,
492 int rev, int target)
493{
494 struct nlmsghdr *nlh;
495 struct nfgenmsg *nfmsg;
496 unsigned int flags = portid ? NLM_F_MULTI : 0;
497
498 event |= NFNL_SUBSYS_NFT_COMPAT << 8;
499 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
500 if (nlh == NULL)
501 goto nlmsg_failure;
502
503 nfmsg = nlmsg_data(nlh);
504 nfmsg->nfgen_family = family;
505 nfmsg->version = NFNETLINK_V0;
506 nfmsg->res_id = 0;
507
508 if (nla_put_string(skb, NFTA_COMPAT_NAME, name) ||
509 nla_put_be32(skb, NFTA_COMPAT_REV, htonl(rev)) ||
510 nla_put_be32(skb, NFTA_COMPAT_TYPE, htonl(target)))
511 goto nla_put_failure;
512
513 nlmsg_end(skb, nlh);
514 return skb->len;
515
516nlmsg_failure:
517nla_put_failure:
518 nlmsg_cancel(skb, nlh);
519 return -1;
520}
521
Pablo Neira Ayuso7b8002a2015-12-15 18:41:56 +0100522static int nfnl_compat_get(struct net *net, struct sock *nfnl,
523 struct sk_buff *skb, const struct nlmsghdr *nlh,
524 const struct nlattr * const tb[])
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200525{
526 int ret = 0, target;
527 struct nfgenmsg *nfmsg;
528 const char *fmt;
529 const char *name;
530 u32 rev;
531 struct sk_buff *skb2;
532
533 if (tb[NFTA_COMPAT_NAME] == NULL ||
534 tb[NFTA_COMPAT_REV] == NULL ||
535 tb[NFTA_COMPAT_TYPE] == NULL)
536 return -EINVAL;
537
538 name = nla_data(tb[NFTA_COMPAT_NAME]);
539 rev = ntohl(nla_get_be32(tb[NFTA_COMPAT_REV]));
540 target = ntohl(nla_get_be32(tb[NFTA_COMPAT_TYPE]));
541
542 nfmsg = nlmsg_data(nlh);
543
544 switch(nfmsg->nfgen_family) {
545 case AF_INET:
546 fmt = "ipt_%s";
547 break;
548 case AF_INET6:
549 fmt = "ip6t_%s";
550 break;
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100551 case NFPROTO_BRIDGE:
552 fmt = "ebt_%s";
553 break;
Arturo Borrero5f158932015-02-16 11:32:28 +0100554 case NFPROTO_ARP:
555 fmt = "arpt_%s";
556 break;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200557 default:
558 pr_err("nft_compat: unsupported protocol %d\n",
559 nfmsg->nfgen_family);
560 return -EINVAL;
561 }
562
563 try_then_request_module(xt_find_revision(nfmsg->nfgen_family, name,
564 rev, target, &ret),
565 fmt, name);
566
567 if (ret < 0)
568 return ret;
569
570 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
571 if (skb2 == NULL)
572 return -ENOMEM;
573
574 /* include the best revision for this extension in the message */
575 if (nfnl_compat_fill_info(skb2, NETLINK_CB(skb).portid,
576 nlh->nlmsg_seq,
577 NFNL_MSG_TYPE(nlh->nlmsg_type),
578 NFNL_MSG_COMPAT_GET,
579 nfmsg->nfgen_family,
580 name, ret, target) <= 0) {
581 kfree_skb(skb2);
582 return -ENOSPC;
583 }
584
585 ret = netlink_unicast(nfnl, skb2, NETLINK_CB(skb).portid,
586 MSG_DONTWAIT);
587 if (ret > 0)
588 ret = 0;
589
590 return ret == -EAGAIN ? -ENOBUFS : ret;
591}
592
593static const struct nla_policy nfnl_compat_policy_get[NFTA_COMPAT_MAX+1] = {
594 [NFTA_COMPAT_NAME] = { .type = NLA_NUL_STRING,
595 .len = NFT_COMPAT_NAME_MAX-1 },
596 [NFTA_COMPAT_REV] = { .type = NLA_U32 },
597 [NFTA_COMPAT_TYPE] = { .type = NLA_U32 },
598};
599
600static const struct nfnl_callback nfnl_nft_compat_cb[NFNL_MSG_COMPAT_MAX] = {
601 [NFNL_MSG_COMPAT_GET] = { .call = nfnl_compat_get,
602 .attr_count = NFTA_COMPAT_MAX,
603 .policy = nfnl_compat_policy_get },
604};
605
606static const struct nfnetlink_subsystem nfnl_compat_subsys = {
607 .name = "nft-compat",
608 .subsys_id = NFNL_SUBSYS_NFT_COMPAT,
609 .cb_count = NFNL_MSG_COMPAT_MAX,
610 .cb = nfnl_nft_compat_cb,
611};
612
613static LIST_HEAD(nft_match_list);
614
615struct nft_xt {
616 struct list_head head;
617 struct nft_expr_ops ops;
618};
619
620static struct nft_expr_type nft_match_type;
621
Pablo Neira Ayusoba378ca2015-09-14 18:04:09 +0200622static bool nft_match_cmp(const struct xt_match *match,
623 const char *name, u32 rev, u32 family)
624{
625 return strcmp(match->name, name) == 0 && match->revision == rev &&
626 (match->family == NFPROTO_UNSPEC || match->family == family);
627}
628
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200629static const struct nft_expr_ops *
630nft_match_select_ops(const struct nft_ctx *ctx,
631 const struct nlattr * const tb[])
632{
633 struct nft_xt *nft_match;
634 struct xt_match *match;
635 char *mt_name;
Pablo Neira Ayusoba378ca2015-09-14 18:04:09 +0200636 u32 rev, family;
Liping Zhang2bf4fad2016-07-23 16:00:31 +0800637 int err;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200638
639 if (tb[NFTA_MATCH_NAME] == NULL ||
640 tb[NFTA_MATCH_REV] == NULL ||
641 tb[NFTA_MATCH_INFO] == NULL)
642 return ERR_PTR(-EINVAL);
643
644 mt_name = nla_data(tb[NFTA_MATCH_NAME]);
645 rev = ntohl(nla_get_be32(tb[NFTA_MATCH_REV]));
646 family = ctx->afi->family;
647
648 /* Re-use the existing match if it's already loaded. */
649 list_for_each_entry(nft_match, &nft_match_list, head) {
650 struct xt_match *match = nft_match->ops.data;
651
Pablo Neira Ayusoba378ca2015-09-14 18:04:09 +0200652 if (nft_match_cmp(match, mt_name, rev, family)) {
Pablo Neira Ayuso520aa742015-02-12 22:15:31 +0100653 if (!try_module_get(match->me))
654 return ERR_PTR(-ENOENT);
655
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200656 return &nft_match->ops;
Pablo Neira Ayuso520aa742015-02-12 22:15:31 +0100657 }
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200658 }
659
660 match = xt_request_find_match(family, mt_name, rev);
661 if (IS_ERR(match))
662 return ERR_PTR(-ENOENT);
663
Liping Zhang2bf4fad2016-07-23 16:00:31 +0800664 if (match->matchsize > nla_len(tb[NFTA_MATCH_INFO])) {
665 err = -EINVAL;
666 goto err;
667 }
Florian Westphalf0716cd2016-03-09 00:04:21 +0100668
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200669 /* This is the first time we use this match, allocate operations */
670 nft_match = kzalloc(sizeof(struct nft_xt), GFP_KERNEL);
Liping Zhang2bf4fad2016-07-23 16:00:31 +0800671 if (nft_match == NULL) {
672 err = -ENOMEM;
673 goto err;
674 }
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200675
676 nft_match->ops.type = &nft_match_type;
Pablo Neira Ayuso756c1b12014-06-17 21:18:44 +0200677 nft_match->ops.size = NFT_EXPR_SIZE(XT_ALIGN(match->matchsize));
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200678 nft_match->ops.eval = nft_match_eval;
679 nft_match->ops.init = nft_match_init;
680 nft_match->ops.destroy = nft_match_destroy;
681 nft_match->ops.dump = nft_match_dump;
682 nft_match->ops.validate = nft_match_validate;
683 nft_match->ops.data = match;
684
685 list_add(&nft_match->head, &nft_match_list);
686
687 return &nft_match->ops;
Liping Zhang2bf4fad2016-07-23 16:00:31 +0800688err:
689 module_put(match->me);
690 return ERR_PTR(err);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200691}
692
693static void nft_match_release(void)
694{
Dan Carpenterc359c412013-11-04 15:58:56 +0300695 struct nft_xt *nft_match, *tmp;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200696
Dan Carpenterc359c412013-11-04 15:58:56 +0300697 list_for_each_entry_safe(nft_match, tmp, &nft_match_list, head)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200698 kfree(nft_match);
699}
700
701static struct nft_expr_type nft_match_type __read_mostly = {
702 .name = "match",
703 .select_ops = nft_match_select_ops,
704 .policy = nft_match_policy,
705 .maxattr = NFTA_MATCH_MAX,
706 .owner = THIS_MODULE,
707};
708
709static LIST_HEAD(nft_target_list);
710
711static struct nft_expr_type nft_target_type;
712
Pablo Neira Ayusoba378ca2015-09-14 18:04:09 +0200713static bool nft_target_cmp(const struct xt_target *tg,
714 const char *name, u32 rev, u32 family)
715{
716 return strcmp(tg->name, name) == 0 && tg->revision == rev &&
717 (tg->family == NFPROTO_UNSPEC || tg->family == family);
718}
719
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200720static const struct nft_expr_ops *
721nft_target_select_ops(const struct nft_ctx *ctx,
722 const struct nlattr * const tb[])
723{
724 struct nft_xt *nft_target;
725 struct xt_target *target;
726 char *tg_name;
Pablo Neira Ayusoba378ca2015-09-14 18:04:09 +0200727 u32 rev, family;
Liping Zhang2bf4fad2016-07-23 16:00:31 +0800728 int err;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200729
730 if (tb[NFTA_TARGET_NAME] == NULL ||
731 tb[NFTA_TARGET_REV] == NULL ||
732 tb[NFTA_TARGET_INFO] == NULL)
733 return ERR_PTR(-EINVAL);
734
735 tg_name = nla_data(tb[NFTA_TARGET_NAME]);
736 rev = ntohl(nla_get_be32(tb[NFTA_TARGET_REV]));
737 family = ctx->afi->family;
738
739 /* Re-use the existing target if it's already loaded. */
Arturo Borrero7965ee92014-10-26 12:22:40 +0100740 list_for_each_entry(nft_target, &nft_target_list, head) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200741 struct xt_target *target = nft_target->ops.data;
742
Pablo Neira Ayusoba378ca2015-09-14 18:04:09 +0200743 if (nft_target_cmp(target, tg_name, rev, family)) {
Pablo Neira Ayuso520aa742015-02-12 22:15:31 +0100744 if (!try_module_get(target->me))
745 return ERR_PTR(-ENOENT);
746
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200747 return &nft_target->ops;
Pablo Neira Ayuso520aa742015-02-12 22:15:31 +0100748 }
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200749 }
750
751 target = xt_request_find_target(family, tg_name, rev);
752 if (IS_ERR(target))
753 return ERR_PTR(-ENOENT);
754
Liping Zhang2bf4fad2016-07-23 16:00:31 +0800755 if (target->targetsize > nla_len(tb[NFTA_TARGET_INFO])) {
756 err = -EINVAL;
757 goto err;
758 }
Florian Westphalf0716cd2016-03-09 00:04:21 +0100759
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200760 /* This is the first time we use this target, allocate operations */
761 nft_target = kzalloc(sizeof(struct nft_xt), GFP_KERNEL);
Liping Zhang2bf4fad2016-07-23 16:00:31 +0800762 if (nft_target == NULL) {
763 err = -ENOMEM;
764 goto err;
765 }
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200766
767 nft_target->ops.type = &nft_target_type;
Pablo Neira Ayuso756c1b12014-06-17 21:18:44 +0200768 nft_target->ops.size = NFT_EXPR_SIZE(XT_ALIGN(target->targetsize));
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200769 nft_target->ops.init = nft_target_init;
770 nft_target->ops.destroy = nft_target_destroy;
771 nft_target->ops.dump = nft_target_dump;
772 nft_target->ops.validate = nft_target_validate;
773 nft_target->ops.data = target;
774
Arturo Borrero5191f4d2015-01-29 19:34:42 +0100775 if (family == NFPROTO_BRIDGE)
776 nft_target->ops.eval = nft_target_eval_bridge;
777 else
778 nft_target->ops.eval = nft_target_eval_xt;
779
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200780 list_add(&nft_target->head, &nft_target_list);
781
782 return &nft_target->ops;
Liping Zhang2bf4fad2016-07-23 16:00:31 +0800783err:
784 module_put(target->me);
785 return ERR_PTR(err);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200786}
787
788static void nft_target_release(void)
789{
Dan Carpenterc359c412013-11-04 15:58:56 +0300790 struct nft_xt *nft_target, *tmp;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200791
Dan Carpenterc359c412013-11-04 15:58:56 +0300792 list_for_each_entry_safe(nft_target, tmp, &nft_target_list, head)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200793 kfree(nft_target);
794}
795
796static struct nft_expr_type nft_target_type __read_mostly = {
797 .name = "target",
798 .select_ops = nft_target_select_ops,
799 .policy = nft_target_policy,
800 .maxattr = NFTA_TARGET_MAX,
801 .owner = THIS_MODULE,
802};
803
804static int __init nft_compat_module_init(void)
805{
806 int ret;
807
808 ret = nft_register_expr(&nft_match_type);
809 if (ret < 0)
810 return ret;
811
812 ret = nft_register_expr(&nft_target_type);
813 if (ret < 0)
814 goto err_match;
815
816 ret = nfnetlink_subsys_register(&nfnl_compat_subsys);
817 if (ret < 0) {
818 pr_err("nft_compat: cannot register with nfnetlink.\n");
819 goto err_target;
820 }
821
822 pr_info("nf_tables_compat: (c) 2012 Pablo Neira Ayuso <pablo@netfilter.org>\n");
823
824 return ret;
825
826err_target:
827 nft_unregister_expr(&nft_target_type);
828err_match:
829 nft_unregister_expr(&nft_match_type);
830 return ret;
831}
832
833static void __exit nft_compat_module_exit(void)
834{
835 nfnetlink_subsys_unregister(&nfnl_compat_subsys);
836 nft_unregister_expr(&nft_target_type);
837 nft_unregister_expr(&nft_match_type);
838 nft_match_release();
839 nft_target_release();
840}
841
842MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_NFT_COMPAT);
843
844module_init(nft_compat_module_init);
845module_exit(nft_compat_module_exit);
846
847MODULE_LICENSE("GPL");
848MODULE_AUTHOR("Pablo Neira Ayuso <pablo@netfilter.org>");
849MODULE_ALIAS_NFT_EXPR("match");
850MODULE_ALIAS_NFT_EXPR("target");