act_ipt.c 7.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * net/sched/ipt.c	iptables target interface
 *
 *TODO: Add other tables. For now we only support the ipv4 table targets
 *
 *		This program is free software; you can redistribute it and/or
 *		modify it under the terms of the GNU General Public License
 *		as published by the Free Software Foundation; either version
 *		2 of the License, or (at your option) any later version.
 *
 * Copyright:	Jamal Hadi Salim (2002-4)
 */

#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/skbuff.h>
#include <linux/rtnetlink.h>
#include <linux/module.h>
#include <linux/init.h>
22
#include <linux/slab.h>
23
#include <net/netlink.h>
L
Linus Torvalds 已提交
24 25 26 27 28 29 30
#include <net/pkt_sched.h>
#include <linux/tc_act/tc_ipt.h>
#include <net/tc_act/tc_ipt.h>

#include <linux/netfilter_ipv4/ip_tables.h>


31 32 33
#define IPT_TAB_MASK     15
static struct tcf_common *tcf_ipt_ht[IPT_TAB_MASK + 1];
static u32 ipt_idx_gen;
L
Linus Torvalds 已提交
34 35
static DEFINE_RWLOCK(ipt_lock);

36 37 38 39 40
static struct tcf_hashinfo ipt_hash_info = {
	.htab	=	tcf_ipt_ht,
	.hmask	=	IPT_TAB_MASK,
	.lock	=	&ipt_lock,
};
L
Linus Torvalds 已提交
41

42
static int ipt_init_target(struct xt_entry_target *t, char *table, unsigned int hook)
L
Linus Torvalds 已提交
43
{
44
	struct xt_tgchk_param par;
45
	struct xt_target *target;
L
Linus Torvalds 已提交
46 47
	int ret = 0;

48 49
	target = xt_request_find_target(AF_INET, t->u.user.name,
					t->u.user.revision);
50 51
	if (IS_ERR(target))
		return PTR_ERR(target);
L
Linus Torvalds 已提交
52 53

	t->u.kernel.target = target;
54 55 56 57 58
	par.table     = table;
	par.entryinfo = NULL;
	par.target    = target;
	par.targinfo  = t->data;
	par.hook_mask = hook;
59
	par.family    = NFPROTO_IPV4;
L
Linus Torvalds 已提交
60

61
	ret = xt_check_target(&par, t->u.target_size - sizeof(*t), 0, false);
62
	if (ret < 0) {
63
		module_put(t->u.kernel.target->me);
64
		return ret;
65
	}
66
	return 0;
L
Linus Torvalds 已提交
67 68
}

69
static void ipt_destroy_target(struct xt_entry_target *t)
L
Linus Torvalds 已提交
70
{
71 72 73 74 75 76 77
	struct xt_tgdtor_param par = {
		.target   = t->u.kernel.target,
		.targinfo = t->data,
	};
	if (par.target->destroy != NULL)
		par.target->destroy(&par);
	module_put(par.target->me);
L
Linus Torvalds 已提交
78 79
}

80
static int tcf_ipt_release(struct tcf_ipt *ipt, int bind)
L
Linus Torvalds 已提交
81 82
{
	int ret = 0;
83
	if (ipt) {
L
Linus Torvalds 已提交
84
		if (bind)
85 86 87 88 89 90 91
			ipt->tcf_bindcnt--;
		ipt->tcf_refcnt--;
		if (ipt->tcf_bindcnt <= 0 && ipt->tcf_refcnt <= 0) {
			ipt_destroy_target(ipt->tcfi_t);
			kfree(ipt->tcfi_tname);
			kfree(ipt->tcfi_t);
			tcf_hash_destroy(&ipt->common, &ipt_hash_info);
L
Linus Torvalds 已提交
92 93 94 95 96 97
			ret = ACT_P_DELETED;
		}
	}
	return ret;
}

98 99 100 101
static const struct nla_policy ipt_policy[TCA_IPT_MAX + 1] = {
	[TCA_IPT_TABLE]	= { .type = NLA_STRING, .len = IFNAMSIZ },
	[TCA_IPT_HOOK]	= { .type = NLA_U32 },
	[TCA_IPT_INDEX]	= { .type = NLA_U32 },
102
	[TCA_IPT_TARG]	= { .len = sizeof(struct xt_entry_target) },
103 104
};

105
static int tcf_ipt_init(struct nlattr *nla, struct nlattr *est,
106
			struct tc_action *a, int ovr, int bind)
