2019-05-27 14:55:01 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2014-11-06 03:51:51 +08:00
|
|
|
* net/sched/act_ipt.c iptables target interface
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
*TODO: Add other tables. For now we only support the ipv4 table targets
|
|
|
|
*
|
2013-04-28 13:06:38 +08:00
|
|
|
* Copyright: Jamal Hadi Salim (2002-13)
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2007-03-26 14:06:12 +08:00
|
|
|
#include <net/netlink.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/pkt_sched.h>
|
|
|
|
#include <linux/tc_act/tc_ipt.h>
|
|
|
|
#include <net/tc_act/tc_ipt.h>
|
2022-12-06 21:55:12 +08:00
|
|
|
#include <net/tc_wrapper.h>
|
2023-06-27 20:38:13 +08:00
|
|
|
#include <net/ip.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <linux/netfilter_ipv4/ip_tables.h>
|
|
|
|
|
|
|
|
|
2016-07-26 07:09:41 +08:00
|
|
|
static struct tc_action_ops act_ipt_ops;
|
|
|
|
static struct tc_action_ops act_xt_ops;
|
2016-02-23 07:57:53 +08:00
|
|
|
|
2017-08-08 15:25:25 +08:00
|
|
|
static int ipt_init_target(struct net *net, struct xt_entry_target *t,
|
|
|
|
char *table, unsigned int hook)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2008-10-08 17:35:19 +08:00
|
|
|
struct xt_tgchk_param par;
|
2007-02-08 07:12:33 +08:00
|
|
|
struct xt_target *target;
|
2017-08-18 11:01:36 +08:00
|
|
|
struct ipt_entry e = {};
|
2005-04-17 06:20:36 +08:00
|
|
|
int ret = 0;
|
|
|
|
|
2007-02-02 16:40:36 +08:00
|
|
|
target = xt_request_find_target(AF_INET, t->u.user.name,
|
|
|
|
t->u.user.revision);
|
2009-07-11 00:55:11 +08:00
|
|
|
if (IS_ERR(target))
|
|
|
|
return PTR_ERR(target);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
t->u.kernel.target = target;
|
2017-08-09 18:15:19 +08:00
|
|
|
memset(&par, 0, sizeof(par));
|
2017-08-08 15:25:25 +08:00
|
|
|
par.net = net;
|
2008-10-08 17:35:19 +08:00
|
|
|
par.table = table;
|
2017-08-18 11:01:36 +08:00
|
|
|
par.entryinfo = &e;
|
2008-10-08 17:35:19 +08:00
|
|
|
par.target = target;
|
|
|
|
par.targinfo = t->data;
|
2023-06-27 20:38:11 +08:00
|
|
|
par.hook_mask = 1 << hook;
|
2008-10-08 17:35:20 +08:00
|
|
|
par.family = NFPROTO_IPV4;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-10-08 17:35:20 +08:00
|
|
|
ret = xt_check_target(&par, t->u.target_size - sizeof(*t), 0, false);
|
2008-10-08 17:35:17 +08:00
|
|
|
if (ret < 0) {
|
2007-02-02 16:40:36 +08:00
|
|
|
module_put(t->u.kernel.target->me);
|
2006-04-25 08:18:59 +08:00
|
|
|
return ret;
|
2007-02-02 16:40:36 +08:00
|
|
|
}
|
2008-10-08 17:35:17 +08:00
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2019-08-26 01:01:32 +08:00
|
|
|
static void ipt_destroy_target(struct xt_entry_target *t, struct net *net)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2008-10-08 17:35:19 +08:00
|
|
|
struct xt_tgdtor_param par = {
|
|
|
|
.target = t->u.kernel.target,
|
|
|
|
.targinfo = t->data,
|
2016-03-03 21:34:14 +08:00
|
|
|
.family = NFPROTO_IPV4,
|
2019-08-26 01:01:32 +08:00
|
|
|
.net = net,
|
2008-10-08 17:35:19 +08:00
|
|
|
};
|
|
|
|
if (par.target->destroy != NULL)
|
|
|
|
par.target->destroy(&par);
|
|
|
|
module_put(par.target->me);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2017-12-06 04:53:07 +08:00
|
|
|
static void tcf_ipt_release(struct tc_action *a)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2014-02-12 09:07:31 +08:00
|
|
|
struct tcf_ipt *ipt = to_ipt(a);
|
2018-03-19 22:31:26 +08:00
|
|
|
|
|
|
|
if (ipt->tcfi_t) {
|
2019-08-26 01:01:32 +08:00
|
|
|
ipt_destroy_target(ipt->tcfi_t, a->idrinfo->net);
|
2018-03-19 22:31:26 +08:00
|
|
|
kfree(ipt->tcfi_t);
|
|
|
|
}
|
2014-02-12 09:07:32 +08:00
|
|
|
kfree(ipt->tcfi_tname);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2008-01-24 12:36:30 +08:00
|
|
|
static const struct nla_policy ipt_policy[TCA_IPT_MAX + 1] = {
|
|
|
|
[TCA_IPT_TABLE] = { .type = NLA_STRING, .len = IFNAMSIZ },
|
2023-06-27 20:38:11 +08:00
|
|
|
[TCA_IPT_HOOK] = NLA_POLICY_RANGE(NLA_U32, NF_INET_PRE_ROUTING,
|
|
|
|
NF_INET_NUMHOOKS),
|
2008-01-24 12:36:30 +08:00
|
|
|
[TCA_IPT_INDEX] = { .type = NLA_U32 },
|
2010-10-13 22:11:22 +08:00
|
|
|
[TCA_IPT_TARG] = { .len = sizeof(struct xt_entry_target) },
|
2008-01-24 12:36:30 +08:00
|
|
|
};
|
|
|
|
|
2017-08-08 15:25:25 +08:00
|
|
|
static int __tcf_ipt_init(struct net *net, unsigned int id, struct nlattr *nla,
|
2016-07-26 07:09:41 +08:00
|
|
|
struct nlattr *est, struct tc_action **a,
|
2021-07-30 07:12:14 +08:00
|
|
|
const struct tc_action_ops *ops,
|
2019-10-30 22:09:05 +08:00
|
|
|
struct tcf_proto *tp, u32 flags)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2017-08-08 15:25:25 +08:00
|
|
|
struct tc_action_net *tn = net_generic(net, id);
|
2021-07-30 07:12:14 +08:00
|
|
|
bool bind = flags & TCA_ACT_FLAGS_BIND;
|
2008-01-23 14:11:50 +08:00
|
|
|
struct nlattr *tb[TCA_IPT_MAX + 1];
|
2006-08-22 14:54:55 +08:00
|
|
|
struct tcf_ipt *ipt;
|
2010-10-13 22:11:22 +08:00
|
|
|
struct xt_entry_target *td, *t;
|
2005-04-17 06:20:36 +08:00
|
|
|
char *tname;
|
2016-06-14 04:46:28 +08:00
|
|
|
bool exists = false;
|
|
|
|
int ret = 0, err;
|
2005-04-17 06:20:36 +08:00
|
|
|
u32 hook = 0;
|
|
|
|
u32 index = 0;
|
|
|
|
|
2008-01-24 12:33:32 +08:00
|
|
|
if (nla == NULL)
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
netlink: make validation more configurable for future strictness
We currently have two levels of strict validation:
1) liberal (default)
- undefined (type >= max) & NLA_UNSPEC attributes accepted
- attribute length >= expected accepted
- garbage at end of message accepted
2) strict (opt-in)
- NLA_UNSPEC attributes accepted
- attribute length >= expected accepted
Split out parsing strictness into four different options:
* TRAILING - check that there's no trailing data after parsing
attributes (in message or nested)
* MAXTYPE - reject attrs > max known type
* UNSPEC - reject attributes with NLA_UNSPEC policy entries
* STRICT_ATTRS - strictly validate attribute size
The default for future things should be *everything*.
The current *_strict() is a combination of TRAILING and MAXTYPE,
and is renamed to _deprecated_strict().
The current regular parsing has none of this, and is renamed to
*_parse_deprecated().
Additionally it allows us to selectively set one of the new flags
even on old policies. Notably, the UNSPEC flag could be useful in
this case, since it can be arranged (by filling in the policy) to
not be an incompatible userspace ABI change, but would then going
forward prevent forgetting attribute entries. Similar can apply
to the POLICY flag.
We end up with the following renames:
* nla_parse -> nla_parse_deprecated
* nla_parse_strict -> nla_parse_deprecated_strict
* nlmsg_parse -> nlmsg_parse_deprecated
* nlmsg_parse_strict -> nlmsg_parse_deprecated_strict
* nla_parse_nested -> nla_parse_nested_deprecated
* nla_validate_nested -> nla_validate_nested_deprecated
Using spatch, of course:
@@
expression TB, MAX, HEAD, LEN, POL, EXT;
@@
-nla_parse(TB, MAX, HEAD, LEN, POL, EXT)
+nla_parse_deprecated(TB, MAX, HEAD, LEN, POL, EXT)
@@
expression NLH, HDRLEN, TB, MAX, POL, EXT;
@@
-nlmsg_parse(NLH, HDRLEN, TB, MAX, POL, EXT)
+nlmsg_parse_deprecated(NLH, HDRLEN, TB, MAX, POL, EXT)
@@
expression NLH, HDRLEN, TB, MAX, POL, EXT;
@@
-nlmsg_parse_strict(NLH, HDRLEN, TB, MAX, POL, EXT)
+nlmsg_parse_deprecated_strict(NLH, HDRLEN, TB, MAX, POL, EXT)
@@
expression TB, MAX, NLA, POL, EXT;
@@
-nla_parse_nested(TB, MAX, NLA, POL, EXT)
+nla_parse_nested_deprecated(TB, MAX, NLA, POL, EXT)
@@
expression START, MAX, POL, EXT;
@@
-nla_validate_nested(START, MAX, POL, EXT)
+nla_validate_nested_deprecated(START, MAX, POL, EXT)
@@
expression NLH, HDRLEN, MAX, POL, EXT;
@@
-nlmsg_validate(NLH, HDRLEN, MAX, POL, EXT)
+nlmsg_validate_deprecated(NLH, HDRLEN, MAX, POL, EXT)
For this patch, don't actually add the strict, non-renamed versions
yet so that it breaks compile if I get it wrong.
Also, while at it, make nla_validate and nla_parse go down to a
common __nla_validate_parse() function to avoid code duplication.
Ultimately, this allows us to have very strict validation for every
new caller of nla_parse()/nlmsg_parse() etc as re-introduced in the
next patch, while existing things will continue to work as is.
In effect then, this adds fully strict validation for any new command.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-04-26 20:07:28 +08:00
|
|
|
err = nla_parse_nested_deprecated(tb, TCA_IPT_MAX, nla, ipt_policy,
|
|
|
|
NULL);
|
2008-01-24 12:33:32 +08:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
|
2016-05-11 04:49:27 +08:00
|
|
|
if (tb[TCA_IPT_INDEX] != NULL)
|
|
|
|
index = nla_get_u32(tb[TCA_IPT_INDEX]);
|
|
|
|
|
2018-07-05 22:24:32 +08:00
|
|
|
err = tcf_idr_check_alloc(tn, &index, a, bind);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
|
|
|
exists = err;
|
2016-05-11 04:49:27 +08:00
|
|
|
if (exists && bind)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (tb[TCA_IPT_HOOK] == NULL || tb[TCA_IPT_TARG] == NULL) {
|
|
|
|
if (exists)
|
2017-08-30 14:31:59 +08:00
|
|
|
tcf_idr_release(*a, bind);
|
2018-07-05 22:24:32 +08:00
|
|
|
else
|
|
|
|
tcf_idr_cleanup(tn, index);
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EINVAL;
|
2016-05-11 04:49:27 +08:00
|
|
|
}
|
2008-01-24 12:36:30 +08:00
|
|
|
|
2010-10-13 22:11:22 +08:00
|
|
|
td = (struct xt_entry_target *)nla_data(tb[TCA_IPT_TARG]);
|
2018-09-22 21:46:48 +08:00
|
|
|
if (nla_len(tb[TCA_IPT_TARG]) != td->u.target_size) {
|
2016-06-14 04:44:14 +08:00
|
|
|
if (exists)
|
2017-08-30 14:31:59 +08:00
|
|
|
tcf_idr_release(*a, bind);
|
2018-07-05 22:24:32 +08:00
|
|
|
else
|
|
|
|
tcf_idr_cleanup(tn, index);
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EINVAL;
|
2016-06-14 04:44:14 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-06-14 04:44:14 +08:00
|
|
|
if (!exists) {
|
2017-08-30 14:31:59 +08:00
|
|
|
ret = tcf_idr_create(tn, index, est, a, ops, bind,
|
2021-12-18 02:16:17 +08:00
|
|
|
false, flags);
|
2018-07-05 22:24:32 +08:00
|
|
|
if (ret) {
|
|
|
|
tcf_idr_cleanup(tn, index);
|
2014-02-12 09:07:31 +08:00
|
|
|
return ret;
|
2018-07-05 22:24:32 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
ret = ACT_P_CREATED;
|
|
|
|
} else {
|
2013-12-23 21:02:11 +08:00
|
|
|
if (bind)/* dont override defaults */
|
|
|
|
return 0;
|
|
|
|
|
2021-07-30 07:12:14 +08:00
|
|
|
if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
|
2018-07-05 22:24:30 +08:00
|
|
|
tcf_idr_release(*a, bind);
|
2005-04-17 06:20:36 +08:00
|
|
|
return -EEXIST;
|
2018-07-05 22:24:30 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2023-06-27 20:38:11 +08:00
|
|
|
|
|
|
|
err = -EINVAL;
|
2008-01-24 12:35:03 +08:00
|
|
|
hook = nla_get_u32(tb[TCA_IPT_HOOK]);
|
2023-06-27 20:38:11 +08:00
|
|
|
switch (hook) {
|
|
|
|
case NF_INET_PRE_ROUTING:
|
|
|
|
break;
|
|
|
|
case NF_INET_POST_ROUTING:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tb[TCA_IPT_TABLE]) {
|
|
|
|
/* mangle only for now */
|
|
|
|
if (nla_strcmp(tb[TCA_IPT_TABLE], "mangle"))
|
|
|
|
goto err1;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2023-06-27 20:38:11 +08:00
|
|
|
tname = kstrdup("mangle", GFP_KERNEL);
|
2006-08-22 14:54:55 +08:00
|
|
|
if (unlikely(!tname))
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err1;
|
|
|
|
|
2006-11-21 11:19:40 +08:00
|
|
|
t = kmemdup(td, td->u.target_size, GFP_KERNEL);
|
2006-08-22 14:54:55 +08:00
|
|
|
if (unlikely(!t))
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err2;
|
|
|
|
|
2017-08-08 15:25:25 +08:00
|
|
|
err = ipt_init_target(net, t, tname, hook);
|
2011-01-20 03:26:56 +08:00
|
|
|
if (err < 0)
|
2005-04-17 06:20:36 +08:00
|
|
|
goto err3;
|
|
|
|
|
2016-07-26 07:09:41 +08:00
|
|
|
ipt = to_ipt(*a);
|
|
|
|
|
2006-08-22 14:54:55 +08:00
|
|
|
spin_lock_bh(&ipt->tcf_lock);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (ret != ACT_P_CREATED) {
|
2019-08-26 01:01:32 +08:00
|
|
|
ipt_destroy_target(ipt->tcfi_t, net);
|
2006-08-22 14:54:55 +08:00
|
|
|
kfree(ipt->tcfi_tname);
|
|
|
|
kfree(ipt->tcfi_t);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2006-08-22 14:54:55 +08:00
|
|
|
ipt->tcfi_tname = tname;
|
|
|
|
ipt->tcfi_t = t;
|
|
|
|
ipt->tcfi_hook = hook;
|
|
|
|
spin_unlock_bh(&ipt->tcf_lock);
|
2005-04-17 06:20:36 +08:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
err3:
|
|
|
|
kfree(t);
|
|
|
|
err2:
|
|
|
|
kfree(tname);
|
|
|
|
err1:
|
2019-02-22 19:33:25 +08:00
|
|
|
tcf_idr_release(*a, bind);
|
2005-04-17 06:20:36 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-02-23 07:57:53 +08:00
|
|
|
static int tcf_ipt_init(struct net *net, struct nlattr *nla,
|
2021-07-30 07:12:14 +08:00
|
|
|
struct nlattr *est, struct tc_action **a,
|
|
|
|
struct tcf_proto *tp,
|
2019-10-30 22:09:05 +08:00
|
|
|
u32 flags, struct netlink_ext_ack *extack)
|
2016-02-23 07:57:53 +08:00
|
|
|
{
|
2022-09-08 12:14:33 +08:00
|
|
|
return __tcf_ipt_init(net, act_ipt_ops.net_id, nla, est,
|
|
|
|
a, &act_ipt_ops, tp, flags);
|
2016-02-23 07:57:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int tcf_xt_init(struct net *net, struct nlattr *nla,
|
2021-07-30 07:12:14 +08:00
|
|
|
struct nlattr *est, struct tc_action **a,
|
|
|
|
struct tcf_proto *tp,
|
2019-10-30 22:09:05 +08:00
|
|
|
u32 flags, struct netlink_ext_ack *extack)
|
2016-02-23 07:57:53 +08:00
|
|
|
{
|
2022-09-08 12:14:33 +08:00
|
|
|
return __tcf_ipt_init(net, act_xt_ops.net_id, nla, est,
|
|
|
|
a, &act_xt_ops, tp, flags);
|
2016-02-23 07:57:53 +08:00
|
|
|
}
|
|
|
|
|
2023-06-27 20:38:12 +08:00
|
|
|
static bool tcf_ipt_act_check(struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
const struct iphdr *iph;
|
|
|
|
unsigned int nhoff, len;
|
|
|
|
|
|
|
|
if (!pskb_may_pull(skb, sizeof(struct iphdr)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
nhoff = skb_network_offset(skb);
|
|
|
|
iph = ip_hdr(skb);
|
|
|
|
if (iph->ihl < 5 || iph->version != 4)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
len = skb_ip_totlen(skb);
|
|
|
|
if (skb->len < nhoff + len || len < (iph->ihl * 4u))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return pskb_may_pull(skb, iph->ihl * 4u);
|
|
|
|
}
|
|
|
|
|
2022-12-06 21:55:12 +08:00
|
|
|
TC_INDIRECT_SCOPE int tcf_ipt_act(struct sk_buff *skb,
|
|
|
|
const struct tc_action *a,
|
|
|
|
struct tcf_result *res)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2023-06-27 20:38:13 +08:00
|
|
|
char saved_cb[sizeof_field(struct sk_buff, cb)];
|
2005-04-17 06:20:36 +08:00
|
|
|
int ret = 0, result = 0;
|
2016-07-26 07:09:41 +08:00
|
|
|
struct tcf_ipt *ipt = to_ipt(a);
|
2009-07-06 01:43:26 +08:00
|
|
|
struct xt_action_param par;
|
2016-11-03 17:56:21 +08:00
|
|
|
struct nf_hook_state state = {
|
|
|
|
.net = dev_net(skb->dev),
|
|
|
|
.in = skb->dev,
|
|
|
|
.hook = ipt->tcfi_hook,
|
|
|
|
.pf = NFPROTO_IPV4,
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2023-06-27 20:38:12 +08:00
|
|
|
if (skb_protocol(skb, false) != htons(ETH_P_IP))
|
|
|
|
return TC_ACT_UNSPEC;
|
|
|
|
|
2013-02-14 17:44:49 +08:00
|
|
|
if (skb_unclone(skb, GFP_ATOMIC))
|
|
|
|
return TC_ACT_UNSPEC;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2023-06-27 20:38:12 +08:00
|
|
|
if (!tcf_ipt_act_check(skb))
|
|
|
|
return TC_ACT_UNSPEC;
|
|
|
|
|
|
|
|
if (state.hook == NF_INET_POST_ROUTING) {
|
|
|
|
if (!skb_dst(skb))
|
|
|
|
return TC_ACT_UNSPEC;
|
|
|
|
|
|
|
|
state.out = skb->dev;
|
|
|
|
}
|
|
|
|
|
2023-06-27 20:38:13 +08:00
|
|
|
memcpy(saved_cb, skb->cb, sizeof(saved_cb));
|
|
|
|
|
2006-08-22 14:54:55 +08:00
|
|
|
spin_lock(&ipt->tcf_lock);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-06-06 18:32:53 +08:00
|
|
|
tcf_lastuse_update(&ipt->tcf_tm);
|
2011-01-09 16:30:54 +08:00
|
|
|
bstats_update(&ipt->tcf_bstats, skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* yes, we have to worry about both in and out dev
|
2011-01-20 03:26:56 +08:00
|
|
|
* worry later - danger - this API seems to have changed
|
|
|
|
* from earlier kernels
|
|
|
|
*/
|
2016-11-03 17:56:21 +08:00
|
|
|
par.state = &state;
|
2008-10-08 17:35:19 +08:00
|
|
|
par.target = ipt->tcfi_t->u.kernel.target;
|
|
|
|
par.targinfo = ipt->tcfi_t->data;
|
2023-06-27 20:38:13 +08:00
|
|
|
|
|
|
|
memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
|
|
|
|
|
2008-10-08 17:35:19 +08:00
|
|
|
ret = par.target->target(skb, &par);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
switch (ret) {
|
|
|
|
case NF_ACCEPT:
|
|
|
|
result = TC_ACT_OK;
|
|
|
|
break;
|
|
|
|
case NF_DROP:
|
|
|
|
result = TC_ACT_SHOT;
|
2006-08-22 14:54:55 +08:00
|
|
|
ipt->tcf_qstats.drops++;
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
2010-10-13 22:28:00 +08:00
|
|
|
case XT_CONTINUE:
|
2005-04-17 06:20:36 +08:00
|
|
|
result = TC_ACT_PIPE;
|
|
|
|
break;
|
|
|
|
default:
|
2012-05-14 05:56:26 +08:00
|
|
|
net_notice_ratelimited("tc filter: Bogus netfilter code %d assume ACCEPT\n",
|
|
|
|
ret);
|
2016-06-14 01:47:43 +08:00
|
|
|
result = TC_ACT_OK;
|
2005-04-17 06:20:36 +08:00
|
|
|
break;
|
|
|
|
}
|
2006-08-22 14:54:55 +08:00
|
|
|
spin_unlock(&ipt->tcf_lock);
|
2023-06-27 20:38:13 +08:00
|
|
|
|
|
|
|
memcpy(skb->cb, saved_cb, sizeof(skb->cb));
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-06-05 22:41:32 +08:00
|
|
|
static int tcf_ipt_dump(struct sk_buff *skb, struct tc_action *a, int bind,
|
|
|
|
int ref)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-04-20 11:29:13 +08:00
|
|
|
unsigned char *b = skb_tail_pointer(skb);
|
2016-07-26 07:09:41 +08:00
|
|
|
struct tcf_ipt *ipt = to_ipt(a);
|
2010-10-13 22:11:22 +08:00
|
|
|
struct xt_entry_target *t;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct tcf_t tm;
|
|
|
|
struct tc_cnt c;
|
|
|
|
|
|
|
|
/* for simple targets kernel size == user size
|
2011-01-20 03:26:56 +08:00
|
|
|
* user name = target name
|
|
|
|
* for foolproof you need to not assume this
|
|
|
|
*/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-08-11 01:51:45 +08:00
|
|
|
spin_lock_bh(&ipt->tcf_lock);
|
2006-11-21 11:19:40 +08:00
|
|
|
t = kmemdup(ipt->tcfi_t, ipt->tcfi_t->u.user.target_size, GFP_ATOMIC);
|
2006-08-22 14:54:55 +08:00
|
|
|
if (unlikely(!t))
|
2008-01-23 14:11:50 +08:00
|
|
|
goto nla_put_failure;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-07-05 22:24:24 +08:00
|
|
|
c.bindcnt = atomic_read(&ipt->tcf_bindcnt) - bind;
|
|
|
|
c.refcnt = refcount_read(&ipt->tcf_refcnt) - ref;
|
2006-08-22 14:54:55 +08:00
|
|
|
strcpy(t->u.user.name, ipt->tcfi_t->u.kernel.target->name);
|
|
|
|
|
2012-03-29 17:11:39 +08:00
|
|
|
if (nla_put(skb, TCA_IPT_TARG, ipt->tcfi_t->u.user.target_size, t) ||
|
|
|
|
nla_put_u32(skb, TCA_IPT_INDEX, ipt->tcf_index) ||
|
|
|
|
nla_put_u32(skb, TCA_IPT_HOOK, ipt->tcfi_hook) ||
|
|
|
|
nla_put(skb, TCA_IPT_CNT, sizeof(struct tc_cnt), &c) ||
|
|
|
|
nla_put_string(skb, TCA_IPT_TABLE, ipt->tcfi_tname))
|
|
|
|
goto nla_put_failure;
|
2016-06-06 18:32:55 +08:00
|
|
|
|
|
|
|
tcf_tm_dump(&tm, &ipt->tcf_tm);
|
2016-04-26 16:06:18 +08:00
|
|
|
if (nla_put_64bit(skb, TCA_IPT_TM, sizeof(tm), &tm, TCA_IPT_PAD))
|
2012-03-29 17:11:39 +08:00
|
|
|
goto nla_put_failure;
|
2016-06-06 18:32:55 +08:00
|
|
|
|
2018-08-11 01:51:45 +08:00
|
|
|
spin_unlock_bh(&ipt->tcf_lock);
|
2005-04-17 06:20:36 +08:00
|
|
|
kfree(t);
|
|
|
|
return skb->len;
|
|
|
|
|
2008-01-23 14:11:50 +08:00
|
|
|
nla_put_failure:
|
2018-08-11 01:51:45 +08:00
|
|
|
spin_unlock_bh(&ipt->tcf_lock);
|
2007-03-26 14:06:12 +08:00
|
|
|
nlmsg_trim(skb, b);
|
2005-04-17 06:20:36 +08:00
|
|
|
kfree(t);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct tc_action_ops act_ipt_ops = {
|
|
|
|
.kind = "ipt",
|
2019-02-10 20:25:00 +08:00
|
|
|
.id = TCA_ID_IPT,
|
2005-04-17 06:20:36 +08:00
|
|
|
.owner = THIS_MODULE,
|
2018-08-12 21:34:53 +08:00
|
|
|
.act = tcf_ipt_act,
|
2005-04-17 06:20:36 +08:00
|
|
|
.dump = tcf_ipt_dump,
|
2014-02-12 09:07:31 +08:00
|
|
|
.cleanup = tcf_ipt_release,
|
2005-04-17 06:20:36 +08:00
|
|
|
.init = tcf_ipt_init,
|
2016-07-26 07:09:41 +08:00
|
|
|
.size = sizeof(struct tcf_ipt),
|
2016-02-23 07:57:53 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static __net_init int ipt_init_net(struct net *net)
|
|
|
|
{
|
2022-09-08 12:14:33 +08:00
|
|
|
struct tc_action_net *tn = net_generic(net, act_ipt_ops.net_id);
|
2016-02-23 07:57:53 +08:00
|
|
|
|
2019-08-26 01:01:32 +08:00
|
|
|
return tc_action_net_init(net, tn, &act_ipt_ops);
|
2016-02-23 07:57:53 +08:00
|
|
|
}
|
|
|
|
|
2017-12-12 07:35:03 +08:00
|
|
|
static void __net_exit ipt_exit_net(struct list_head *net_list)
|
2016-02-23 07:57:53 +08:00
|
|
|
{
|
2022-09-08 12:14:33 +08:00
|
|
|
tc_action_net_exit(net_list, act_ipt_ops.net_id);
|
2016-02-23 07:57:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct pernet_operations ipt_net_ops = {
|
|
|
|
.init = ipt_init_net,
|
2017-12-12 07:35:03 +08:00
|
|
|
.exit_batch = ipt_exit_net,
|
2022-09-08 12:14:33 +08:00
|
|
|
.id = &act_ipt_ops.net_id,
|
2016-02-23 07:57:53 +08:00
|
|
|
.size = sizeof(struct tc_action_net),
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2013-04-28 13:06:38 +08:00
|
|
|
static struct tc_action_ops act_xt_ops = {
|
|
|
|
.kind = "xt",
|
2019-02-10 20:25:00 +08:00
|
|
|
.id = TCA_ID_XT,
|
2013-04-28 13:06:38 +08:00
|
|
|
.owner = THIS_MODULE,
|
2018-08-12 21:34:53 +08:00
|
|
|
.act = tcf_ipt_act,
|
2013-04-28 13:06:38 +08:00
|
|
|
.dump = tcf_ipt_dump,
|
2014-02-12 09:07:31 +08:00
|
|
|
.cleanup = tcf_ipt_release,
|
2016-02-23 07:57:53 +08:00
|
|
|
.init = tcf_xt_init,
|
2016-07-26 07:09:41 +08:00
|
|
|
.size = sizeof(struct tcf_ipt),
|
2016-02-23 07:57:53 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static __net_init int xt_init_net(struct net *net)
|
|
|
|
{
|
2022-09-08 12:14:33 +08:00
|
|
|
struct tc_action_net *tn = net_generic(net, act_xt_ops.net_id);
|
2016-02-23 07:57:53 +08:00
|
|
|
|
2019-08-26 01:01:32 +08:00
|
|
|
return tc_action_net_init(net, tn, &act_xt_ops);
|
2016-02-23 07:57:53 +08:00
|
|
|
}
|
|
|
|
|
2017-12-12 07:35:03 +08:00
|
|
|
static void __net_exit xt_exit_net(struct list_head *net_list)
|
2016-02-23 07:57:53 +08:00
|
|
|
{
|
2022-09-08 12:14:33 +08:00
|
|
|
tc_action_net_exit(net_list, act_xt_ops.net_id);
|
2016-02-23 07:57:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct pernet_operations xt_net_ops = {
|
|
|
|
.init = xt_init_net,
|
2017-12-12 07:35:03 +08:00
|
|
|
.exit_batch = xt_exit_net,
|
2022-09-08 12:14:33 +08:00
|
|
|
.id = &act_xt_ops.net_id,
|
2016-02-23 07:57:53 +08:00
|
|
|
.size = sizeof(struct tc_action_net),
|
2013-04-28 13:06:38 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Jamal Hadi Salim(2002-13)");
|
2005-04-17 06:20:36 +08:00
|
|
|
MODULE_DESCRIPTION("Iptables target actions");
|
|
|
|
MODULE_LICENSE("GPL");
|
2013-04-28 13:06:38 +08:00
|
|
|
MODULE_ALIAS("act_xt");
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-08-22 14:54:55 +08:00
|
|
|
static int __init ipt_init_module(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2014-02-12 09:07:33 +08:00
|
|
|
int ret1, ret2;
|
2013-12-16 12:15:08 +08:00
|
|
|
|
2016-02-23 07:57:53 +08:00
|
|
|
ret1 = tcf_register_action(&act_xt_ops, &xt_net_ops);
|
2013-04-28 13:06:38 +08:00
|
|
|
if (ret1 < 0)
|
2016-02-23 07:57:53 +08:00
|
|
|
pr_err("Failed to load xt action\n");
|
|
|
|
|
|
|
|
ret2 = tcf_register_action(&act_ipt_ops, &ipt_net_ops);
|
2013-04-28 13:06:38 +08:00
|
|
|
if (ret2 < 0)
|
2016-02-23 07:57:53 +08:00
|
|
|
pr_err("Failed to load ipt action\n");
|
2013-04-28 13:06:38 +08:00
|
|
|
|
2013-12-16 12:15:08 +08:00
|
|
|
if (ret1 < 0 && ret2 < 0) {
|
2013-04-28 13:06:38 +08:00
|
|
|
return ret1;
|
2013-12-16 12:15:08 +08:00
|
|
|
} else
|
2013-04-28 13:06:38 +08:00
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2006-08-22 14:54:55 +08:00
|
|
|
static void __exit ipt_cleanup_module(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2016-02-23 07:57:53 +08:00
|
|
|
tcf_unregister_action(&act_ipt_ops, &ipt_net_ops);
|
|
|
|
tcf_unregister_action(&act_xt_ops, &xt_net_ops);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module_init(ipt_init_module);
|
|
|
|
module_exit(ipt_cleanup_module);
|