blob: ac7297f423559dd39c0227101cac2bffedbaf750 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Jiri Pirko0c6965d2014-11-05 20:51:51 +01003 * net/sched/act_ipt.c iptables target interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *TODO: Add other tables. For now we only support the ipv4 table targets
6 *
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +00007 * Copyright: Jamal Hadi Salim (2002-13)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/types.h>
11#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/skbuff.h>
15#include <linux/rtnetlink.h>
16#include <linux/module.h>
17#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070019#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#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 Torvalds1da177e2005-04-16 15:20:36 -070026
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030027static unsigned int ipt_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070028static struct tc_action_ops act_ipt_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080029
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030030static unsigned int xt_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070031static struct tc_action_ops act_xt_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080032
Xin Longec0acb02017-08-08 15:25:25 +080033static int ipt_init_target(struct net *net, struct xt_entry_target *t,
34 char *table, unsigned int hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +020036 struct xt_tgchk_param par;
Jan Engelhardte60a13e2007-02-07 15:12:33 -080037 struct xt_target *target;
Xin Long4f8a8812017-08-18 11:01:36 +080038 struct ipt_entry e = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 int ret = 0;
40
Patrick McHardy239a87c2007-02-02 00:40:36 -080041 target = xt_request_find_target(AF_INET, t->u.user.name,
42 t->u.user.revision);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +020043 if (IS_ERR(target))
44 return PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 t->u.kernel.target = target;
Xin Long96d97032017-08-09 18:15:19 +080047 memset(&par, 0, sizeof(par));
Xin Longec0acb02017-08-08 15:25:25 +080048 par.net = net;
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +020049 par.table = table;
Xin Long4f8a8812017-08-18 11:01:36 +080050 par.entryinfo = &e;
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +020051 par.target = target;
52 par.targinfo = t->data;
53 par.hook_mask = hook;
Jan Engelhardt916a9172008-10-08 11:35:20 +020054 par.family = NFPROTO_IPV4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Jan Engelhardt916a9172008-10-08 11:35:20 +020056 ret = xt_check_target(&par, t->u.target_size - sizeof(*t), 0, false);
Jan Engelhardt367c6792008-10-08 11:35:17 +020057 if (ret < 0) {
Patrick McHardy239a87c2007-02-02 00:40:36 -080058 module_put(t->u.kernel.target->me);
Patrick McHardy18118cd2006-04-24 17:18:59 -070059 return ret;
Patrick McHardy239a87c2007-02-02 00:40:36 -080060 }
Jan Engelhardt367c6792008-10-08 11:35:17 +020061 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
Cong Wang981471b2019-08-25 10:01:32 -070064static void ipt_destroy_target(struct xt_entry_target *t, struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Jan Engelhardta2df1642008-10-08 11:35:19 +020066 struct xt_tgdtor_param par = {
67 .target = t->u.kernel.target,
68 .targinfo = t->data,
Phil Sutter44ef5482016-03-03 14:34:14 +010069 .family = NFPROTO_IPV4,
Cong Wang981471b2019-08-25 10:01:32 -070070 .net = net,
Jan Engelhardta2df1642008-10-08 11:35:19 +020071 };
72 if (par.target->destroy != NULL)
73 par.target->destroy(&par);
74 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Cong Wang9a63b252017-12-05 12:53:07 -080077static void tcf_ipt_release(struct tc_action *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
WANG Cong86062032014-02-11 17:07:31 -080079 struct tcf_ipt *ipt = to_ipt(a);
Davide Caratti1e46ef12018-03-19 15:31:26 +010080
81 if (ipt->tcfi_t) {
Cong Wang981471b2019-08-25 10:01:32 -070082 ipt_destroy_target(ipt->tcfi_t, a->idrinfo->net);
Davide Caratti1e46ef12018-03-19 15:31:26 +010083 kfree(ipt->tcfi_t);
84 }
WANG Conga5b5c952014-02-11 17:07:32 -080085 kfree(ipt->tcfi_tname);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Patrick McHardy53b2bf32008-01-23 20:36:30 -080088static 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 Engelhardt87a2e70d2010-10-13 16:11:22 +020092 [TCA_IPT_TARG] = { .len = sizeof(struct xt_entry_target) },
Patrick McHardy53b2bf32008-01-23 20:36:30 -080093};
94
Xin Longec0acb02017-08-08 15:25:25 +080095static int __tcf_ipt_init(struct net *net, unsigned int id, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -070096 struct nlattr *est, struct tc_action **a,
Davide Caratti85d09662019-03-20 14:59:59 +010097 const struct tc_action_ops *ops, int ovr, int bind,
Vlad Buslovabbb0d32019-10-30 16:09:05 +020098 struct tcf_proto *tp, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Xin Longec0acb02017-08-08 15:25:25 +0800100 struct tc_action_net *tn = net_generic(net, id);
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800101 struct nlattr *tb[TCA_IPT_MAX + 1];
David S. Millere9ce1cd2006-08-21 23:54:55 -0700102 struct tcf_ipt *ipt;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200103 struct xt_entry_target *td, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 char *tname;
WANG Congb2313072016-06-13 13:46:28 -0700105 bool exists = false;
106 int ret = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 u32 hook = 0;
108 u32 index = 0;
109
Patrick McHardycee63722008-01-23 20:33:32 -0800110 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return -EINVAL;
112
Johannes Berg8cb08172019-04-26 14:07:28 +0200113 err = nla_parse_nested_deprecated(tb, TCA_IPT_MAX, nla, ipt_policy,
114 NULL);
Patrick McHardycee63722008-01-23 20:33:32 -0800115 if (err < 0)
116 return err;
117
Jamal Hadi Salima57f19d2016-05-10 16:49:27 -0400118 if (tb[TCA_IPT_INDEX] != NULL)
119 index = nla_get_u32(tb[TCA_IPT_INDEX]);
120
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300121 err = tcf_idr_check_alloc(tn, &index, a, bind);
122 if (err < 0)
123 return err;
124 exists = err;
Jamal Hadi Salima57f19d2016-05-10 16:49:27 -0400125 if (exists && bind)
126 return 0;
127
128 if (tb[TCA_IPT_HOOK] == NULL || tb[TCA_IPT_TARG] == NULL) {
129 if (exists)
Chris Mi65a206c2017-08-30 02:31:59 -0400130 tcf_idr_release(*a, bind);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300131 else
132 tcf_idr_cleanup(tn, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return -EINVAL;
Jamal Hadi Salima57f19d2016-05-10 16:49:27 -0400134 }
Patrick McHardy53b2bf32008-01-23 20:36:30 -0800135
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200136 td = (struct xt_entry_target *)nla_data(tb[TCA_IPT_TARG]);
Dan Carpenteraeadd932018-09-22 16:46:48 +0300137 if (nla_len(tb[TCA_IPT_TARG]) != td->u.target_size) {
WANG Congd15ecce2016-06-13 13:44:14 -0700138 if (exists)
Chris Mi65a206c2017-08-30 02:31:59 -0400139 tcf_idr_release(*a, bind);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300140 else
141 tcf_idr_cleanup(tn, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return -EINVAL;
WANG Congd15ecce2016-06-13 13:44:14 -0700143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
WANG Congd15ecce2016-06-13 13:44:14 -0700145 if (!exists) {
Chris Mi65a206c2017-08-30 02:31:59 -0400146 ret = tcf_idr_create(tn, index, est, a, ops, bind,
Vlad Buslove3822672019-10-30 16:09:06 +0200147 false, 0);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300148 if (ret) {
149 tcf_idr_cleanup(tn, index);
WANG Cong86062032014-02-11 17:07:31 -0800150 return ret;
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 ret = ACT_P_CREATED;
153 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500154 if (bind)/* dont override defaults */
155 return 0;
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500156
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300157 if (!ovr) {
158 tcf_idr_release(*a, bind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return -EEXIST;
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
Patrick McHardy1587bac2008-01-23 20:35:03 -0800162 hook = nla_get_u32(tb[TCA_IPT_HOOK]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 err = -ENOMEM;
165 tname = kmalloc(IFNAMSIZ, GFP_KERNEL);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700166 if (unlikely(!tname))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 goto err1;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800168 if (tb[TCA_IPT_TABLE] == NULL ||
Francis Laniel872f6902020-11-15 18:08:06 +0100169 nla_strscpy(tname, tb[TCA_IPT_TABLE], IFNAMSIZ) >= IFNAMSIZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 strcpy(tname, "mangle");
171
Arnaldo Carvalho de Meloc7b1b242006-11-21 01:19:40 -0200172 t = kmemdup(td, td->u.target_size, GFP_KERNEL);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700173 if (unlikely(!t))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Xin Longec0acb02017-08-08 15:25:25 +0800176 err = ipt_init_target(net, t, tname, hook);
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000177 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 goto err3;
179
WANG Conga85a9702016-07-25 16:09:41 -0700180 ipt = to_ipt(*a);
181
David S. Millere9ce1cd2006-08-21 23:54:55 -0700182 spin_lock_bh(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (ret != ACT_P_CREATED) {
Cong Wang981471b2019-08-25 10:01:32 -0700184 ipt_destroy_target(ipt->tcfi_t, net);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700185 kfree(ipt->tcfi_tname);
186 kfree(ipt->tcfi_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700188 ipt->tcfi_tname = tname;
189 ipt->tcfi_t = t;
190 ipt->tcfi_hook = hook;
191 spin_unlock_bh(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return ret;
193
194err3:
195 kfree(t);
196err2:
197 kfree(tname);
198err1:
Davide Caratti8f67c902019-02-22 12:33:25 +0100199 tcf_idr_release(*a, bind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return err;
201}
202
WANG Congddf97cc2016-02-22 15:57:53 -0800203static int tcf_ipt_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700204 struct nlattr *est, struct tc_action **a, int ovr,
Davide Caratti85d09662019-03-20 14:59:59 +0100205 int bind, bool rtnl_held, struct tcf_proto *tp,
Vlad Buslovabbb0d32019-10-30 16:09:05 +0200206 u32 flags, struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800207{
Xin Longec0acb02017-08-08 15:25:25 +0800208 return __tcf_ipt_init(net, ipt_net_id, nla, est, a, &act_ipt_ops, ovr,
Vlad Buslovabbb0d32019-10-30 16:09:05 +0200209 bind, tp, flags);
WANG Congddf97cc2016-02-22 15:57:53 -0800210}
211
212static int tcf_xt_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700213 struct nlattr *est, struct tc_action **a, int ovr,
Davide Caratti85d09662019-03-20 14:59:59 +0100214 int bind, bool unlocked, struct tcf_proto *tp,
Vlad Buslovabbb0d32019-10-30 16:09:05 +0200215 u32 flags, struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800216{
Xin Longec0acb02017-08-08 15:25:25 +0800217 return __tcf_ipt_init(net, xt_net_id, nla, est, a, &act_xt_ops, ovr,
Vlad Buslovabbb0d32019-10-30 16:09:05 +0200218 bind, tp, flags);
WANG Congddf97cc2016-02-22 15:57:53 -0800219}
220
Jamal Hadi Salim11b96952018-08-12 09:34:53 -0400221static int tcf_ipt_act(struct sk_buff *skb, const struct tc_action *a,
222 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 int ret = 0, result = 0;
WANG Conga85a9702016-07-25 16:09:41 -0700225 struct tcf_ipt *ipt = to_ipt(a);
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200226 struct xt_action_param par;
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100227 struct nf_hook_state state = {
228 .net = dev_net(skb->dev),
229 .in = skb->dev,
230 .hook = ipt->tcfi_hook,
231 .pf = NFPROTO_IPV4,
232 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000234 if (skb_unclone(skb, GFP_ATOMIC))
235 return TC_ACT_UNSPEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
David S. Millere9ce1cd2006-08-21 23:54:55 -0700237 spin_lock(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400239 tcf_lastuse_update(&ipt->tcf_tm);
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000240 bstats_update(&ipt->tcf_bstats, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /* yes, we have to worry about both in and out dev
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000243 * worry later - danger - this API seems to have changed
244 * from earlier kernels
245 */
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100246 par.state = &state;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200247 par.target = ipt->tcfi_t->u.kernel.target;
248 par.targinfo = ipt->tcfi_t->data;
249 ret = par.target->target(skb, &par);
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 switch (ret) {
252 case NF_ACCEPT:
253 result = TC_ACT_OK;
254 break;
255 case NF_DROP:
256 result = TC_ACT_SHOT;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700257 ipt->tcf_qstats.drops++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 break;
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200259 case XT_CONTINUE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 result = TC_ACT_PIPE;
261 break;
262 default:
Joe Perchese87cc472012-05-13 21:56:26 +0000263 net_notice_ratelimited("tc filter: Bogus netfilter code %d assume ACCEPT\n",
264 ret);
WANG Cong95df1b12016-06-13 10:47:43 -0700265 result = TC_ACT_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 break;
267 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700268 spin_unlock(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return result;
270
271}
272
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400273static int tcf_ipt_dump(struct sk_buff *skb, struct tc_action *a, int bind,
274 int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700276 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700277 struct tcf_ipt *ipt = to_ipt(a);
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200278 struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct tcf_t tm;
280 struct tc_cnt c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /* for simple targets kernel size == user size
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000283 * user name = target name
284 * for foolproof you need to not assume this
285 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Vlad Buslovff252762018-08-10 20:51:45 +0300287 spin_lock_bh(&ipt->tcf_lock);
Arnaldo Carvalho de Meloc7b1b242006-11-21 01:19:40 -0200288 t = kmemdup(ipt->tcfi_t, ipt->tcfi_t->u.user.target_size, GFP_ATOMIC);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700289 if (unlikely(!t))
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800290 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Vlad Buslov036bb442018-07-05 17:24:24 +0300292 c.bindcnt = atomic_read(&ipt->tcf_bindcnt) - bind;
293 c.refcnt = refcount_read(&ipt->tcf_refcnt) - ref;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700294 strcpy(t->u.user.name, ipt->tcfi_t->u.kernel.target->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
David S. Miller1b34ec42012-03-29 05:11:39 -0400296 if (nla_put(skb, TCA_IPT_TARG, ipt->tcfi_t->u.user.target_size, t) ||
297 nla_put_u32(skb, TCA_IPT_INDEX, ipt->tcf_index) ||
298 nla_put_u32(skb, TCA_IPT_HOOK, ipt->tcfi_hook) ||
299 nla_put(skb, TCA_IPT_CNT, sizeof(struct tc_cnt), &c) ||
300 nla_put_string(skb, TCA_IPT_TABLE, ipt->tcfi_tname))
301 goto nla_put_failure;
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400302
303 tcf_tm_dump(&tm, &ipt->tcf_tm);
Nicolas Dichtel9854518e2016-04-26 10:06:18 +0200304 if (nla_put_64bit(skb, TCA_IPT_TM, sizeof(tm), &tm, TCA_IPT_PAD))
David S. Miller1b34ec42012-03-29 05:11:39 -0400305 goto nla_put_failure;
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400306
Vlad Buslovff252762018-08-10 20:51:45 +0300307 spin_unlock_bh(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 kfree(t);
309 return skb->len;
310
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800311nla_put_failure:
Vlad Buslovff252762018-08-10 20:51:45 +0300312 spin_unlock_bh(&ipt->tcf_lock);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700313 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 kfree(t);
315 return -1;
316}
317
WANG Congddf97cc2016-02-22 15:57:53 -0800318static int tcf_ipt_walker(struct net *net, struct sk_buff *skb,
319 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500320 const struct tc_action_ops *ops,
321 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800322{
323 struct tc_action_net *tn = net_generic(net, ipt_net_id);
324
Alexander Aringb3620142018-02-15 10:54:59 -0500325 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
WANG Congddf97cc2016-02-22 15:57:53 -0800326}
327
Cong Wangf061b482018-08-29 10:15:35 -0700328static int tcf_ipt_search(struct net *net, struct tc_action **a, u32 index)
WANG Congddf97cc2016-02-22 15:57:53 -0800329{
330 struct tc_action_net *tn = net_generic(net, ipt_net_id);
331
Chris Mi65a206c2017-08-30 02:31:59 -0400332 return tcf_idr_search(tn, a, index);
WANG Congddf97cc2016-02-22 15:57:53 -0800333}
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335static struct tc_action_ops act_ipt_ops = {
336 .kind = "ipt",
Eli Coheneddd2cf2019-02-10 14:25:00 +0200337 .id = TCA_ID_IPT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 .owner = THIS_MODULE,
Jamal Hadi Salim11b96952018-08-12 09:34:53 -0400339 .act = tcf_ipt_act,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 .dump = tcf_ipt_dump,
WANG Cong86062032014-02-11 17:07:31 -0800341 .cleanup = tcf_ipt_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 .init = tcf_ipt_init,
WANG Congddf97cc2016-02-22 15:57:53 -0800343 .walk = tcf_ipt_walker,
344 .lookup = tcf_ipt_search,
WANG Conga85a9702016-07-25 16:09:41 -0700345 .size = sizeof(struct tcf_ipt),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346};
347
WANG Congddf97cc2016-02-22 15:57:53 -0800348static __net_init int ipt_init_net(struct net *net)
349{
350 struct tc_action_net *tn = net_generic(net, ipt_net_id);
351
Cong Wang981471b2019-08-25 10:01:32 -0700352 return tc_action_net_init(net, tn, &act_ipt_ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800353}
354
Cong Wang039af9c2017-12-11 15:35:03 -0800355static void __net_exit ipt_exit_net(struct list_head *net_list)
WANG Congddf97cc2016-02-22 15:57:53 -0800356{
Cong Wang039af9c2017-12-11 15:35:03 -0800357 tc_action_net_exit(net_list, ipt_net_id);
WANG Congddf97cc2016-02-22 15:57:53 -0800358}
359
360static struct pernet_operations ipt_net_ops = {
361 .init = ipt_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800362 .exit_batch = ipt_exit_net,
WANG Congddf97cc2016-02-22 15:57:53 -0800363 .id = &ipt_net_id,
364 .size = sizeof(struct tc_action_net),
365};
366
367static int tcf_xt_walker(struct net *net, struct sk_buff *skb,
368 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500369 const struct tc_action_ops *ops,
370 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800371{
372 struct tc_action_net *tn = net_generic(net, xt_net_id);
373
Alexander Aringb3620142018-02-15 10:54:59 -0500374 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
WANG Congddf97cc2016-02-22 15:57:53 -0800375}
376
Cong Wangf061b482018-08-29 10:15:35 -0700377static int tcf_xt_search(struct net *net, struct tc_action **a, u32 index)
WANG Congddf97cc2016-02-22 15:57:53 -0800378{
379 struct tc_action_net *tn = net_generic(net, xt_net_id);
380
Chris Mi65a206c2017-08-30 02:31:59 -0400381 return tcf_idr_search(tn, a, index);
WANG Congddf97cc2016-02-22 15:57:53 -0800382}
383
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000384static struct tc_action_ops act_xt_ops = {
385 .kind = "xt",
Eli Coheneddd2cf2019-02-10 14:25:00 +0200386 .id = TCA_ID_XT,
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000387 .owner = THIS_MODULE,
Jamal Hadi Salim11b96952018-08-12 09:34:53 -0400388 .act = tcf_ipt_act,
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000389 .dump = tcf_ipt_dump,
WANG Cong86062032014-02-11 17:07:31 -0800390 .cleanup = tcf_ipt_release,
WANG Congddf97cc2016-02-22 15:57:53 -0800391 .init = tcf_xt_init,
392 .walk = tcf_xt_walker,
393 .lookup = tcf_xt_search,
WANG Conga85a9702016-07-25 16:09:41 -0700394 .size = sizeof(struct tcf_ipt),
WANG Congddf97cc2016-02-22 15:57:53 -0800395};
396
397static __net_init int xt_init_net(struct net *net)
398{
399 struct tc_action_net *tn = net_generic(net, xt_net_id);
400
Cong Wang981471b2019-08-25 10:01:32 -0700401 return tc_action_net_init(net, tn, &act_xt_ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800402}
403
Cong Wang039af9c2017-12-11 15:35:03 -0800404static void __net_exit xt_exit_net(struct list_head *net_list)
WANG Congddf97cc2016-02-22 15:57:53 -0800405{
Cong Wang039af9c2017-12-11 15:35:03 -0800406 tc_action_net_exit(net_list, xt_net_id);
WANG Congddf97cc2016-02-22 15:57:53 -0800407}
408
409static struct pernet_operations xt_net_ops = {
410 .init = xt_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800411 .exit_batch = xt_exit_net,
WANG Congddf97cc2016-02-22 15:57:53 -0800412 .id = &xt_net_id,
413 .size = sizeof(struct tc_action_net),
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000414};
415
416MODULE_AUTHOR("Jamal Hadi Salim(2002-13)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417MODULE_DESCRIPTION("Iptables target actions");
418MODULE_LICENSE("GPL");
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000419MODULE_ALIAS("act_xt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
David S. Millere9ce1cd2006-08-21 23:54:55 -0700421static int __init ipt_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
WANG Cong4f1e9d82014-02-11 17:07:33 -0800423 int ret1, ret2;
WANG Cong369ba562013-12-15 20:15:08 -0800424
WANG Congddf97cc2016-02-22 15:57:53 -0800425 ret1 = tcf_register_action(&act_xt_ops, &xt_net_ops);
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000426 if (ret1 < 0)
WANG Congddf97cc2016-02-22 15:57:53 -0800427 pr_err("Failed to load xt action\n");
428
429 ret2 = tcf_register_action(&act_ipt_ops, &ipt_net_ops);
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000430 if (ret2 < 0)
WANG Congddf97cc2016-02-22 15:57:53 -0800431 pr_err("Failed to load ipt action\n");
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000432
WANG Cong369ba562013-12-15 20:15:08 -0800433 if (ret1 < 0 && ret2 < 0) {
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000434 return ret1;
WANG Cong369ba562013-12-15 20:15:08 -0800435 } else
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000436 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
David S. Millere9ce1cd2006-08-21 23:54:55 -0700439static void __exit ipt_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
WANG Congddf97cc2016-02-22 15:57:53 -0800441 tcf_unregister_action(&act_ipt_ops, &ipt_net_ops);
442 tcf_unregister_action(&act_xt_ops, &xt_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445module_init(ipt_init_module);
446module_exit(ipt_cleanup_module);