Linux Audio

Check our new training course

Loading...
v4.10.11
 
  1/*
  2 * net/sched/act_skbmod.c  skb data modifier
  3 *
  4 * Copyright (c) 2016 Jamal Hadi Salim <jhs@mojatatu.com>
  5 *
  6 * This program is free software; you can redistribute it and/or modify
  7 * it under the terms of the GNU General Public License as published by
  8 * the Free Software Foundation; either version 2 of the License, or
  9 * (at your option) any later version.
 10*/
 11
 12#include <linux/module.h>
 
 13#include <linux/init.h>
 14#include <linux/kernel.h>
 15#include <linux/skbuff.h>
 16#include <linux/rtnetlink.h>
 
 17#include <net/netlink.h>
 18#include <net/pkt_sched.h>
 
 
 19
 20#include <linux/tc_act/tc_skbmod.h>
 21#include <net/tc_act/tc_skbmod.h>
 22
 23#define SKBMOD_TAB_MASK     15
 24
 25static unsigned int skbmod_net_id;
 26static struct tc_action_ops act_skbmod_ops;
 27
 28#define MAX_EDIT_LEN ETH_HLEN
 29static int tcf_skbmod_run(struct sk_buff *skb, const struct tc_action *a,
 30			  struct tcf_result *res)
 31{
 32	struct tcf_skbmod *d = to_skbmod(a);
 33	int action;
 34	struct tcf_skbmod_params *p;
 35	u64 flags;
 36	int err;
 37
 38	tcf_lastuse_update(&d->tcf_tm);
 39	bstats_cpu_update(this_cpu_ptr(d->common.cpu_bstats), skb);
 40
 41	/* XXX: if you are going to edit more fields beyond ethernet header
 42	 * (example when you add IP header replacement or vlan swap)
 43	 * then MAX_EDIT_LEN needs to change appropriately
 44	*/
 45	err = skb_ensure_writable(skb, MAX_EDIT_LEN);
 46	if (unlikely(err)) { /* best policy is to drop on the floor */
 47		qstats_overlimit_inc(this_cpu_ptr(d->common.cpu_qstats));
 48		return TC_ACT_SHOT;
 49	}
 50
 51	rcu_read_lock();
 52	action = READ_ONCE(d->tcf_action);
 53	if (unlikely(action == TC_ACT_SHOT)) {
 54		qstats_overlimit_inc(this_cpu_ptr(d->common.cpu_qstats));
 55		rcu_read_unlock();
 56		return action;
 57	}
 58
 59	p = rcu_dereference(d->skbmod_p);
 
 60	flags = p->flags;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 61	if (flags & SKBMOD_F_DMAC)
 62		ether_addr_copy(eth_hdr(skb)->h_dest, p->eth_dst);
 63	if (flags & SKBMOD_F_SMAC)
 64		ether_addr_copy(eth_hdr(skb)->h_source, p->eth_src);
 65	if (flags & SKBMOD_F_ETYPE)
 66		eth_hdr(skb)->h_proto = p->eth_type;
 67	rcu_read_unlock();
 68
 69	if (flags & SKBMOD_F_SWAPMAC) {
 70		u16 tmpaddr[ETH_ALEN / 2]; /* ether_addr_copy() requirement */
 71		/*XXX: I am sure we can come up with more efficient swapping*/
 72		ether_addr_copy((u8 *)tmpaddr, eth_hdr(skb)->h_dest);
 73		ether_addr_copy(eth_hdr(skb)->h_dest, eth_hdr(skb)->h_source);
 74		ether_addr_copy(eth_hdr(skb)->h_source, (u8 *)tmpaddr);
 75	}
 76
 
 
 
 
 77	return action;
 
 
 
 
 78}
 79
 80static const struct nla_policy skbmod_policy[TCA_SKBMOD_MAX + 1] = {
 81	[TCA_SKBMOD_PARMS]		= { .len = sizeof(struct tc_skbmod) },
 82	[TCA_SKBMOD_DMAC]		= { .len = ETH_ALEN },
 83	[TCA_SKBMOD_SMAC]		= { .len = ETH_ALEN },
 84	[TCA_SKBMOD_ETYPE]		= { .type = NLA_U16 },
 85};
 86
 87static int tcf_skbmod_init(struct net *net, struct nlattr *nla,
 88			   struct nlattr *est, struct tc_action **a,
 89			   int ovr, int bind)
 
 90{
 91	struct tc_action_net *tn = net_generic(net, skbmod_net_id);
 
 
 92	struct nlattr *tb[TCA_SKBMOD_MAX + 1];
 93	struct tcf_skbmod_params *p, *p_old;
 
 94	struct tc_skbmod *parm;
 
 95	struct tcf_skbmod *d;
 96	bool exists = false;
 97	u8 *daddr = NULL;
 98	u8 *saddr = NULL;
 99	u16 eth_type = 0;
100	u32 lflags = 0;
101	int ret = 0, err;
102
103	if (!nla)
104		return -EINVAL;
105
106	err = nla_parse_nested(tb, TCA_SKBMOD_MAX, nla, skbmod_policy);
 
107	if (err < 0)
108		return err;
109
110	if (!tb[TCA_SKBMOD_PARMS])
111		return -EINVAL;
112
113	if (tb[TCA_SKBMOD_DMAC]) {
114		daddr = nla_data(tb[TCA_SKBMOD_DMAC]);
115		lflags |= SKBMOD_F_DMAC;
116	}
117
118	if (tb[TCA_SKBMOD_SMAC]) {
119		saddr = nla_data(tb[TCA_SKBMOD_SMAC]);
120		lflags |= SKBMOD_F_SMAC;
121	}
122
123	if (tb[TCA_SKBMOD_ETYPE]) {
124		eth_type = nla_get_u16(tb[TCA_SKBMOD_ETYPE]);
125		lflags |= SKBMOD_F_ETYPE;
126	}
127
128	parm = nla_data(tb[TCA_SKBMOD_PARMS]);
 
129	if (parm->flags & SKBMOD_F_SWAPMAC)
130		lflags = SKBMOD_F_SWAPMAC;
 
 
131
132	exists = tcf_hash_check(tn, parm->index, a, bind);
 
 
 
133	if (exists && bind)
134		return 0;
135
136	if (!lflags)
 
 
 
 
137		return -EINVAL;
 
138
139	if (!exists) {
140		ret = tcf_hash_create(tn, parm->index, est, a,
141				      &act_skbmod_ops, bind, true);
142		if (ret)
 
143			return ret;
 
144
145		ret = ACT_P_CREATED;
146	} else {
147		tcf_hash_release(*a, bind);
148		if (!ovr)
149			return -EEXIST;
150	}
 
 
 
151
152	d = to_skbmod(*a);
153
154	ASSERT_RTNL();
155	p = kzalloc(sizeof(struct tcf_skbmod_params), GFP_KERNEL);
156	if (unlikely(!p)) {
157		if (ovr)
158			tcf_hash_release(*a, bind);
159		return -ENOMEM;
160	}
161
162	p->flags = lflags;
163	d->tcf_action = parm->action;
164
165	p_old = rtnl_dereference(d->skbmod_p);
166
167	if (ovr)
168		spin_lock_bh(&d->tcf_lock);
 
 
 
169
170	if (lflags & SKBMOD_F_DMAC)
171		ether_addr_copy(p->eth_dst, daddr);
172	if (lflags & SKBMOD_F_SMAC)
173		ether_addr_copy(p->eth_src, saddr);
174	if (lflags & SKBMOD_F_ETYPE)
175		p->eth_type = htons(eth_type);
176
177	rcu_assign_pointer(d->skbmod_p, p);
178	if (ovr)
179		spin_unlock_bh(&d->tcf_lock);
180
181	if (p_old)
182		kfree_rcu(p_old, rcu);
 
 
183
184	if (ret == ACT_P_CREATED)
185		tcf_hash_insert(tn, *a);
186	return ret;
 
 
 
 
 
 
187}
188
189static void tcf_skbmod_cleanup(struct tc_action *a, int bind)
190{
191	struct tcf_skbmod *d = to_skbmod(a);
192	struct tcf_skbmod_params  *p;
193
194	p = rcu_dereference_protected(d->skbmod_p, 1);
195	kfree_rcu(p, rcu);
 
196}
197
198static int tcf_skbmod_dump(struct sk_buff *skb, struct tc_action *a,
199			   int bind, int ref)
200{
201	struct tcf_skbmod *d = to_skbmod(a);
202	unsigned char *b = skb_tail_pointer(skb);
203	struct tcf_skbmod_params  *p = rtnl_dereference(d->skbmod_p);
204	struct tc_skbmod opt = {
205		.index   = d->tcf_index,
206		.refcnt  = d->tcf_refcnt - ref,
207		.bindcnt = d->tcf_bindcnt - bind,
208		.action  = d->tcf_action,
209	};
210	struct tcf_t t;
211
 
 
 
 
 
 
 
 
212	opt.flags  = p->flags;
213	if (nla_put(skb, TCA_SKBMOD_PARMS, sizeof(opt), &opt))
214		goto nla_put_failure;
215	if ((p->flags & SKBMOD_F_DMAC) &&
216	    nla_put(skb, TCA_SKBMOD_DMAC, ETH_ALEN, p->eth_dst))
217		goto nla_put_failure;
218	if ((p->flags & SKBMOD_F_SMAC) &&
219	    nla_put(skb, TCA_SKBMOD_SMAC, ETH_ALEN, p->eth_src))
220		goto nla_put_failure;
221	if ((p->flags & SKBMOD_F_ETYPE) &&
222	    nla_put_u16(skb, TCA_SKBMOD_ETYPE, ntohs(p->eth_type)))
223		goto nla_put_failure;
224
225	tcf_tm_dump(&t, &d->tcf_tm);
226	if (nla_put_64bit(skb, TCA_SKBMOD_TM, sizeof(t), &t, TCA_SKBMOD_PAD))
227		goto nla_put_failure;
228
 
229	return skb->len;
230nla_put_failure:
 
231	nlmsg_trim(skb, b);
232	return -1;
233}
234
235static int tcf_skbmod_walker(struct net *net, struct sk_buff *skb,
236			     struct netlink_callback *cb, int type,
237			     const struct tc_action_ops *ops)
238{
239	struct tc_action_net *tn = net_generic(net, skbmod_net_id);
240
241	return tcf_generic_walker(tn, skb, cb, type, ops);
242}
243
244static int tcf_skbmod_search(struct net *net, struct tc_action **a, u32 index)
245{
246	struct tc_action_net *tn = net_generic(net, skbmod_net_id);
247
248	return tcf_hash_search(tn, a, index);
249}
250
251static struct tc_action_ops act_skbmod_ops = {
252	.kind		=	"skbmod",
253	.type		=	TCA_ACT_SKBMOD,
254	.owner		=	THIS_MODULE,
255	.act		=	tcf_skbmod_run,
256	.dump		=	tcf_skbmod_dump,
257	.init		=	tcf_skbmod_init,
258	.cleanup	=	tcf_skbmod_cleanup,
259	.walk		=	tcf_skbmod_walker,
260	.lookup		=	tcf_skbmod_search,
261	.size		=	sizeof(struct tcf_skbmod),
262};
 
