Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Jiri Pirko | 0c6965d | 2014-11-05 20:51:51 +0100 | [diff] [blame] | 3 | * net/sched/act_ipt.c iptables target interface |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | *TODO: Add other tables. For now we only support the ipv4 table targets |
| 6 | * |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 7 | * Copyright: Jamal Hadi Salim (2002-13) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/types.h> |
| 11 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/skbuff.h> |
| 15 | #include <linux/rtnetlink.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/slab.h> |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 19 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <net/pkt_sched.h> |
| 21 | #include <linux/tc_act/tc_ipt.h> |
| 22 | #include <net/tc_act/tc_ipt.h> |
| 23 | |
| 24 | #include <linux/netfilter_ipv4/ip_tables.h> |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 27 | static unsigned int ipt_net_id; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 28 | static struct tc_action_ops act_ipt_ops; |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 29 | |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 30 | static unsigned int xt_net_id; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 31 | static struct tc_action_ops act_xt_ops; |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 32 | |
Xin Long | ec0acb0 | 2017-08-08 15:25:25 +0800 | [diff] [blame] | 33 | static int ipt_init_target(struct net *net, struct xt_entry_target *t, |
| 34 | char *table, unsigned int hook) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 36 | struct xt_tgchk_param par; |
Jan Engelhardt | e60a13e | 2007-02-07 15:12:33 -0800 | [diff] [blame] | 37 | struct xt_target *target; |
Xin Long | 4f8a881 | 2017-08-18 11:01:36 +0800 | [diff] [blame] | 38 | struct ipt_entry e = {}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | int ret = 0; |
| 40 | |
Patrick McHardy | 239a87c | 2007-02-02 00:40:36 -0800 | [diff] [blame] | 41 | target = xt_request_find_target(AF_INET, t->u.user.name, |
| 42 | t->u.user.revision); |
Jan Engelhardt | d2a7b6b | 2009-07-10 18:55:11 +0200 | [diff] [blame] | 43 | if (IS_ERR(target)) |
| 44 | return PTR_ERR(target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | t->u.kernel.target = target; |
Xin Long | 96d9703 | 2017-08-09 18:15:19 +0800 | [diff] [blame] | 47 | memset(&par, 0, sizeof(par)); |
Xin Long | ec0acb0 | 2017-08-08 15:25:25 +0800 | [diff] [blame] | 48 | par.net = net; |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 49 | par.table = table; |
Xin Long | 4f8a881 | 2017-08-18 11:01:36 +0800 | [diff] [blame] | 50 | par.entryinfo = &e; |
Jan Engelhardt | af5d6dc | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 51 | par.target = target; |
| 52 | par.targinfo = t->data; |
| 53 | par.hook_mask = hook; |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 54 | par.family = NFPROTO_IPV4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Jan Engelhardt | 916a917 | 2008-10-08 11:35:20 +0200 | [diff] [blame] | 56 | ret = xt_check_target(&par, t->u.target_size - sizeof(*t), 0, false); |
Jan Engelhardt | 367c679 | 2008-10-08 11:35:17 +0200 | [diff] [blame] | 57 | if (ret < 0) { |
Patrick McHardy | 239a87c | 2007-02-02 00:40:36 -0800 | [diff] [blame] | 58 | module_put(t->u.kernel.target->me); |
Patrick McHardy | 18118cd | 2006-04-24 17:18:59 -0700 | [diff] [blame] | 59 | return ret; |
Patrick McHardy | 239a87c | 2007-02-02 00:40:36 -0800 | [diff] [blame] | 60 | } |
Jan Engelhardt | 367c679 | 2008-10-08 11:35:17 +0200 | [diff] [blame] | 61 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | } |
| 63 | |
Cong Wang | 981471b | 2019-08-25 10:01:32 -0700 | [diff] [blame] | 64 | static void ipt_destroy_target(struct xt_entry_target *t, struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { |
Jan Engelhardt | a2df164 | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 66 | struct xt_tgdtor_param par = { |
| 67 | .target = t->u.kernel.target, |
| 68 | .targinfo = t->data, |
Phil Sutter | 44ef548 | 2016-03-03 14:34:14 +0100 | [diff] [blame] | 69 | .family = NFPROTO_IPV4, |
Cong Wang | 981471b | 2019-08-25 10:01:32 -0700 | [diff] [blame] | 70 | .net = net, |
Jan Engelhardt | a2df164 | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 71 | }; |
| 72 | if (par.target->destroy != NULL) |
| 73 | par.target->destroy(&par); |
| 74 | module_put(par.target->me); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Cong Wang | 9a63b25 | 2017-12-05 12:53:07 -0800 | [diff] [blame] | 77 | static void tcf_ipt_release(struct tc_action *a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 79 | struct tcf_ipt *ipt = to_ipt(a); |
Davide Caratti | 1e46ef1 | 2018-03-19 15:31:26 +0100 | [diff] [blame] | 80 | |
| 81 | if (ipt->tcfi_t) { |
Cong Wang | 981471b | 2019-08-25 10:01:32 -0700 | [diff] [blame] | 82 | ipt_destroy_target(ipt->tcfi_t, a->idrinfo->net); |
Davide Caratti | 1e46ef1 | 2018-03-19 15:31:26 +0100 | [diff] [blame] | 83 | kfree(ipt->tcfi_t); |
| 84 | } |
WANG Cong | a5b5c95 | 2014-02-11 17:07:32 -0800 | [diff] [blame] | 85 | kfree(ipt->tcfi_tname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } |
| 87 | |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 88 | static const struct nla_policy ipt_policy[TCA_IPT_MAX + 1] = { |
| 89 | [TCA_IPT_TABLE] = { .type = NLA_STRING, .len = IFNAMSIZ }, |
| 90 | [TCA_IPT_HOOK] = { .type = NLA_U32 }, |
| 91 | [TCA_IPT_INDEX] = { .type = NLA_U32 }, |
Jan Engelhardt | 87a2e70d | 2010-10-13 16:11:22 +0200 | [diff] [blame] | 92 | [TCA_IPT_TARG] = { .len = sizeof(struct xt_entry_target) }, |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 93 | }; |
| 94 | |
Xin Long | ec0acb0 | 2017-08-08 15:25:25 +0800 | [diff] [blame] | 95 | static int __tcf_ipt_init(struct net *net, unsigned int id, struct nlattr *nla, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 96 | struct nlattr *est, struct tc_action **a, |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 97 | const struct tc_action_ops *ops, |
Vlad Buslov | abbb0d3 | 2019-10-30 16:09:05 +0200 | [diff] [blame] | 98 | struct tcf_proto *tp, u32 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
Xin Long | ec0acb0 | 2017-08-08 15:25:25 +0800 | [diff] [blame] | 100 | struct tc_action_net *tn = net_generic(net, id); |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 101 | bool bind = flags & TCA_ACT_FLAGS_BIND; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 102 | struct nlattr *tb[TCA_IPT_MAX + 1]; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 103 | struct tcf_ipt *ipt; |
Jan Engelhardt | 87a2e70d | 2010-10-13 16:11:22 +0200 | [diff] [blame] | 104 | struct xt_entry_target *td, *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | char *tname; |
WANG Cong | b231307 | 2016-06-13 13:46:28 -0700 | [diff] [blame] | 106 | bool exists = false; |
| 107 | int ret = 0, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | u32 hook = 0; |
| 109 | u32 index = 0; |
| 110 | |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 111 | if (nla == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | return -EINVAL; |
| 113 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 114 | err = nla_parse_nested_deprecated(tb, TCA_IPT_MAX, nla, ipt_policy, |
| 115 | NULL); |
Patrick McHardy | cee6372 | 2008-01-23 20:33:32 -0800 | [diff] [blame] | 116 | if (err < 0) |
| 117 | return err; |
| 118 | |
Jamal Hadi Salim | a57f19d | 2016-05-10 16:49:27 -0400 | [diff] [blame] | 119 | if (tb[TCA_IPT_INDEX] != NULL) |
| 120 | index = nla_get_u32(tb[TCA_IPT_INDEX]); |
| 121 | |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 122 | err = tcf_idr_check_alloc(tn, &index, a, bind); |
| 123 | if (err < 0) |
| 124 | return err; |
| 125 | exists = err; |
Jamal Hadi Salim | a57f19d | 2016-05-10 16:49:27 -0400 | [diff] [blame] | 126 | if (exists && bind) |
| 127 | return 0; |
| 128 | |
| 129 | if (tb[TCA_IPT_HOOK] == NULL || tb[TCA_IPT_TARG] == NULL) { |
| 130 | if (exists) |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 131 | tcf_idr_release(*a, bind); |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 132 | else |
| 133 | tcf_idr_cleanup(tn, index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | return -EINVAL; |
Jamal Hadi Salim | a57f19d | 2016-05-10 16:49:27 -0400 | [diff] [blame] | 135 | } |
Patrick McHardy | 53b2bf3 | 2008-01-23 20:36:30 -0800 | [diff] [blame] | 136 | |
Jan Engelhardt | 87a2e70d | 2010-10-13 16:11:22 +0200 | [diff] [blame] | 137 | td = (struct xt_entry_target *)nla_data(tb[TCA_IPT_TARG]); |
Dan Carpenter | aeadd93 | 2018-09-22 16:46:48 +0300 | [diff] [blame] | 138 | if (nla_len(tb[TCA_IPT_TARG]) != td->u.target_size) { |
WANG Cong | d15ecce | 2016-06-13 13:44:14 -0700 | [diff] [blame] | 139 | if (exists) |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 140 | tcf_idr_release(*a, bind); |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 141 | else |
| 142 | tcf_idr_cleanup(tn, index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | return -EINVAL; |
WANG Cong | d15ecce | 2016-06-13 13:44:14 -0700 | [diff] [blame] | 144 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
WANG Cong | d15ecce | 2016-06-13 13:44:14 -0700 | [diff] [blame] | 146 | if (!exists) { |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 147 | ret = tcf_idr_create(tn, index, est, a, ops, bind, |
Baowen Zheng | 40bd094 | 2021-12-17 19:16:17 +0100 | [diff] [blame] | 148 | false, flags); |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 149 | if (ret) { |
| 150 | tcf_idr_cleanup(tn, index); |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 151 | return ret; |
Vlad Buslov | 0190c1d | 2018-07-05 17:24:32 +0300 | [diff] [blame] | 152 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | ret = ACT_P_CREATED; |
| 154 | } else { |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 155 | if (bind)/* dont override defaults */ |
| 156 | return 0; |
Jamal Hadi Salim | 1a29321 | 2013-12-23 08:02:11 -0500 | [diff] [blame] | 157 | |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 158 | if (!(flags & TCA_ACT_FLAGS_REPLACE)) { |
Vlad Buslov | 4e8ddd7 | 2018-07-05 17:24:30 +0300 | [diff] [blame] | 159 | tcf_idr_release(*a, bind); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | return -EEXIST; |
Vlad Buslov | 4e8ddd7 | 2018-07-05 17:24:30 +0300 | [diff] [blame] | 161 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
Patrick McHardy | 1587bac | 2008-01-23 20:35:03 -0800 | [diff] [blame] | 163 | hook = nla_get_u32(tb[TCA_IPT_HOOK]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
| 165 | err = -ENOMEM; |
| 166 | tname = kmalloc(IFNAMSIZ, GFP_KERNEL); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 167 | if (unlikely(!tname)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | goto err1; |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 169 | if (tb[TCA_IPT_TABLE] == NULL || |
Francis Laniel | 872f690 | 2020-11-15 18:08:06 +0100 | [diff] [blame] | 170 | nla_strscpy(tname, tb[TCA_IPT_TABLE], IFNAMSIZ) >= IFNAMSIZ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | strcpy(tname, "mangle"); |
| 172 | |
Arnaldo Carvalho de Melo | c7b1b24 | 2006-11-21 01:19:40 -0200 | [diff] [blame] | 173 | t = kmemdup(td, td->u.target_size, GFP_KERNEL); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 174 | if (unlikely(!t)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | goto err2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
Xin Long | ec0acb0 | 2017-08-08 15:25:25 +0800 | [diff] [blame] | 177 | err = ipt_init_target(net, t, tname, hook); |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 178 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | goto err3; |
| 180 | |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 181 | ipt = to_ipt(*a); |
| 182 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 183 | spin_lock_bh(&ipt->tcf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | if (ret != ACT_P_CREATED) { |
Cong Wang | 981471b | 2019-08-25 10:01:32 -0700 | [diff] [blame] | 185 | ipt_destroy_target(ipt->tcfi_t, net); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 186 | kfree(ipt->tcfi_tname); |
| 187 | kfree(ipt->tcfi_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 189 | ipt->tcfi_tname = tname; |
| 190 | ipt->tcfi_t = t; |
| 191 | ipt->tcfi_hook = hook; |
| 192 | spin_unlock_bh(&ipt->tcf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | return ret; |
| 194 | |
| 195 | err3: |
| 196 | kfree(t); |
| 197 | err2: |
| 198 | kfree(tname); |
| 199 | err1: |
Davide Caratti | 8f67c90 | 2019-02-22 12:33:25 +0100 | [diff] [blame] | 200 | tcf_idr_release(*a, bind); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | return err; |
| 202 | } |
| 203 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 204 | static int tcf_ipt_init(struct net *net, struct nlattr *nla, |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 205 | struct nlattr *est, struct tc_action **a, |
| 206 | struct tcf_proto *tp, |
Vlad Buslov | abbb0d3 | 2019-10-30 16:09:05 +0200 | [diff] [blame] | 207 | u32 flags, struct netlink_ext_ack *extack) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 208 | { |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 209 | return __tcf_ipt_init(net, ipt_net_id, nla, est, a, &act_ipt_ops, |
| 210 | tp, flags); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | static int tcf_xt_init(struct net *net, struct nlattr *nla, |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 214 | struct nlattr *est, struct tc_action **a, |
| 215 | struct tcf_proto *tp, |
Vlad Buslov | abbb0d3 | 2019-10-30 16:09:05 +0200 | [diff] [blame] | 216 | u32 flags, struct netlink_ext_ack *extack) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 217 | { |
Cong Wang | 695176b | 2021-07-29 16:12:14 -0700 | [diff] [blame] | 218 | return __tcf_ipt_init(net, xt_net_id, nla, est, a, &act_xt_ops, |
| 219 | tp, flags); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 220 | } |
| 221 | |
Jamal Hadi Salim | 11b9695 | 2018-08-12 09:34:53 -0400 | [diff] [blame] | 222 | static int tcf_ipt_act(struct sk_buff *skb, const struct tc_action *a, |
| 223 | struct tcf_result *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | { |
| 225 | int ret = 0, result = 0; |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 226 | struct tcf_ipt *ipt = to_ipt(a); |
Jan Engelhardt | 4b560b4 | 2009-07-05 19:43:26 +0200 | [diff] [blame] | 227 | struct xt_action_param par; |
Pablo Neira Ayuso | 613dbd9 | 2016-11-03 10:56:21 +0100 | [diff] [blame] | 228 | struct nf_hook_state state = { |
| 229 | .net = dev_net(skb->dev), |
| 230 | .in = skb->dev, |
| 231 | .hook = ipt->tcfi_hook, |
| 232 | .pf = NFPROTO_IPV4, |
| 233 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Pravin B Shelar | 14bbd6a | 2013-02-14 09:44:49 +0000 | [diff] [blame] | 235 | if (skb_unclone(skb, GFP_ATOMIC)) |
| 236 | return TC_ACT_UNSPEC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 238 | spin_lock(&ipt->tcf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Jamal Hadi Salim | 9c4a4e4 | 2016-06-06 06:32:53 -0400 | [diff] [blame] | 240 | tcf_lastuse_update(&ipt->tcf_tm); |
Eric Dumazet | bfe0d02 | 2011-01-09 08:30:54 +0000 | [diff] [blame] | 241 | bstats_update(&ipt->tcf_bstats, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | |
| 243 | /* yes, we have to worry about both in and out dev |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 244 | * worry later - danger - this API seems to have changed |
| 245 | * from earlier kernels |
| 246 | */ |
Pablo Neira Ayuso | 613dbd9 | 2016-11-03 10:56:21 +0100 | [diff] [blame] | 247 | par.state = &state; |
Jan Engelhardt | 7eb3558 | 2008-10-08 11:35:19 +0200 | [diff] [blame] | 248 | par.target = ipt->tcfi_t->u.kernel.target; |
| 249 | par.targinfo = ipt->tcfi_t->data; |
| 250 | ret = par.target->target(skb, &par); |
| 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | switch (ret) { |
| 253 | case NF_ACCEPT: |
| 254 | result = TC_ACT_OK; |
| 255 | break; |
| 256 | case NF_DROP: |
| 257 | result = TC_ACT_SHOT; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 258 | ipt->tcf_qstats.drops++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | break; |
Jan Engelhardt | 243bf6e | 2010-10-13 16:28:00 +0200 | [diff] [blame] | 260 | case XT_CONTINUE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | result = TC_ACT_PIPE; |
| 262 | break; |
| 263 | default: |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 264 | net_notice_ratelimited("tc filter: Bogus netfilter code %d assume ACCEPT\n", |
| 265 | ret); |
WANG Cong | 95df1b1 | 2016-06-13 10:47:43 -0700 | [diff] [blame] | 266 | result = TC_ACT_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | break; |
| 268 | } |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 269 | spin_unlock(&ipt->tcf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | return result; |
| 271 | |
| 272 | } |
| 273 | |
Jamal Hadi Salim | 0b0f43f | 2016-06-05 10:41:32 -0400 | [diff] [blame] | 274 | static int tcf_ipt_dump(struct sk_buff *skb, struct tc_action *a, int bind, |
| 275 | int ref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 277 | unsigned char *b = skb_tail_pointer(skb); |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 278 | struct tcf_ipt *ipt = to_ipt(a); |
Jan Engelhardt | 87a2e70d | 2010-10-13 16:11:22 +0200 | [diff] [blame] | 279 | struct xt_entry_target *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | struct tcf_t tm; |
| 281 | struct tc_cnt c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
| 283 | /* for simple targets kernel size == user size |
Eric Dumazet | cc7ec45 | 2011-01-19 19:26:56 +0000 | [diff] [blame] | 284 | * user name = target name |
| 285 | * for foolproof you need to not assume this |
| 286 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Vlad Buslov | ff25276 | 2018-08-10 20:51:45 +0300 | [diff] [blame] | 288 | spin_lock_bh(&ipt->tcf_lock); |
Arnaldo Carvalho de Melo | c7b1b24 | 2006-11-21 01:19:40 -0200 | [diff] [blame] | 289 | t = kmemdup(ipt->tcfi_t, ipt->tcfi_t->u.user.target_size, GFP_ATOMIC); |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 290 | if (unlikely(!t)) |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 291 | goto nla_put_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
Vlad Buslov | 036bb44 | 2018-07-05 17:24:24 +0300 | [diff] [blame] | 293 | c.bindcnt = atomic_read(&ipt->tcf_bindcnt) - bind; |
| 294 | c.refcnt = refcount_read(&ipt->tcf_refcnt) - ref; |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 295 | strcpy(t->u.user.name, ipt->tcfi_t->u.kernel.target->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 297 | if (nla_put(skb, TCA_IPT_TARG, ipt->tcfi_t->u.user.target_size, t) || |
| 298 | nla_put_u32(skb, TCA_IPT_INDEX, ipt->tcf_index) || |
| 299 | nla_put_u32(skb, TCA_IPT_HOOK, ipt->tcfi_hook) || |
| 300 | nla_put(skb, TCA_IPT_CNT, sizeof(struct tc_cnt), &c) || |
| 301 | nla_put_string(skb, TCA_IPT_TABLE, ipt->tcfi_tname)) |
| 302 | goto nla_put_failure; |
Jamal Hadi Salim | 48d8ee1 | 2016-06-06 06:32:55 -0400 | [diff] [blame] | 303 | |
| 304 | tcf_tm_dump(&tm, &ipt->tcf_tm); |
Nicolas Dichtel | 9854518e | 2016-04-26 10:06:18 +0200 | [diff] [blame] | 305 | if (nla_put_64bit(skb, TCA_IPT_TM, sizeof(tm), &tm, TCA_IPT_PAD)) |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 306 | goto nla_put_failure; |
Jamal Hadi Salim | 48d8ee1 | 2016-06-06 06:32:55 -0400 | [diff] [blame] | 307 | |
Vlad Buslov | ff25276 | 2018-08-10 20:51:45 +0300 | [diff] [blame] | 308 | spin_unlock_bh(&ipt->tcf_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | kfree(t); |
| 310 | return skb->len; |
| 311 | |
Patrick McHardy | 7ba699c | 2008-01-22 22:11:50 -0800 | [diff] [blame] | 312 | nla_put_failure: |
Vlad Buslov | ff25276 | 2018-08-10 20:51:45 +0300 | [diff] [blame] | 313 | spin_unlock_bh(&ipt->tcf_lock); |
Arnaldo Carvalho de Melo | dc5fc57 | 2007-03-25 23:06:12 -0700 | [diff] [blame] | 314 | nlmsg_trim(skb, b); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | kfree(t); |
| 316 | return -1; |
| 317 | } |
| 318 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 319 | static int tcf_ipt_walker(struct net *net, struct sk_buff *skb, |
| 320 | struct netlink_callback *cb, int type, |
Alexander Aring | 4178010 | 2018-02-15 10:54:58 -0500 | [diff] [blame] | 321 | const struct tc_action_ops *ops, |
| 322 | struct netlink_ext_ack *extack) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 323 | { |
| 324 | struct tc_action_net *tn = net_generic(net, ipt_net_id); |
| 325 | |
Alexander Aring | b362014 | 2018-02-15 10:54:59 -0500 | [diff] [blame] | 326 | return tcf_generic_walker(tn, skb, cb, type, ops, extack); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 327 | } |
| 328 | |
Cong Wang | f061b48 | 2018-08-29 10:15:35 -0700 | [diff] [blame] | 329 | static int tcf_ipt_search(struct net *net, struct tc_action **a, u32 index) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 330 | { |
| 331 | struct tc_action_net *tn = net_generic(net, ipt_net_id); |
| 332 | |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 333 | return tcf_idr_search(tn, a, index); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 334 | } |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | static struct tc_action_ops act_ipt_ops = { |
| 337 | .kind = "ipt", |
Eli Cohen | eddd2cf | 2019-02-10 14:25:00 +0200 | [diff] [blame] | 338 | .id = TCA_ID_IPT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | .owner = THIS_MODULE, |
Jamal Hadi Salim | 11b9695 | 2018-08-12 09:34:53 -0400 | [diff] [blame] | 340 | .act = tcf_ipt_act, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | .dump = tcf_ipt_dump, |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 342 | .cleanup = tcf_ipt_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | .init = tcf_ipt_init, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 344 | .walk = tcf_ipt_walker, |
| 345 | .lookup = tcf_ipt_search, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 346 | .size = sizeof(struct tcf_ipt), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | }; |
| 348 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 349 | static __net_init int ipt_init_net(struct net *net) |
| 350 | { |
| 351 | struct tc_action_net *tn = net_generic(net, ipt_net_id); |
| 352 | |
Cong Wang | 981471b | 2019-08-25 10:01:32 -0700 | [diff] [blame] | 353 | return tc_action_net_init(net, tn, &act_ipt_ops); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 354 | } |
| 355 | |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 356 | static void __net_exit ipt_exit_net(struct list_head *net_list) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 357 | { |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 358 | tc_action_net_exit(net_list, ipt_net_id); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | static struct pernet_operations ipt_net_ops = { |
| 362 | .init = ipt_init_net, |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 363 | .exit_batch = ipt_exit_net, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 364 | .id = &ipt_net_id, |
| 365 | .size = sizeof(struct tc_action_net), |
| 366 | }; |
| 367 | |
| 368 | static int tcf_xt_walker(struct net *net, struct sk_buff *skb, |
| 369 | struct netlink_callback *cb, int type, |
Alexander Aring | 4178010 | 2018-02-15 10:54:58 -0500 | [diff] [blame] | 370 | const struct tc_action_ops *ops, |
| 371 | struct netlink_ext_ack *extack) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 372 | { |
| 373 | struct tc_action_net *tn = net_generic(net, xt_net_id); |
| 374 | |
Alexander Aring | b362014 | 2018-02-15 10:54:59 -0500 | [diff] [blame] | 375 | return tcf_generic_walker(tn, skb, cb, type, ops, extack); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 376 | } |
| 377 | |
Cong Wang | f061b48 | 2018-08-29 10:15:35 -0700 | [diff] [blame] | 378 | static int tcf_xt_search(struct net *net, struct tc_action **a, u32 index) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 379 | { |
| 380 | struct tc_action_net *tn = net_generic(net, xt_net_id); |
| 381 | |
Chris Mi | 65a206c | 2017-08-30 02:31:59 -0400 | [diff] [blame] | 382 | return tcf_idr_search(tn, a, index); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 383 | } |
| 384 | |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 385 | static struct tc_action_ops act_xt_ops = { |
| 386 | .kind = "xt", |
Eli Cohen | eddd2cf | 2019-02-10 14:25:00 +0200 | [diff] [blame] | 387 | .id = TCA_ID_XT, |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 388 | .owner = THIS_MODULE, |
Jamal Hadi Salim | 11b9695 | 2018-08-12 09:34:53 -0400 | [diff] [blame] | 389 | .act = tcf_ipt_act, |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 390 | .dump = tcf_ipt_dump, |
WANG Cong | 8606203 | 2014-02-11 17:07:31 -0800 | [diff] [blame] | 391 | .cleanup = tcf_ipt_release, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 392 | .init = tcf_xt_init, |
| 393 | .walk = tcf_xt_walker, |
| 394 | .lookup = tcf_xt_search, |
WANG Cong | a85a970 | 2016-07-25 16:09:41 -0700 | [diff] [blame] | 395 | .size = sizeof(struct tcf_ipt), |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 396 | }; |
| 397 | |
| 398 | static __net_init int xt_init_net(struct net *net) |
| 399 | { |
| 400 | struct tc_action_net *tn = net_generic(net, xt_net_id); |
| 401 | |
Cong Wang | 981471b | 2019-08-25 10:01:32 -0700 | [diff] [blame] | 402 | return tc_action_net_init(net, tn, &act_xt_ops); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 403 | } |
| 404 | |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 405 | static void __net_exit xt_exit_net(struct list_head *net_list) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 406 | { |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 407 | tc_action_net_exit(net_list, xt_net_id); |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | static struct pernet_operations xt_net_ops = { |
| 411 | .init = xt_init_net, |
Cong Wang | 039af9c | 2017-12-11 15:35:03 -0800 | [diff] [blame] | 412 | .exit_batch = xt_exit_net, |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 413 | .id = &xt_net_id, |
| 414 | .size = sizeof(struct tc_action_net), |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 415 | }; |
| 416 | |
| 417 | MODULE_AUTHOR("Jamal Hadi Salim(2002-13)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | MODULE_DESCRIPTION("Iptables target actions"); |
| 419 | MODULE_LICENSE("GPL"); |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 420 | MODULE_ALIAS("act_xt"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 422 | static int __init ipt_init_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | { |
WANG Cong | 4f1e9d8 | 2014-02-11 17:07:33 -0800 | [diff] [blame] | 424 | int ret1, ret2; |
WANG Cong | 369ba56 | 2013-12-15 20:15:08 -0800 | [diff] [blame] | 425 | |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 426 | ret1 = tcf_register_action(&act_xt_ops, &xt_net_ops); |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 427 | if (ret1 < 0) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 428 | pr_err("Failed to load xt action\n"); |
| 429 | |
| 430 | ret2 = tcf_register_action(&act_ipt_ops, &ipt_net_ops); |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 431 | if (ret2 < 0) |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 432 | pr_err("Failed to load ipt action\n"); |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 433 | |
WANG Cong | 369ba56 | 2013-12-15 20:15:08 -0800 | [diff] [blame] | 434 | if (ret1 < 0 && ret2 < 0) { |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 435 | return ret1; |
WANG Cong | 369ba56 | 2013-12-15 20:15:08 -0800 | [diff] [blame] | 436 | } else |
Jamal Hadi Salim | 0dcffd0 | 2013-04-28 05:06:38 +0000 | [diff] [blame] | 437 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | } |
| 439 | |
David S. Miller | e9ce1cd | 2006-08-21 23:54:55 -0700 | [diff] [blame] | 440 | static void __exit ipt_cleanup_module(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | { |
WANG Cong | ddf97cc | 2016-02-22 15:57:53 -0800 | [diff] [blame] | 442 | tcf_unregister_action(&act_ipt_ops, &ipt_net_ops); |
| 443 | tcf_unregister_action(&act_xt_ops, &xt_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | module_init(ipt_init_module); |
| 447 | module_exit(ipt_cleanup_module); |