L
Linus Torvalds 已提交
107
{
108
	struct nlattr *tb[TCA_IPT_MAX + 1];
109 110
	struct tcf_ipt *ipt;
	struct tcf_common *pc;
111
	struct xt_entry_target *td, *t;
L
Linus Torvalds 已提交
112 113 114 115 116
	char *tname;
	int ret = 0, err;
	u32 hook = 0;
	u32 index = 0;

117
	if (nla == NULL)
L
Linus Torvalds 已提交
118 119
		return -EINVAL;

120
	err = nla_parse_nested(tb, TCA_IPT_MAX, nla, ipt_policy);
121 122 123
	if (err < 0)
		return err;

124
	if (tb[TCA_IPT_HOOK] == NULL)
L
Linus Torvalds 已提交
125
		return -EINVAL;
126
	if (tb[TCA_IPT_TARG] == NULL)
L
Linus Torvalds 已提交
127
		return -EINVAL;
128

129
	td = (struct xt_entry_target *)nla_data(tb[TCA_IPT_TARG]);
130
	if (nla_len(tb[TCA_IPT_TARG]) < td->u.target_size)
L
Linus Torvalds 已提交
131 132
		return -EINVAL;

133
	if (tb[TCA_IPT_INDEX] != NULL)
134
		index = nla_get_u32(tb[TCA_IPT_INDEX]);
L
Linus Torvalds 已提交
135

136 137 138 139
	pc = tcf_hash_check(index, a, bind, &ipt_hash_info);
	if (!pc) {
		pc = tcf_hash_create(index, est, a, sizeof(*ipt), bind,
				     &ipt_idx_gen, &ipt_hash_info);
140 141
		if (IS_ERR(pc))
		    return PTR_ERR(pc);
L
Linus Torvalds 已提交
142 143 144
		ret = ACT_P_CREATED;
	} else {
		if (!ovr) {
145
			tcf_ipt_release(to_ipt(pc), bind);
L
Linus Torvalds 已提交
146 147 148
			return -EEXIST;
		}
	}
149
	ipt = to_ipt(pc);
L
Linus Torvalds 已提交
150

151
	hook = nla_get_u32(tb[TCA_IPT_HOOK]);
L
Linus Torvalds 已提交
152 153 154

	err = -ENOMEM;
	tname = kmalloc(IFNAMSIZ, GFP_KERNEL);
155
	if (unlikely(!tname))
L
Linus Torvalds 已提交
156
		goto err1;
157 158
	if (tb[TCA_IPT_TABLE] == NULL ||
	    nla_strlcpy(tname, tb[TCA_IPT_TABLE], IFNAMSIZ) >= IFNAMSIZ)
L
Linus Torvalds 已提交
159 160
		strcpy(tname, "mangle");

161
	t = kmemdup(td, td->u.target_size, GFP_KERNEL);
162
	if (unlikely(!t))
L
Linus Torvalds 已提交
163 164 165 166 167
		goto err2;

	if ((err = ipt_init_target(t, tname, hook)) < 0)
		goto err3;

168
	spin_lock_bh(&ipt->tcf_lock);
L
Linus Torvalds 已提交
169
	if (ret != ACT_P_CREATED) {
170 171 172
		ipt_destroy_target(ipt->tcfi_t);
		kfree(ipt->tcfi_tname);
		kfree(ipt->tcfi_t);
L
Linus Torvalds 已提交
173
	}
174 175 176 177
	ipt->tcfi_tname = tname;
	ipt->tcfi_t     = t;
	ipt->tcfi_hook  = hook;
	spin_unlock_bh(&ipt->tcf_lock);
L
Linus Torvalds 已提交
178
	if (ret == ACT_P_CREATED)
179
		tcf_hash_insert(pc, &ipt_hash_info);
L
Linus Torvalds 已提交
180 181 182 183 184 185 186
	return ret;

err3:
	kfree(t);
err2:
	kfree(tname);
err1:
187
	kfree(pc);
L
Linus Torvalds 已提交
188 189 190
	return err;
}

191
static int tcf_ipt_cleanup(struct tc_action *a, int bind)
L
Linus Torvalds 已提交
192
{
193 194
	struct tcf_ipt *ipt = a->priv;
	return tcf_ipt_release(ipt, bind);
L
Linus Torvalds 已提交
195 196
}

197 198
static int tcf_ipt(struct sk_buff *skb, struct tc_action *a,
		   struct tcf_result *res)
