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