blob: 8af6c11d2482ac53e6520691c85ff291a4704a81 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jiri Pirko0c6965d2014-11-05 20:51:51 +01002 * net/sched/act_ipt.c iptables target interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 *TODO: Add other tables. For now we only support the ipv4 table targets
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +000011 * Copyright: Jamal Hadi Salim (2002-13)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/types.h>
15#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/skbuff.h>
19#include <linux/rtnetlink.h>
20#include <linux/module.h>
21#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070023#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <net/pkt_sched.h>
25#include <linux/tc_act/tc_ipt.h>
26#include <net/tc_act/tc_ipt.h>
27
28#include <linux/netfilter_ipv4/ip_tables.h>
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030031static unsigned int ipt_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070032static struct tc_action_ops act_ipt_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080033
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030034static unsigned int xt_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070035static struct tc_action_ops act_xt_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080036
Xin Longec0acb02017-08-08 15:25:25 +080037static int ipt_init_target(struct net *net, struct xt_entry_target *t,
38 char *table, unsigned int hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +020040 struct xt_tgchk_param par;
Jan Engelhardte60a13e2007-02-07 15:12:33 -080041 struct xt_target *target;
Xin Long4f8a8812017-08-18 11:01:36 +080042 struct ipt_entry e = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 int ret = 0;
44
Patrick McHardy239a87c2007-02-02 00:40:36 -080045 target = xt_request_find_target(AF_INET, t->u.user.name,
46 t->u.user.revision);
Jan Engelhardtd2a7b6b2009-07-10 18:55:11 +020047 if (IS_ERR(target))
48 return PTR_ERR(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 t->u.kernel.target = target;
Xin Long96d97032017-08-09 18:15:19 +080051 memset(&par, 0, sizeof(par));
Xin Longec0acb02017-08-08 15:25:25 +080052 par.net = net;
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +020053 par.table = table;
Xin Long4f8a8812017-08-18 11:01:36 +080054 par.entryinfo = &e;
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +020055 par.target = target;
56 par.targinfo = t->data;
57 par.hook_mask = hook;
Jan Engelhardt916a9172008-10-08 11:35:20 +020058 par.family = NFPROTO_IPV4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Jan Engelhardt916a9172008-10-08 11:35:20 +020060 ret = xt_check_target(&par, t->u.target_size - sizeof(*t), 0, false);
Jan Engelhardt367c6792008-10-08 11:35:17 +020061 if (ret < 0) {
Patrick McHardy239a87c2007-02-02 00:40:36 -080062 module_put(t->u.kernel.target->me);
Patrick McHardy18118cd2006-04-24 17:18:59 -070063 return ret;
Patrick McHardy239a87c2007-02-02 00:40:36 -080064 }
Jan Engelhardt367c6792008-10-08 11:35:17 +020065 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +020068static void ipt_destroy_target(struct xt_entry_target *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Jan Engelhardta2df1642008-10-08 11:35:19 +020070 struct xt_tgdtor_param par = {
71 .target = t->u.kernel.target,
72 .targinfo = t->data,
Phil Sutter44ef5482016-03-03 14:34:14 +010073 .family = NFPROTO_IPV4,
Jan Engelhardta2df1642008-10-08 11:35:19 +020074 };
75 if (par.target->destroy != NULL)
76 par.target->destroy(&par);
77 module_put(par.target->me);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
Cong Wang9a63b252017-12-05 12:53:07 -080080static void tcf_ipt_release(struct tc_action *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
WANG Cong86062032014-02-11 17:07:31 -080082 struct tcf_ipt *ipt = to_ipt(a);
Davide Caratti1e46ef12018-03-19 15:31:26 +010083
84 if (ipt->tcfi_t) {
85 ipt_destroy_target(ipt->tcfi_t);
86 kfree(ipt->tcfi_t);
87 }
WANG Conga5b5c952014-02-11 17:07:32 -080088 kfree(ipt->tcfi_tname);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Patrick McHardy53b2bf32008-01-23 20:36:30 -080091static const struct nla_policy ipt_policy[TCA_IPT_MAX + 1] = {
92 [TCA_IPT_TABLE] = { .type = NLA_STRING, .len = IFNAMSIZ },
93 [TCA_IPT_HOOK] = { .type = NLA_U32 },
94 [TCA_IPT_INDEX] = { .type = NLA_U32 },
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +020095 [TCA_IPT_TARG] = { .len = sizeof(struct xt_entry_target) },
Patrick McHardy53b2bf32008-01-23 20:36:30 -080096};
97
Xin Longec0acb02017-08-08 15:25:25 +080098static int __tcf_ipt_init(struct net *net, unsigned int id, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -070099 struct nlattr *est, struct tc_action **a,
100 const struct tc_action_ops *ops, int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Xin Longec0acb02017-08-08 15:25:25 +0800102 struct tc_action_net *tn = net_generic(net, id);
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800103 struct nlattr *tb[TCA_IPT_MAX + 1];
David S. Millere9ce1cd2006-08-21 23:54:55 -0700104 struct tcf_ipt *ipt;
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200105 struct xt_entry_target *td, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 char *tname;
WANG Congb2313072016-06-13 13:46:28 -0700107 bool exists = false;
108 int ret = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 u32 hook = 0;
110 u32 index = 0;
111
Patrick McHardycee63722008-01-23 20:33:32 -0800112 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return -EINVAL;
114
Johannes Bergfceb6432017-04-12 14:34:07 +0200115 err = nla_parse_nested(tb, TCA_IPT_MAX, nla, ipt_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -0800116 if (err < 0)
117 return err;
118
Jamal Hadi Salima57f19d2016-05-10 16:49:27 -0400119 if (tb[TCA_IPT_INDEX] != NULL)
120 index = nla_get_u32(tb[TCA_IPT_INDEX]);
121
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300122 err = tcf_idr_check_alloc(tn, &index, a, bind);
123 if (err < 0)
124 return err;
125 exists = err;
Jamal Hadi Salima57f19d2016-05-10 16:49:27 -0400126 if (exists && bind)
127 return 0;
128
129 if (tb[TCA_IPT_HOOK] == NULL || tb[TCA_IPT_TARG] == NULL) {
130 if (exists)
Chris Mi65a206c2017-08-30 02:31:59 -0400131 tcf_idr_release(*a, bind);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300132 else
133 tcf_idr_cleanup(tn, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return -EINVAL;
Jamal Hadi Salima57f19d2016-05-10 16:49:27 -0400135 }
Patrick McHardy53b2bf32008-01-23 20:36:30 -0800136
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200137 td = (struct xt_entry_target *)nla_data(tb[TCA_IPT_TARG]);
Dan Carpenteraeadd932018-09-22 16:46:48 +0300138 if (nla_len(tb[TCA_IPT_TARG]) != td->u.target_size) {
WANG Congd15ecce2016-06-13 13:44:14 -0700139 if (exists)
Chris Mi65a206c2017-08-30 02:31:59 -0400140 tcf_idr_release(*a, bind);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300141 else
142 tcf_idr_cleanup(tn, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return -EINVAL;
WANG Congd15ecce2016-06-13 13:44:14 -0700144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
WANG Congd15ecce2016-06-13 13:44:14 -0700146 if (!exists) {
Chris Mi65a206c2017-08-30 02:31:59 -0400147 ret = tcf_idr_create(tn, index, est, a, ops, bind,
148 false);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300149 if (ret) {
150 tcf_idr_cleanup(tn, index);
WANG Cong86062032014-02-11 17:07:31 -0800151 return ret;
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 ret = ACT_P_CREATED;
154 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500155 if (bind)/* dont override defaults */
156 return 0;
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500157
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300158 if (!ovr) {
159 tcf_idr_release(*a, bind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -EEXIST;
Vlad Buslov4e8ddd72018-07-05 17:24:30 +0300161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
Patrick McHardy1587bac2008-01-23 20:35:03 -0800163 hook = nla_get_u32(tb[TCA_IPT_HOOK]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 err = -ENOMEM;
166 tname = kmalloc(IFNAMSIZ, GFP_KERNEL);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700167 if (unlikely(!tname))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 goto err1;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800169 if (tb[TCA_IPT_TABLE] == NULL ||
170 nla_strlcpy(tname, tb[TCA_IPT_TABLE], IFNAMSIZ) >= IFNAMSIZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 strcpy(tname, "mangle");
172
Arnaldo Carvalho de Meloc7b1b242006-11-21 01:19:40 -0200173 t = kmemdup(td, td->u.target_size, GFP_KERNEL);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700174 if (unlikely(!t))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Xin Longec0acb02017-08-08 15:25:25 +0800177 err = ipt_init_target(net, t, tname, hook);
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000178 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 goto err3;
180
WANG Conga85a9702016-07-25 16:09:41 -0700181 ipt = to_ipt(*a);
182
David S. Millere9ce1cd2006-08-21 23:54:55 -0700183 spin_lock_bh(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (ret != ACT_P_CREATED) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700185 ipt_destroy_target(ipt->tcfi_t);
186 kfree(ipt->tcfi_tname);
187 kfree(ipt->tcfi_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700189 ipt->tcfi_tname = tname;
190 ipt->tcfi_t = t;
191 ipt->tcfi_hook = hook;
192 spin_unlock_bh(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (ret == ACT_P_CREATED)
Chris Mi65a206c2017-08-30 02:31:59 -0400194 tcf_idr_insert(tn, *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return ret;
196
197err3:
198 kfree(t);
199err2:
200 kfree(tname);
201err1:
WANG Cong86062032014-02-11 17:07:31 -0800202 if (ret == ACT_P_CREATED)
Davide Caratti1e46ef12018-03-19 15:31:26 +0100203 tcf_idr_release(*a, bind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return err;
205}
206
WANG Congddf97cc2016-02-22 15:57:53 -0800207static int tcf_ipt_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700208 struct nlattr *est, struct tc_action **a, int ovr,
Vlad Buslov789871b2018-07-05 17:24:25 +0300209 int bind, bool rtnl_held,
210 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800211{
Xin Longec0acb02017-08-08 15:25:25 +0800212 return __tcf_ipt_init(net, ipt_net_id, nla, est, a, &act_ipt_ops, ovr,
213 bind);
WANG Congddf97cc2016-02-22 15:57:53 -0800214}
215
216static int tcf_xt_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700217 struct nlattr *est, struct tc_action **a, int ovr,
Vlad Buslov789871b2018-07-05 17:24:25 +0300218 int bind, bool unlocked,
219 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800220{
Xin Longec0acb02017-08-08 15:25:25 +0800221 return __tcf_ipt_init(net, xt_net_id, nla, est, a, &act_xt_ops, ovr,
222 bind);
WANG Congddf97cc2016-02-22 15:57:53 -0800223}
224
Jamal Hadi Salim11b96952018-08-12 09:34:53 -0400225static int tcf_ipt_act(struct sk_buff *skb, const struct tc_action *a,
226 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 int ret = 0, result = 0;
WANG Conga85a9702016-07-25 16:09:41 -0700229 struct tcf_ipt *ipt = to_ipt(a);
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200230 struct xt_action_param par;
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100231 struct nf_hook_state state = {
232 .net = dev_net(skb->dev),
233 .in = skb->dev,
234 .hook = ipt->tcfi_hook,
235 .pf = NFPROTO_IPV4,
236 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000238 if (skb_unclone(skb, GFP_ATOMIC))
239 return TC_ACT_UNSPEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
David S. Millere9ce1cd2006-08-21 23:54:55 -0700241 spin_lock(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400243 tcf_lastuse_update(&ipt->tcf_tm);
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000244 bstats_update(&ipt->tcf_bstats, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* yes, we have to worry about both in and out dev
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000247 * worry later - danger - this API seems to have changed
248 * from earlier kernels
249 */
Pablo Neira Ayuso613dbd92016-11-03 10:56:21 +0100250 par.state = &state;
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200251 par.target = ipt->tcfi_t->u.kernel.target;
252 par.targinfo = ipt->tcfi_t->data;
253 ret = par.target->target(skb, &par);
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 switch (ret) {
256 case NF_ACCEPT:
257 result = TC_ACT_OK;
258 break;
259 case NF_DROP:
260 result = TC_ACT_SHOT;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700261 ipt->tcf_qstats.drops++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 break;
Jan Engelhardt243bf6e2010-10-13 16:28:00 +0200263 case XT_CONTINUE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 result = TC_ACT_PIPE;
265 break;
266 default:
Joe Perchese87cc472012-05-13 21:56:26 +0000267 net_notice_ratelimited("tc filter: Bogus netfilter code %d assume ACCEPT\n",
268 ret);
WANG Cong95df1b12016-06-13 10:47:43 -0700269 result = TC_ACT_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 break;
271 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700272 spin_unlock(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return result;
274
275}
276
Jamal Hadi Salim0b0f43f2016-06-05 10:41:32 -0400277static int tcf_ipt_dump(struct sk_buff *skb, struct tc_action *a, int bind,
278 int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700280 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700281 struct tcf_ipt *ipt = to_ipt(a);
Jan Engelhardt87a2e70d2010-10-13 16:11:22 +0200282 struct xt_entry_target *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 struct tcf_t tm;
284 struct tc_cnt c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /* for simple targets kernel size == user size
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000287 * user name = target name
288 * for foolproof you need to not assume this
289 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Vlad Buslovff252762018-08-10 20:51:45 +0300291 spin_lock_bh(&ipt->tcf_lock);
Arnaldo Carvalho de Meloc7b1b242006-11-21 01:19:40 -0200292 t = kmemdup(ipt->tcfi_t, ipt->tcfi_t->u.user.target_size, GFP_ATOMIC);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700293 if (unlikely(!t))
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800294 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Vlad Buslov036bb442018-07-05 17:24:24 +0300296 c.bindcnt = atomic_read(&ipt->tcf_bindcnt) - bind;
297 c.refcnt = refcount_read(&ipt->tcf_refcnt) - ref;
David S. Millere9ce1cd2006-08-21 23:54:55 -0700298 strcpy(t->u.user.name, ipt->tcfi_t->u.kernel.target->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
David S. Miller1b34ec42012-03-29 05:11:39 -0400300 if (nla_put(skb, TCA_IPT_TARG, ipt->tcfi_t->u.user.target_size, t) ||
301 nla_put_u32(skb, TCA_IPT_INDEX, ipt->tcf_index) ||
302 nla_put_u32(skb, TCA_IPT_HOOK, ipt->tcfi_hook) ||
303 nla_put(skb, TCA_IPT_CNT, sizeof(struct tc_cnt), &c) ||
304 nla_put_string(skb, TCA_IPT_TABLE, ipt->tcfi_tname))
305 goto nla_put_failure;
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400306
307 tcf_tm_dump(&tm, &ipt->tcf_tm);
Nicolas Dichtel9854518e2016-04-26 10:06:18 +0200308 if (nla_put_64bit(skb, TCA_IPT_TM, sizeof(tm), &tm, TCA_IPT_PAD))
David S. Miller1b34ec42012-03-29 05:11:39 -0400309 goto nla_put_failure;
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400310
Vlad Buslovff252762018-08-10 20:51:45 +0300311 spin_unlock_bh(&ipt->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 kfree(t);
313 return skb->len;
314
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800315nla_put_failure:
Vlad Buslovff252762018-08-10 20:51:45 +0300316 spin_unlock_bh(&ipt->tcf_lock);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700317 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 kfree(t);
319 return -1;
320}
321
WANG Congddf97cc2016-02-22 15:57:53 -0800322static int tcf_ipt_walker(struct net *net, struct sk_buff *skb,
323 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500324 const struct tc_action_ops *ops,
325 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800326{
327 struct tc_action_net *tn = net_generic(net, ipt_net_id);
328
Alexander Aringb3620142018-02-15 10:54:59 -0500329 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
WANG Congddf97cc2016-02-22 15:57:53 -0800330}
331
Cong Wangf061b482018-08-29 10:15:35 -0700332static int tcf_ipt_search(struct net *net, struct tc_action **a, u32 index)
WANG Congddf97cc2016-02-22 15:57:53 -0800333{
334 struct tc_action_net *tn = net_generic(net, ipt_net_id);
335
Chris Mi65a206c2017-08-30 02:31:59 -0400336 return tcf_idr_search(tn, a, index);
WANG Congddf97cc2016-02-22 15:57:53 -0800337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static struct tc_action_ops act_ipt_ops = {
340 .kind = "ipt",
341 .type = TCA_ACT_IPT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 .owner = THIS_MODULE,
Jamal Hadi Salim11b96952018-08-12 09:34:53 -0400343 .act = tcf_ipt_act,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 .dump = tcf_ipt_dump,
WANG Cong86062032014-02-11 17:07:31 -0800345 .cleanup = tcf_ipt_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 .init = tcf_ipt_init,
WANG Congddf97cc2016-02-22 15:57:53 -0800347 .walk = tcf_ipt_walker,
348 .lookup = tcf_ipt_search,
WANG Conga85a9702016-07-25 16:09:41 -0700349 .size = sizeof(struct tcf_ipt),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350};
351
WANG Congddf97cc2016-02-22 15:57:53 -0800352static __net_init int ipt_init_net(struct net *net)
353{
354 struct tc_action_net *tn = net_generic(net, ipt_net_id);
355
Cong Wangc7e460c2017-11-06 13:47:18 -0800356 return tc_action_net_init(tn, &act_ipt_ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800357}
358
Cong Wang039af9c2017-12-11 15:35:03 -0800359static void __net_exit ipt_exit_net(struct list_head *net_list)
WANG Congddf97cc2016-02-22 15:57:53 -0800360{
Cong Wang039af9c2017-12-11 15:35:03 -0800361 tc_action_net_exit(net_list, ipt_net_id);
WANG Congddf97cc2016-02-22 15:57:53 -0800362}
363
364static struct pernet_operations ipt_net_ops = {
365 .init = ipt_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800366 .exit_batch = ipt_exit_net,
WANG Congddf97cc2016-02-22 15:57:53 -0800367 .id = &ipt_net_id,
368 .size = sizeof(struct tc_action_net),
369};
370
371static int tcf_xt_walker(struct net *net, struct sk_buff *skb,
372 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500373 const struct tc_action_ops *ops,
374 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800375{
376 struct tc_action_net *tn = net_generic(net, xt_net_id);
377
Alexander Aringb3620142018-02-15 10:54:59 -0500378 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
WANG Congddf97cc2016-02-22 15:57:53 -0800379}
380
Cong Wangf061b482018-08-29 10:15:35 -0700381static int tcf_xt_search(struct net *net, struct tc_action **a, u32 index)
WANG Congddf97cc2016-02-22 15:57:53 -0800382{
383 struct tc_action_net *tn = net_generic(net, xt_net_id);
384
Chris Mi65a206c2017-08-30 02:31:59 -0400385 return tcf_idr_search(tn, a, index);
WANG Congddf97cc2016-02-22 15:57:53 -0800386}
387
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000388static struct tc_action_ops act_xt_ops = {
389 .kind = "xt",
WANG Cong6c805632014-01-15 15:38:43 -0800390 .type = TCA_ACT_XT,
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000391 .owner = THIS_MODULE,
Jamal Hadi Salim11b96952018-08-12 09:34:53 -0400392 .act = tcf_ipt_act,
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000393 .dump = tcf_ipt_dump,
WANG Cong86062032014-02-11 17:07:31 -0800394 .cleanup = tcf_ipt_release,
WANG Congddf97cc2016-02-22 15:57:53 -0800395 .init = tcf_xt_init,
396 .walk = tcf_xt_walker,
397 .lookup = tcf_xt_search,
WANG Conga85a9702016-07-25 16:09:41 -0700398 .size = sizeof(struct tcf_ipt),
WANG Congddf97cc2016-02-22 15:57:53 -0800399};
400
401static __net_init int xt_init_net(struct net *net)
402{
403 struct tc_action_net *tn = net_generic(net, xt_net_id);
404
Cong Wangc7e460c2017-11-06 13:47:18 -0800405 return tc_action_net_init(tn, &act_xt_ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800406}
407
Cong Wang039af9c2017-12-11 15:35:03 -0800408static void __net_exit xt_exit_net(struct list_head *net_list)
WANG Congddf97cc2016-02-22 15:57:53 -0800409{
Cong Wang039af9c2017-12-11 15:35:03 -0800410 tc_action_net_exit(net_list, xt_net_id);
WANG Congddf97cc2016-02-22 15:57:53 -0800411}
412
413static struct pernet_operations xt_net_ops = {
414 .init = xt_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800415 .exit_batch = xt_exit_net,
WANG Congddf97cc2016-02-22 15:57:53 -0800416 .id = &xt_net_id,
417 .size = sizeof(struct tc_action_net),
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000418};
419
420MODULE_AUTHOR("Jamal Hadi Salim(2002-13)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421MODULE_DESCRIPTION("Iptables target actions");
422MODULE_LICENSE("GPL");
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000423MODULE_ALIAS("act_xt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
David S. Millere9ce1cd2006-08-21 23:54:55 -0700425static int __init ipt_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
WANG Cong4f1e9d82014-02-11 17:07:33 -0800427 int ret1, ret2;
WANG Cong369ba562013-12-15 20:15:08 -0800428
WANG Congddf97cc2016-02-22 15:57:53 -0800429 ret1 = tcf_register_action(&act_xt_ops, &xt_net_ops);
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000430 if (ret1 < 0)
WANG Congddf97cc2016-02-22 15:57:53 -0800431 pr_err("Failed to load xt action\n");
432
433 ret2 = tcf_register_action(&act_ipt_ops, &ipt_net_ops);
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000434 if (ret2 < 0)
WANG Congddf97cc2016-02-22 15:57:53 -0800435 pr_err("Failed to load ipt action\n");
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000436
WANG Cong369ba562013-12-15 20:15:08 -0800437 if (ret1 < 0 && ret2 < 0) {
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000438 return ret1;
WANG Cong369ba562013-12-15 20:15:08 -0800439 } else
Jamal Hadi Salim0dcffd02013-04-28 05:06:38 +0000440 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
David S. Millere9ce1cd2006-08-21 23:54:55 -0700443static void __exit ipt_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
WANG Congddf97cc2016-02-22 15:57:53 -0800445 tcf_unregister_action(&act_ipt_ops, &ipt_net_ops);
446 tcf_unregister_action(&act_xt_ops, &xt_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449module_init(ipt_init_module);
450module_exit(ipt_cleanup_module);