263
264static __net_init int skbmod_init_net(struct net *net)
265{
266	struct tc_action_net *tn = net_generic(net, skbmod_net_id);
267
268	return tc_action_net_init(tn, &act_skbmod_ops, SKBMOD_TAB_MASK);
269}
270
271static void __net_exit skbmod_exit_net(struct net *net)
272{
273	struct tc_action_net *tn = net_generic(net, skbmod_net_id);
274
275	tc_action_net_exit(tn);
276}
277
278static struct pernet_operations skbmod_net_ops = {
279	.init = skbmod_init_net,
280	.exit = skbmod_exit_net,
281	.id   = &skbmod_net_id,
282	.size = sizeof(struct tc_action_net),
283};
284
285MODULE_AUTHOR("Jamal Hadi Salim, <jhs@mojatatu.com>");
286MODULE_DESCRIPTION("SKB data mod-ing");
287MODULE_LICENSE("GPL");
288
289static int __init skbmod_init_module(void)
290{
291	return tcf_register_action(&act_skbmod_ops, &skbmod_net_ops);
292}
293
294static void __exit skbmod_cleanup_module(void)
295{
296	tcf_unregister_action(&act_skbmod_ops, &skbmod_net_ops);
297}
298
299module_init(skbmod_init_module);
300module_exit(skbmod_cleanup_module);
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * net/sched/act_skbmod.c  skb data modifier
  4 *
  5 * Copyright (c) 2016 Jamal Hadi Salim <jhs@mojatatu.com>
 
 
 
 
 
  6*/
  7
  8#include <linux/module.h>
  9#include <linux/if_arp.h>
 10#include <linux/init.h>
 11#include <linux/kernel.h>
 12#include <linux/skbuff.h>
 13#include <linux/rtnetlink.h>
 14#include <net/inet_ecn.h>
 15#include <net/netlink.h>
 16#include <net/pkt_sched.h>
 17#include <net/pkt_cls.h>
 18#include <net/tc_wrapper.h>
 19
 20#include <linux/tc_act/tc_skbmod.h>
 21#include <net/tc_act/tc_skbmod.h>
 22
 
 
 
 23static struct tc_action_ops act_skbmod_ops;
 24
 25TC_INDIRECT_SCOPE int tcf_skbmod_act(struct sk_buff *skb,
 26				     const struct tc_action *a,
 27				     struct tcf_result *res)
 28{
 29	struct tcf_skbmod *d = to_skbmod(a);
 30	int action, max_edit_len, err;
 31	struct tcf_skbmod_params *p;
 32	u64 flags;
 
 33
 34	tcf_lastuse_update(&d->tcf_tm);
 35	bstats_update(this_cpu_ptr(d->common.cpu_bstats), skb);
 
 
 
 
 
 
 
 
 
 
 36
 
 37	action = READ_ONCE(d->tcf_action);
 38	if (unlikely(action == TC_ACT_SHOT))
 39		goto drop;
 
 
 
 40
 41	max_edit_len = skb_mac_header_len(skb);
 42	p = rcu_dereference_bh(d->skbmod_p);
 43	flags = p->flags;
 44
 45	/* tcf_skbmod_init() guarantees "flags" to be one of the following:
 46	 *	1. a combination of SKBMOD_F_{DMAC,SMAC,ETYPE}
 47	 *	2. SKBMOD_F_SWAPMAC
 48	 *	3. SKBMOD_F_ECN
 49	 * SKBMOD_F_ECN only works with IP packets; all other flags only work with Ethernet
 50	 * packets.
 51	 */
 52	if (flags == SKBMOD_F_ECN) {
 53		switch (skb_protocol(skb, true)) {
 54		case cpu_to_be16(ETH_P_IP):
 55		case cpu_to_be16(ETH_P_IPV6):
 56			max_edit_len += skb_network_header_len(skb);
 57			break;
 58		default:
 59			goto out;
 60		}
 61	} else if (!skb->dev || skb->dev->type != ARPHRD_ETHER) {
 62		goto out;
 63	}
 64
 65	err = skb_ensure_writable(skb, max_edit_len);
 66	if (unlikely(err)) /* best policy is to drop on the floor */
 67		goto drop;
 68
 69	if (flags & SKBMOD_F_DMAC)
 70		ether_addr_copy(eth_hdr(skb)->h_dest, p->eth_dst);
 71	if (flags & SKBMOD_F_SMAC)
 72		ether_addr_copy(eth_hdr(skb)->h_source, p->eth_src);
 73	if (flags & SKBMOD_F_ETYPE)
 74		eth_hdr(skb)->h_proto = p->eth_type;
 
 75
 76	if (flags & SKBMOD_F_SWAPMAC) {
 77		u16 tmpaddr[ETH_ALEN / 2]; /* ether_addr_copy() requirement */
 78		/*XXX: I am sure we can come up with more efficient swapping*/
 79		ether_addr_copy((u8 *)tmpaddr, eth_hdr(skb)->h_dest);
 80		ether_addr_copy(eth_hdr(skb)->h_dest, eth_hdr(skb)->h_source);
 81		ether_addr_copy(eth_hdr(skb)->h_source, (u8 *)tmpaddr);
 82	}
 83
 84	if (flags & SKBMOD_F_ECN)
 85		INET_ECN_set_ce(skb);
 86
 87out:
 88	return action;
 89
 90drop:
 91	qstats_overlimit_inc(this_cpu_ptr(d->common.cpu_qstats));
 92	return TC_ACT_SHOT;
 93}
 94
 95static const struct nla_policy skbmod_policy[TCA_SKBMOD_MAX + 1] = {
 96	[TCA_SKBMOD_PARMS]		= { .len = sizeof(struct tc_skbmod) },
 97	[TCA_SKBMOD_DMAC]		= { .len = ETH_ALEN },
 98	[TCA_SKBMOD_SMAC]		= { .len = ETH_ALEN },
 99	[TCA_SKBMOD_ETYPE]		= { .type = NLA_U16 },
100};
101
102static int tcf_skbmod_init(struct net *net, struct nlattr *nla,
103			   struct nlattr *est, struct tc_action **a,
104			   struct tcf_proto *tp, u32 flags,
105			   struct netlink_ext_ack *extack)
106{
107	struct tc_action_net *tn = net_generic(net, act_skbmod_ops.net_id);
108	bool ovr = flags & TCA_ACT_FLAGS_REPLACE;
109	bool bind = flags & TCA_ACT_FLAGS_BIND;
110	struct nlattr *tb[TCA_SKBMOD_MAX + 1];
111	struct tcf_skbmod_params *p, *p_old;
112	struct tcf_chain *goto_ch = NULL;
113	struct tc_skbmod *parm;
114	u32 lflags = 0, index;
115	struct tcf_skbmod *d;
116	bool exists = false;
117	u8 *daddr = NULL;
118	u8 *saddr = NULL;
119	u16 eth_type = 0;
 
120	int ret = 0, err;
121
122	if (!nla)
123		return -EINVAL;
124
125	err = nla_parse_nested_deprecated(tb, TCA_SKBMOD_MAX, nla,
126					  skbmod_policy, NULL);
127	if (err < 0)
128		return err;
129
130	if (!tb[TCA_SKBMOD_PARMS])
131		return -EINVAL;
132
133	if (tb[TCA_SKBMOD_DMAC]) {
134		daddr = nla_data(tb[TCA_SKBMOD_DMAC]);
135		lflags |= SKBMOD_F_DMAC;
136	}
137
138	if (tb[TCA_SKBMOD_SMAC]) {
139		saddr = nla_data(tb[TCA_SKBMOD_SMAC]);
140		lflags |= SKBMOD_F_SMAC;
141	}
142
143	if (tb[TCA_SKBMOD_ETYPE]) {
144		eth_type = nla_get_u16(tb[TCA_SKBMOD_ETYPE]);
145		lflags |= SKBMOD_F_ETYPE;
146	}
147
148	parm = nla_data(tb[TCA_SKBMOD_PARMS]);
149	index = parm->index;
150	if (parm->flags & SKBMOD_F_SWAPMAC)
151		lflags = SKBMOD_F_SWAPMAC;
152	if (parm->flags & SKBMOD_F_ECN)
153		lflags = SKBMOD_F_ECN;
154
155	err = tcf_idr_check_alloc(tn, &index, a, bind);
156	if (err < 0)
157		return err;
158	exists = err;
159	if (exists && bind)
160		return ACT_P_BOUND;
161
162	if (!lflags) {
163		if (exists)
164			tcf_idr_release(*a, bind);
165		else
166			tcf_idr_cleanup(tn, index);
167		return -EINVAL;
168	}
169
170	if (!exists) {
171		ret = tcf_idr_create(tn, index, est, a,
172				     &act_skbmod_ops, bind, true, flags);
173		if (ret) {
174			tcf_idr_cleanup(tn, index);
175			return ret;
176		}
177
178		ret = ACT_P_CREATED;
179	} else if (!ovr) {
180		tcf_idr_release(*a, bind);
181		return -EEXIST;
 
182	}
183	err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
184	if (err < 0)
185		goto release_idr;
186
187	d = to_skbmod(*a);
188
 
189	p = kzalloc(sizeof(struct tcf_skbmod_params), GFP_KERNEL);
190	if (unlikely(!p)) {
191		err = -ENOMEM;
192		goto put_chain;
 
193	}
194
195	p->flags = lflags;
 
 
 
196
197	if (ovr)
198		spin_lock_bh(&d->tcf_lock);
199	/* Protected by tcf_lock if overwriting existing action. */
200	goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
201	p_old = rcu_dereference_protected(d->skbmod_p, 1);
202
203	if (lflags & SKBMOD_F_DMAC)
204		ether_addr_copy(p->eth_dst, daddr);
205	if (lflags & SKBMOD_F_SMAC)
206		ether_addr_copy(p->eth_src, saddr);
207	if (lflags & SKBMOD_F_ETYPE)
208		p->eth_type = htons(eth_type);
209
210	rcu_assign_pointer(d->skbmod_p, p);
211	if (ovr)
212		spin_unlock_bh(&d->tcf_lock);
213
214	if (p_old)
215		kfree_rcu(p_old, rcu);
216	if (goto_ch)
217		tcf_chain_put_by_act(goto_ch);
218
 
 
219	return ret;
220put_chain:
221	if (goto_ch)
222		tcf_chain_put_by_act(goto_ch);
223release_idr:
224	tcf_idr_release(*a, bind);
225	return err;
226}
227
228static void tcf_skbmod_cleanup(struct tc_action *a)
229{
230	struct tcf_skbmod *d = to_skbmod(a);
231	struct tcf_skbmod_params  *p;
232
233	p = rcu_dereference_protected(d->skbmod_p, 1);
234	if (p)
235		kfree_rcu(p, rcu);
236}
237
238static int tcf_skbmod_dump(struct sk_buff *skb, struct tc_action *a,
239			   int bind, int ref)
240{
241	struct tcf_skbmod *d = to_skbmod(a);
242	unsigned char *b = skb_tail_pointer(skb);
243	struct tcf_skbmod_params  *p;
244	struct tc_skbmod opt;
 
 
 
 
 
245	struct tcf_t t;
246
247	memset(&opt, 0, sizeof(opt));
248	opt.index   = d->tcf_index;
249	opt.refcnt  = refcount_read(&d->tcf_refcnt) - ref;
250	opt.bindcnt = atomic_read(&d->tcf_bindcnt) - bind;
251	spin_lock_bh(&d->tcf_lock);
252	opt.action = d->tcf_action;
253	p = rcu_dereference_protected(d->skbmod_p,
254				      lockdep_is_held(&d->tcf_lock));
255	opt.flags  = p->flags;
256	if (nla_put(skb, TCA_SKBMOD_PARMS, sizeof(opt), &opt))
257		goto nla_put_failure;
258	if ((p->flags & SKBMOD_F_DMAC) &&
259	    nla_put(skb, TCA_SKBMOD_DMAC, ETH_ALEN, p->eth_dst))
260		goto nla_put_failure;
261	if ((p->flags & SKBMOD_F_SMAC) &&
262	    nla_put(skb, TCA_SKBMOD_SMAC, ETH_ALEN, p->eth_src))
263		goto nla_put_failure;
264	if ((p->flags & SKBMOD_F_ETYPE) &&
265	    nla_put_u16(skb, TCA_SKBMOD_ETYPE, ntohs(p->eth_type)))
266		goto nla_put_failure;
267
268	tcf_tm_dump(&t, &d->tcf_tm);
269	if (nla_put_64bit(skb, TCA_SKBMOD_TM, sizeof(t), &t, TCA_SKBMOD_PAD))
270		goto nla_put_failure;
271
272	spin_unlock_bh(&d->tcf_lock);
273	return skb->len;
274nla_put_failure:
275	spin_unlock_bh(&d->tcf_lock);
276	nlmsg_trim(skb, b);
277	return -1;
278}
279
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280static struct tc_action_ops act_skbmod_ops = {
281	.kind		=	"skbmod",
282	.id		=	TCA_ACT_SKBMOD,
283	.owner		=	THIS_MODULE,
284	.act		=	tcf_skbmod_act,
285	.dump		=	tcf_skbmod_dump,
286	.init		=	tcf_skbmod_init,
287	.cleanup	=	tcf_skbmod_cleanup,
 
 
288	.size		=	sizeof(struct tcf_skbmod),
289};
290MODULE_ALIAS_NET_ACT("skbmod");
291
292static __net_init int skbmod_init_net(struct net *net)
293{
294	struct tc_action_net *tn = net_generic(net, act_skbmod_ops.net_id);
295
296	return tc_action_net_init(net, tn, &act_skbmod_ops);
297}
298
299static void __net_exit skbmod_exit_net(struct list_head *net_list)
300{
301	tc_action_net_exit(net_list, act_skbmod_ops.net_id);
 
 
302}
303
304static struct pernet_operations skbmod_net_ops = {
305	.init = skbmod_init_net,
306	.exit_batch = skbmod_exit_net,
307	.id   = &act_skbmod_ops.net_id,
308	.size = sizeof(struct tc_action_net),
309};
310
311MODULE_AUTHOR("Jamal Hadi Salim, <jhs@mojatatu.com>");
312MODULE_DESCRIPTION("SKB data mod-ing");
313MODULE_LICENSE("GPL");
314
315static int __init skbmod_init_module(void)
316{
317	return tcf_register_action(&act_skbmod_ops, &skbmod_net_ops);
318}
319
320static void __exit skbmod_cleanup_module(void)
321{
322	tcf_unregister_action(&act_skbmod_ops, &skbmod_net_ops);
323}
324
325module_init(skbmod_init_module);
326module_exit(skbmod_cleanup_module);