usb: gadget: f_mtp: Avoid race between mtp_read and mtp_function_disable
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / net / sched / act_ipt.c
CommitLineData
1da177e4 1/*
0c6965dd 2 * net/sched/act_ipt.c iptables target interface
1da177e4
LT
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 *
0dcffd09 11 * Copyright: Jamal Hadi Salim (2002-13)
1da177e4
LT
12 */
13
1da177e4
LT
14#include <linux/types.h>
15#include <linux/kernel.h>
1da177e4 16#include <linux/string.h>
1da177e4 17#include <linux/errno.h>
1da177e4
LT
18#include <linux/skbuff.h>
19#include <linux/rtnetlink.h>
20#include <linux/module.h>
21#include <linux/init.h>
5a0e3ad6 22#include <linux/slab.h>
dc5fc579 23#include <net/netlink.h>
1da177e4
LT
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
1da177e4 30
e9ce1cd3 31#define IPT_TAB_MASK 15
1da177e4 32
87a2e70d 33static int ipt_init_target(struct xt_entry_target *t, char *table, unsigned int hook)
1da177e4 34{
af5d6dc2 35 struct xt_tgchk_param par;
e60a13e0 36 struct xt_target *target;
248af6aa 37 struct ipt_entry e = {};
1da177e4
LT
38 int ret = 0;
39
239a87c8
PM
40 target = xt_request_find_target(AF_INET, t->u.user.name,
41 t->u.user.revision);
d2a7b6ba
JE
42 if (IS_ERR(target))
43 return PTR_ERR(target);
1da177e4 44
1da177e4 45 t->u.kernel.target = target;
40fc2b44 46 memset(&par, 0, sizeof(par));
af5d6dc2 47 par.table = table;
248af6aa 48 par.entryinfo = &e;
af5d6dc2
JE
49 par.target = target;
50 par.targinfo = t->data;
51 par.hook_mask = hook;
916a917d 52 par.family = NFPROTO_IPV4;
1da177e4 53
916a917d 54 ret = xt_check_target(&par, t->u.target_size - sizeof(*t), 0, false);
367c6790 55 if (ret < 0) {
239a87c8 56 module_put(t->u.kernel.target->me);
18118cdb 57 return ret;
239a87c8 58 }
367c6790 59 return 0;
1da177e4
LT
60}
61
87a2e70d 62static void ipt_destroy_target(struct xt_entry_target *t)
1da177e4 63{
a2df1648
JE
64 struct xt_tgdtor_param par = {
65 .target = t->u.kernel.target,
66 .targinfo = t->data,
67 };
68 if (par.target->destroy != NULL)
69 par.target->destroy(&par);
70 module_put(par.target->me);
1da177e4
LT
71}
72
a5b5c958 73static void tcf_ipt_release(struct tc_action *a, int bind)
1da177e4 74{
86062033 75 struct tcf_ipt *ipt = to_ipt(a);
a5b5c958
WC
76 ipt_destroy_target(ipt->tcfi_t);
77 kfree(ipt->tcfi_tname);
78 kfree(ipt->tcfi_t);
1da177e4
LT
79}
80
53b2bf3f
PM
81static const struct nla_policy ipt_policy[TCA_IPT_MAX + 1] = {
82 [TCA_IPT_TABLE] = { .type = NLA_STRING, .len = IFNAMSIZ },
83 [TCA_IPT_HOOK] = { .type = NLA_U32 },
84 [TCA_IPT_INDEX] = { .type = NLA_U32 },
87a2e70d 85 [TCA_IPT_TARG] = { .len = sizeof(struct xt_entry_target) },
53b2bf3f
PM
86};
87
c1b52739 88static int tcf_ipt_init(struct net *net, struct nlattr *nla, struct nlattr *est,
e9ce1cd3 89 struct tc_action *a, int ovr, int bind)
1da177e4 90{
7ba699c6 91 struct nlattr *tb[TCA_IPT_MAX + 1];
e9ce1cd3 92 struct tcf_ipt *ipt;
87a2e70d 93 struct xt_entry_target *td, *t;
1da177e4
LT
94 char *tname;
95 int ret = 0, err;
96 u32 hook = 0;
97 u32 index = 0;
98
cee63723 99 if (nla == NULL)
1da177e4
LT
100 return -EINVAL;
101
53b2bf3f 102 err = nla_parse_nested(tb, TCA_IPT_MAX, nla, ipt_policy);
cee63723
PM
103 if (err < 0)
104 return err;
105
53b2bf3f 106 if (tb[TCA_IPT_HOOK] == NULL)
1da177e4 107 return -EINVAL;
53b2bf3f 108 if (tb[TCA_IPT_TARG] == NULL)
1da177e4 109 return -EINVAL;
53b2bf3f 110
87a2e70d 111 td = (struct xt_entry_target *)nla_data(tb[TCA_IPT_TARG]);
7ba699c6 112 if (nla_len(tb[TCA_IPT_TARG]) < td->u.target_size)
1da177e4
LT
113 return -EINVAL;
114
53b2bf3f 115 if (tb[TCA_IPT_INDEX] != NULL)
1587bac4 116 index = nla_get_u32(tb[TCA_IPT_INDEX]);
1da177e4 117
86062033 118 if (!tcf_hash_check(index, a, bind) ) {
519c818e 119 ret = tcf_hash_create(index, est, a, sizeof(*ipt), bind, false);
86062033
WC
120 if (ret)
121 return ret;
1da177e4
LT
122 ret = ACT_P_CREATED;
123 } else {
1a29321e
JHS
124 if (bind)/* dont override defaults */
125 return 0;
a5b5c958 126 tcf_hash_release(a, bind);
1a29321e
JHS
127
128 if (!ovr)
1da177e4 129 return -EEXIST;
1da177e4 130 }
86062033 131 ipt = to_ipt(a);
1da177e4 132
1587bac4 133 hook = nla_get_u32(tb[TCA_IPT_HOOK]);
1da177e4
LT
134
135 err = -ENOMEM;
136 tname = kmalloc(IFNAMSIZ, GFP_KERNEL);
e9ce1cd3 137 if (unlikely(!tname))
1da177e4 138 goto err1;
7ba699c6
PM
139 if (tb[TCA_IPT_TABLE] == NULL ||
140 nla_strlcpy(tname, tb[TCA_IPT_TABLE], IFNAMSIZ) >= IFNAMSIZ)
1da177e4
LT
141 strcpy(tname, "mangle");
142
c7b1b249 143 t = kmemdup(td, td->u.target_size, GFP_KERNEL);
e9ce1cd3 144 if (unlikely(!t))
1da177e4 145 goto err2;
1da177e4 146
cc7ec456
ED
147 err = ipt_init_target(t, tname, hook);
148 if (err < 0)
1da177e4
LT
149 goto err3;
150
e9ce1cd3 151 spin_lock_bh(&ipt->tcf_lock);
1da177e4 152 if (ret != ACT_P_CREATED) {
e9ce1cd3
DM
153 ipt_destroy_target(ipt->tcfi_t);
154 kfree(ipt->tcfi_tname);
155 kfree(ipt->tcfi_t);
1da177e4 156 }
e9ce1cd3
DM
157 ipt->tcfi_tname = tname;
158 ipt->tcfi_t = t;
159 ipt->tcfi_hook = hook;
160 spin_unlock_bh(&ipt->tcf_lock);
1da177e4 161 if (ret == ACT_P_CREATED)
86062033 162 tcf_hash_insert(a);
1da177e4
LT
163 return ret;
164
165err3:
166 kfree(t);
167err2:
168 kfree(tname);
169err1:
86062033
WC
170 if (ret == ACT_P_CREATED)
171 tcf_hash_cleanup(a, est);
1da177e4
LT
172 return err;
173}
174
dc7f9f6e 175static int tcf_ipt(struct sk_buff *skb, const struct tc_action *a,
e9ce1cd3 176 struct tcf_result *res)
1da177e4
LT
177{
178 int ret = 0, result = 0;
e9ce1cd3 179 struct tcf_ipt *ipt = a->priv;
4b560b44 180 struct xt_action_param par;
1da177e4 181
14bbd6a5
PS
182 if (skb_unclone(skb, GFP_ATOMIC))
183 return TC_ACT_UNSPEC;
1da177e4 184
e9ce1cd3 185 spin_lock(&ipt->tcf_lock);
1da177e4 186
e9ce1cd3 187 ipt->tcf_tm.lastuse = jiffies;
bfe0d029 188 bstats_update(&ipt->tcf_bstats, skb);
1da177e4
LT
189
190 /* yes, we have to worry about both in and out dev
cc7ec456
ED
191 * worry later - danger - this API seems to have changed
192 * from earlier kernels
193 */
156c196f 194 par.net = dev_net(skb->dev);
7eb35586
JE
195 par.in = skb->dev;
196 par.out = NULL;
197 par.hooknum = ipt->tcfi_hook;
198 par.target = ipt->tcfi_t->u.kernel.target;
199 par.targinfo = ipt->tcfi_t->data;
200 ret = par.target->target(skb, &par);
201
1da177e4
LT
202 switch (ret) {
203 case NF_ACCEPT:
204 result = TC_ACT_OK;
205 break;
206 case NF_DROP:
207 result = TC_ACT_SHOT;
e9ce1cd3 208 ipt->tcf_qstats.drops++;
1da177e4 209 break;
243bf6e2 210 case XT_CONTINUE:
1da177e4
LT
211 result = TC_ACT_PIPE;
212 break;
213 default:
e87cc472
JP
214 net_notice_ratelimited("tc filter: Bogus netfilter code %d assume ACCEPT\n",
215 ret);
1da177e4
LT
216 result = TC_POLICE_OK;
217 break;
218 }
e9ce1cd3 219 spin_unlock(&ipt->tcf_lock);
1da177e4
LT
220 return result;
221
222}
223
e9ce1cd3 224static int tcf_ipt_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
1da177e4 225{
27a884dc 226 unsigned char *b = skb_tail_pointer(skb);
e9ce1cd3 227 struct tcf_ipt *ipt = a->priv;
87a2e70d 228 struct xt_entry_target *t;
1da177e4
LT
229 struct tcf_t tm;
230 struct tc_cnt c;
1da177e4
LT
231
232 /* for simple targets kernel size == user size
cc7ec456
ED
233 * user name = target name
234 * for foolproof you need to not assume this
235 */
1da177e4 236
c7b1b249 237 t = kmemdup(ipt->tcfi_t, ipt->tcfi_t->u.user.target_size, GFP_ATOMIC);
e9ce1cd3 238 if (unlikely(!t))
7ba699c6 239 goto nla_put_failure;
1da177e4 240
e9ce1cd3
DM
241 c.bindcnt = ipt->tcf_bindcnt - bind;
242 c.refcnt = ipt->tcf_refcnt - ref;
e9ce1cd3
DM
243 strcpy(t->u.user.name, ipt->tcfi_t->u.kernel.target->name);
244
1b34ec43
DM
245 if (nla_put(skb, TCA_IPT_TARG, ipt->tcfi_t->u.user.target_size, t) ||
246 nla_put_u32(skb, TCA_IPT_INDEX, ipt->tcf_index) ||
247 nla_put_u32(skb, TCA_IPT_HOOK, ipt->tcfi_hook) ||
248 nla_put(skb, TCA_IPT_CNT, sizeof(struct tc_cnt), &c) ||
249 nla_put_string(skb, TCA_IPT_TABLE, ipt->tcfi_tname))
250 goto nla_put_failure;
e9ce1cd3
DM
251 tm.install = jiffies_to_clock_t(jiffies - ipt->tcf_tm.install);
252 tm.lastuse = jiffies_to_clock_t(jiffies - ipt->tcf_tm.lastuse);
253 tm.expires = jiffies_to_clock_t(ipt->tcf_tm.expires);
1b34ec43
DM
254 if (nla_put(skb, TCA_IPT_TM, sizeof (tm), &tm))
255 goto nla_put_failure;
1da177e4
LT
256 kfree(t);
257 return skb->len;
258
7ba699c6 259nla_put_failure:
dc5fc579 260 nlmsg_trim(skb, b);
1da177e4
LT
261 kfree(t);
262 return -1;
263}
264
265static struct tc_action_ops act_ipt_ops = {
266 .kind = "ipt",
267 .type = TCA_ACT_IPT,
1da177e4
LT
268 .owner = THIS_MODULE,
269 .act = tcf_ipt,
270 .dump = tcf_ipt_dump,
86062033 271 .cleanup = tcf_ipt_release,
1da177e4 272 .init = tcf_ipt_init,
1da177e4
LT
273};
274
0dcffd09
JHS
275static struct tc_action_ops act_xt_ops = {
276 .kind = "xt",
6c80563c 277 .type = TCA_ACT_XT,
0dcffd09
JHS
278 .owner = THIS_MODULE,
279 .act = tcf_ipt,
280 .dump = tcf_ipt_dump,
86062033 281 .cleanup = tcf_ipt_release,
0dcffd09 282 .init = tcf_ipt_init,
0dcffd09
JHS
283};
284
285MODULE_AUTHOR("Jamal Hadi Salim(2002-13)");
1da177e4
LT
286MODULE_DESCRIPTION("Iptables target actions");
287MODULE_LICENSE("GPL");
0dcffd09 288MODULE_ALIAS("act_xt");
1da177e4 289
e9ce1cd3 290static int __init ipt_init_module(void)
1da177e4 291{
4f1e9d89 292 int ret1, ret2;
369ba567 293
4f1e9d89 294 ret1 = tcf_register_action(&act_xt_ops, IPT_TAB_MASK);
0dcffd09
JHS
295 if (ret1 < 0)
296 printk("Failed to load xt action\n");
4f1e9d89 297 ret2 = tcf_register_action(&act_ipt_ops, IPT_TAB_MASK);
0dcffd09
JHS
298 if (ret2 < 0)
299 printk("Failed to load ipt action\n");
300
369ba567 301 if (ret1 < 0 && ret2 < 0) {
0dcffd09 302 return ret1;
369ba567 303 } else
0dcffd09 304 return 0;
1da177e4
LT
305}
306
e9ce1cd3 307static void __exit ipt_cleanup_module(void)
1da177e4 308{
0dcffd09 309 tcf_unregister_action(&act_xt_ops);
1da177e4
LT
310 tcf_unregister_action(&act_ipt_ops);
311}
312
313module_init(ipt_init_module);
314module_exit(ipt_cleanup_module);