L
Linus Torvalds 已提交
199 200
{
	int ret = 0, result = 0;
201
	struct tcf_ipt *ipt = a->priv;
202
	struct xt_action_param par;
L
Linus Torvalds 已提交
203 204 205 206 207 208

	if (skb_cloned(skb)) {
		if (pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
			return TC_ACT_UNSPEC;
	}

209
	spin_lock(&ipt->tcf_lock);
L
Linus Torvalds 已提交
210

211
	ipt->tcf_tm.lastuse = jiffies;
212
	ipt->tcf_bstats.bytes += qdisc_pkt_len(skb);
213
	ipt->tcf_bstats.packets++;
L
Linus Torvalds 已提交
214 215 216 217

	/* yes, we have to worry about both in and out dev
	 worry later - danger - this API seems to have changed
	 from earlier kernels */
218 219 220 221 222 223 224
	par.in       = skb->dev;
	par.out      = NULL;
	par.hooknum  = ipt->tcfi_hook;
	par.target   = ipt->tcfi_t->u.kernel.target;
	par.targinfo = ipt->tcfi_t->data;
	ret = par.target->target(skb, &par);

L
Linus Torvalds 已提交
225 226 227 228 229 230
	switch (ret) {
	case NF_ACCEPT:
		result = TC_ACT_OK;
		break;
	case NF_DROP:
		result = TC_ACT_SHOT;
231
		ipt->tcf_qstats.drops++;
L
Linus Torvalds 已提交
232 233 234 235 236 237
		break;
	case IPT_CONTINUE:
		result = TC_ACT_PIPE;
		break;
	default:
		if (net_ratelimit())
238 239
			pr_notice("tc filter: Bogus netfilter code"
				  " %d assume ACCEPT\n", ret);
L
Linus Torvalds 已提交
240 241 242
		result = TC_POLICE_OK;
		break;
	}
243
	spin_unlock(&ipt->tcf_lock);
L
Linus Torvalds 已提交
244 245 246 247
	return result;

}

248
static int tcf_ipt_dump(struct sk_buff *skb, struct tc_action *a, int bind, int ref)
L
Linus Torvalds 已提交
249
{
250
	unsigned char *b = skb_tail_pointer(skb);
251
	struct tcf_ipt *ipt = a->priv;
252
	struct xt_entry_target *t;
L
Linus Torvalds 已提交
253 254 255 256 257 258 259 260
	struct tcf_t tm;
	struct tc_cnt c;

	/* for simple targets kernel size == user size
	** user name = target name
	** for foolproof you need to not assume this
	*/

261
	t = kmemdup(ipt->tcfi_t, ipt->tcfi_t->u.user.target_size, GFP_ATOMIC);
262
	if (unlikely(!t))
263
		goto nla_put_failure;
L
Linus Torvalds 已提交
264

265 266 267 268
	c.bindcnt = ipt->tcf_bindcnt - bind;
	c.refcnt = ipt->tcf_refcnt - ref;
	strcpy(t->u.user.name, ipt->tcfi_t->u.kernel.target->name);

269
	NLA_PUT(skb, TCA_IPT_TARG, ipt->tcfi_t->u.user.target_size, t);
270 271
	NLA_PUT_U32(skb, TCA_IPT_INDEX, ipt->tcf_index);
	NLA_PUT_U32(skb, TCA_IPT_HOOK, ipt->tcfi_hook);
272
	NLA_PUT(skb, TCA_IPT_CNT, sizeof(struct tc_cnt), &c);
273
	NLA_PUT_STRING(skb, TCA_IPT_TABLE, ipt->tcfi_tname);
274 275 276
	tm.install = jiffies_to_clock_t(jiffies - ipt->tcf_tm.install);
	tm.lastuse = jiffies_to_clock_t(jiffies - ipt->tcf_tm.lastuse);
	tm.expires = jiffies_to_clock_t(ipt->tcf_tm.expires);
277
	NLA_PUT(skb, TCA_IPT_TM, sizeof (tm), &tm);
L
Linus Torvalds 已提交
278 279 280
	kfree(t);
	return skb->len;

281
nla_put_failure:
282
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
283 284 285 286 287 288
	kfree(t);
	return -1;
}

static struct tc_action_ops act_ipt_ops = {
	.kind		=	"ipt",
289
	.hinfo		=	&ipt_hash_info,
L
Linus Torvalds 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
	.type		=	TCA_ACT_IPT,
	.capab		=	TCA_CAP_NONE,
	.owner		=	THIS_MODULE,
	.act		=	tcf_ipt,
	.dump		=	tcf_ipt_dump,
	.cleanup	=	tcf_ipt_cleanup,
	.lookup		=	tcf_hash_search,
	.init		=	tcf_ipt_init,
	.walk		=	tcf_generic_walker
};

MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
MODULE_DESCRIPTION("Iptables target actions");
MODULE_LICENSE("GPL");

305
static int __init ipt_init_module(void)
L
Linus Torvalds 已提交
306 307 308 309
{
	return tcf_register_action(&act_ipt_ops);
}

310
static void __exit ipt_cleanup_module(void)
L
Linus Torvalds 已提交
311 312 313 314 315 316
{
	tcf_unregister_action(&act_ipt_ops);
}

module_init(ipt_init_module);
module_exit(ipt_cleanup_module);