blob: 7dc5892671c818db55b024b10d56ec2252c2f826 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jiri Pirko0c6965d2014-11-05 20:51:51 +01002 * net/sched/act_pedit.c Generic packet editor
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Jamal Hadi Salim (2002-4)
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/types.h>
13#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/skbuff.h>
17#include <linux/rtnetlink.h>
18#include <linux/module.h>
19#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070021#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <net/pkt_sched.h>
23#include <linux/tc_act/tc_pedit.h>
24#include <net/tc_act/tc_pedit.h>
Amir Vadai71d0ed72017-02-07 09:56:07 +020025#include <uapi/linux/tc_act/tc_pedit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
David S. Millere9ce1cd2006-08-21 23:54:55 -070027#define PEDIT_TAB_MASK 15
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030029static unsigned int pedit_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070030static struct tc_action_ops act_pedit_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080031
Patrick McHardy53b2bf32008-01-23 20:36:30 -080032static const struct nla_policy pedit_policy[TCA_PEDIT_MAX + 1] = {
jamal53f7e352009-10-11 04:21:38 +000033 [TCA_PEDIT_PARMS] = { .len = sizeof(struct tc_pedit) },
Amir Vadai71d0ed72017-02-07 09:56:07 +020034 [TCA_PEDIT_KEYS_EX] = { .type = NLA_NESTED },
Patrick McHardy53b2bf32008-01-23 20:36:30 -080035};
36
Amir Vadai71d0ed72017-02-07 09:56:07 +020037static const struct nla_policy pedit_key_ex_policy[TCA_PEDIT_KEY_EX_MAX + 1] = {
38 [TCA_PEDIT_KEY_EX_HTYPE] = { .type = NLA_U16 },
Amir Vadai853a14b2017-02-07 09:56:08 +020039 [TCA_PEDIT_KEY_EX_CMD] = { .type = NLA_U16 },
Amir Vadai71d0ed72017-02-07 09:56:07 +020040};
41
42static struct tcf_pedit_key_ex *tcf_pedit_keys_ex_parse(struct nlattr *nla,
43 u8 n)
44{
45 struct tcf_pedit_key_ex *keys_ex;
46 struct tcf_pedit_key_ex *k;
47 const struct nlattr *ka;
48 int err = -EINVAL;
49 int rem;
50
51 if (!nla || !n)
52 return NULL;
53
54 keys_ex = kcalloc(n, sizeof(*k), GFP_KERNEL);
55 if (!keys_ex)
56 return ERR_PTR(-ENOMEM);
57
58 k = keys_ex;
59
60 nla_for_each_nested(ka, nla, rem) {
61 struct nlattr *tb[TCA_PEDIT_KEY_EX_MAX + 1];
62
63 if (!n) {
64 err = -EINVAL;
65 goto err_out;
66 }
67 n--;
68
69 if (nla_type(ka) != TCA_PEDIT_KEY_EX) {
70 err = -EINVAL;
71 goto err_out;
72 }
73
74 err = nla_parse_nested(tb, TCA_PEDIT_KEY_EX_MAX, ka,
Johannes Bergfceb6432017-04-12 14:34:07 +020075 pedit_key_ex_policy, NULL);
Amir Vadai71d0ed72017-02-07 09:56:07 +020076 if (err)
77 goto err_out;
78
Amir Vadai853a14b2017-02-07 09:56:08 +020079 if (!tb[TCA_PEDIT_KEY_EX_HTYPE] ||
80 !tb[TCA_PEDIT_KEY_EX_CMD]) {
Amir Vadai71d0ed72017-02-07 09:56:07 +020081 err = -EINVAL;
82 goto err_out;
83 }
84
85 k->htype = nla_get_u16(tb[TCA_PEDIT_KEY_EX_HTYPE]);
Amir Vadai853a14b2017-02-07 09:56:08 +020086 k->cmd = nla_get_u16(tb[TCA_PEDIT_KEY_EX_CMD]);
Amir Vadai71d0ed72017-02-07 09:56:07 +020087
Amir Vadai853a14b2017-02-07 09:56:08 +020088 if (k->htype > TCA_PEDIT_HDR_TYPE_MAX ||
89 k->cmd > TCA_PEDIT_CMD_MAX) {
Amir Vadai71d0ed72017-02-07 09:56:07 +020090 err = -EINVAL;
91 goto err_out;
92 }
93
94 k++;
95 }
96
Dan Carpenterc4f65b02017-06-14 13:29:31 +030097 if (n) {
98 err = -EINVAL;
Amir Vadai71d0ed72017-02-07 09:56:07 +020099 goto err_out;
Dan Carpenterc4f65b02017-06-14 13:29:31 +0300100 }
Amir Vadai71d0ed72017-02-07 09:56:07 +0200101
102 return keys_ex;
103
104err_out:
105 kfree(keys_ex);
106 return ERR_PTR(err);
107}
108
109static int tcf_pedit_key_ex_dump(struct sk_buff *skb,
110 struct tcf_pedit_key_ex *keys_ex, int n)
111{
112 struct nlattr *keys_start = nla_nest_start(skb, TCA_PEDIT_KEYS_EX);
113
114 for (; n > 0; n--) {
115 struct nlattr *key_start;
116
117 key_start = nla_nest_start(skb, TCA_PEDIT_KEY_EX);
118
Amir Vadai853a14b2017-02-07 09:56:08 +0200119 if (nla_put_u16(skb, TCA_PEDIT_KEY_EX_HTYPE, keys_ex->htype) ||
120 nla_put_u16(skb, TCA_PEDIT_KEY_EX_CMD, keys_ex->cmd)) {
Amir Vadai71d0ed72017-02-07 09:56:07 +0200121 nlmsg_trim(skb, keys_start);
122 return -EINVAL;
123 }
124
125 nla_nest_end(skb, key_start);
126
127 keys_ex++;
128 }
129
130 nla_nest_end(skb, keys_start);
131
132 return 0;
133}
134
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000135static int tcf_pedit_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700136 struct nlattr *est, struct tc_action **a,
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000137 int ovr, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
WANG Congddf97cc2016-02-22 15:57:53 -0800139 struct tc_action_net *tn = net_generic(net, pedit_net_id);
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800140 struct nlattr *tb[TCA_PEDIT_MAX + 1];
Amir Vadai71d0ed72017-02-07 09:56:07 +0200141 struct nlattr *pattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct tc_pedit *parm;
Patrick McHardycee63722008-01-23 20:33:32 -0800143 int ret = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct tcf_pedit *p;
145 struct tc_pedit_key *keys = NULL;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200146 struct tcf_pedit_key_ex *keys_ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 int ksize;
148
Patrick McHardycee63722008-01-23 20:33:32 -0800149 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return -EINVAL;
151
Johannes Bergfceb6432017-04-12 14:34:07 +0200152 err = nla_parse_nested(tb, TCA_PEDIT_MAX, nla, pedit_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -0800153 if (err < 0)
154 return err;
155
Amir Vadai71d0ed72017-02-07 09:56:07 +0200156 pattr = tb[TCA_PEDIT_PARMS];
157 if (!pattr)
158 pattr = tb[TCA_PEDIT_PARMS_EX];
159 if (!pattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -EINVAL;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200161
162 parm = nla_data(pattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 ksize = parm->nkeys * sizeof(struct tc_pedit_key);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200164 if (nla_len(pattr) < sizeof(*parm) + ksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return -EINVAL;
166
Amir Vadai71d0ed72017-02-07 09:56:07 +0200167 keys_ex = tcf_pedit_keys_ex_parse(tb[TCA_PEDIT_KEYS_EX], parm->nkeys);
168 if (IS_ERR(keys_ex))
169 return PTR_ERR(keys_ex);
170
WANG Congddf97cc2016-02-22 15:57:53 -0800171 if (!tcf_hash_check(tn, parm->index, a, bind)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (!parm->nkeys)
173 return -EINVAL;
WANG Congddf97cc2016-02-22 15:57:53 -0800174 ret = tcf_hash_create(tn, parm->index, est, a,
WANG Conga85a9702016-07-25 16:09:41 -0700175 &act_pedit_ops, bind, false);
WANG Cong86062032014-02-11 17:07:31 -0800176 if (ret)
177 return ret;
WANG Conga85a9702016-07-25 16:09:41 -0700178 p = to_pedit(*a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 keys = kmalloc(ksize, GFP_KERNEL);
180 if (keys == NULL) {
WANG Conga85a9702016-07-25 16:09:41 -0700181 tcf_hash_cleanup(*a, est);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200182 kfree(keys_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return -ENOMEM;
184 }
185 ret = ACT_P_CREATED;
186 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500187 if (bind)
188 return 0;
WANG Conga85a9702016-07-25 16:09:41 -0700189 tcf_hash_release(*a, bind);
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500190 if (!ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -EEXIST;
WANG Conga85a9702016-07-25 16:09:41 -0700192 p = to_pedit(*a);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700193 if (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 keys = kmalloc(ksize, GFP_KERNEL);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200195 if (!keys) {
196 kfree(keys_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return -ENOMEM;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200 }
201
David S. Millere9ce1cd2006-08-21 23:54:55 -0700202 spin_lock_bh(&p->tcf_lock);
203 p->tcfp_flags = parm->flags;
204 p->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (keys) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700206 kfree(p->tcfp_keys);
207 p->tcfp_keys = keys;
208 p->tcfp_nkeys = parm->nkeys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700210 memcpy(p->tcfp_keys, parm->keys, ksize);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200211
212 kfree(p->tcfp_keys_ex);
213 p->tcfp_keys_ex = keys_ex;
214
David S. Millere9ce1cd2006-08-21 23:54:55 -0700215 spin_unlock_bh(&p->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (ret == ACT_P_CREATED)
WANG Conga85a9702016-07-25 16:09:41 -0700217 tcf_hash_insert(tn, *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return ret;
219}
220
WANG Conga5b5c952014-02-11 17:07:32 -0800221static void tcf_pedit_cleanup(struct tc_action *a, int bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
WANG Conga85a9702016-07-25 16:09:41 -0700223 struct tcf_pedit *p = to_pedit(a);
WANG Conga5b5c952014-02-11 17:07:32 -0800224 struct tc_pedit_key *keys = p->tcfp_keys;
225 kfree(keys);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200226 kfree(p->tcfp_keys_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
Amir Vadai95c20272016-11-28 12:56:40 +0200229static bool offset_valid(struct sk_buff *skb, int offset)
230{
231 if (offset > 0 && offset > skb->len)
232 return false;
233
234 if (offset < 0 && -offset > skb_headroom(skb))
235 return false;
236
237 return true;
238}
239
Amir Vadai71d0ed72017-02-07 09:56:07 +0200240static int pedit_skb_hdr_offset(struct sk_buff *skb,
241 enum pedit_header_type htype, int *hoffset)
242{
243 int ret = -EINVAL;
244
245 switch (htype) {
246 case TCA_PEDIT_KEY_EX_HDR_TYPE_ETH:
247 if (skb_mac_header_was_set(skb)) {
248 *hoffset = skb_mac_offset(skb);
249 ret = 0;
250 }
251 break;
252 case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK:
253 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4:
254 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6:
255 *hoffset = skb_network_offset(skb);
256 ret = 0;
257 break;
258 case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP:
259 case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP:
260 if (skb_transport_header_was_set(skb)) {
261 *hoffset = skb_transport_offset(skb);
262 ret = 0;
263 }
264 break;
265 default:
266 ret = -EINVAL;
267 break;
268 };
269
270 return ret;
271}
272
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000273static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a,
David S. Millere9ce1cd2006-08-21 23:54:55 -0700274 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
WANG Conga85a9702016-07-25 16:09:41 -0700276 struct tcf_pedit *p = to_pedit(a);
Florian Westphal4749c3ef2015-04-30 12:12:00 +0200277 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000279 if (skb_unclone(skb, GFP_ATOMIC))
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000280 return p->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
David S. Millere9ce1cd2006-08-21 23:54:55 -0700282 spin_lock(&p->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400284 tcf_lastuse_update(&p->tcf_tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
David S. Millere9ce1cd2006-08-21 23:54:55 -0700286 if (p->tcfp_nkeys > 0) {
287 struct tc_pedit_key *tkey = p->tcfp_keys;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200288 struct tcf_pedit_key_ex *tkey_ex = p->tcfp_keys_ex;
289 enum pedit_header_type htype = TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK;
Amir Vadai853a14b2017-02-07 09:56:08 +0200290 enum pedit_cmd cmd = TCA_PEDIT_KEY_EX_CMD_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
David S. Millere9ce1cd2006-08-21 23:54:55 -0700292 for (i = p->tcfp_nkeys; i > 0; i--, tkey++) {
Changli Gaodb2c2412010-06-02 04:55:02 +0000293 u32 *ptr, _data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 int offset = tkey->off;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200295 int hoffset;
Amir Vadai853a14b2017-02-07 09:56:08 +0200296 u32 val;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200297 int rc;
298
299 if (tkey_ex) {
300 htype = tkey_ex->htype;
Amir Vadai853a14b2017-02-07 09:56:08 +0200301 cmd = tkey_ex->cmd;
302
Amir Vadai71d0ed72017-02-07 09:56:07 +0200303 tkey_ex++;
304 }
305
306 rc = pedit_skb_hdr_offset(skb, htype, &hoffset);
307 if (rc) {
308 pr_info("tc filter pedit bad header type specified (0x%x)\n",
309 htype);
310 goto bad;
311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 if (tkey->offmask) {
Changli Gaodb2c2412010-06-02 04:55:02 +0000314 char *d, _d;
315
Amir Vadai71d0ed72017-02-07 09:56:07 +0200316 if (!offset_valid(skb, hoffset + tkey->at)) {
Amir Vadai95c20272016-11-28 12:56:40 +0200317 pr_info("tc filter pedit 'at' offset %d out of bounds\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200318 hoffset + tkey->at);
Amir Vadai95c20272016-11-28 12:56:40 +0200319 goto bad;
320 }
Amir Vadai71d0ed72017-02-07 09:56:07 +0200321 d = skb_header_pointer(skb, hoffset + tkey->at, 1,
Changli Gaodb2c2412010-06-02 04:55:02 +0000322 &_d);
323 if (!d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 goto bad;
Changli Gaodb2c2412010-06-02 04:55:02 +0000325 offset += (*d & tkey->offmask) >> tkey->shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
328 if (offset % 4) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000329 pr_info("tc filter pedit"
330 " offset must be on 32 bit boundaries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 goto bad;
332 }
Amir Vadai95c20272016-11-28 12:56:40 +0200333
Amir Vadai71d0ed72017-02-07 09:56:07 +0200334 if (!offset_valid(skb, hoffset + offset)) {
Amir Vadai95c20272016-11-28 12:56:40 +0200335 pr_info("tc filter pedit offset %d out of bounds\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200336 hoffset + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 goto bad;
338 }
339
Amir Vadai71d0ed72017-02-07 09:56:07 +0200340 ptr = skb_header_pointer(skb, hoffset + offset, 4, &_data);
Changli Gaodb2c2412010-06-02 04:55:02 +0000341 if (!ptr)
342 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /* just do it, baby */
Amir Vadai853a14b2017-02-07 09:56:08 +0200344 switch (cmd) {
345 case TCA_PEDIT_KEY_EX_CMD_SET:
346 val = tkey->val;
347 break;
348 case TCA_PEDIT_KEY_EX_CMD_ADD:
349 val = (*ptr + tkey->val) & ~tkey->mask;
350 break;
351 default:
352 pr_info("tc filter pedit bad command (%d)\n",
353 cmd);
354 goto bad;
355 }
356
357 *ptr = ((*ptr & tkey->mask) ^ val);
Changli Gaodb2c2412010-06-02 04:55:02 +0000358 if (ptr == &_data)
Amir Vadai71d0ed72017-02-07 09:56:07 +0200359 skb_store_bits(skb, hoffset + offset, ptr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 goto done;
stephen hemminger6ff9c362010-05-12 06:37:05 +0000363 } else
364 WARN(1, "pedit BUG: index %d\n", p->tcf_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366bad:
David S. Millere9ce1cd2006-08-21 23:54:55 -0700367 p->tcf_qstats.overlimits++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368done:
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000369 bstats_update(&p->tcf_bstats, skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700370 spin_unlock(&p->tcf_lock);
371 return p->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
David S. Millere9ce1cd2006-08-21 23:54:55 -0700374static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,
375 int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700377 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700378 struct tcf_pedit *p = to_pedit(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 struct tc_pedit *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 struct tcf_t t;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900381 int s;
382
David S. Millere9ce1cd2006-08-21 23:54:55 -0700383 s = sizeof(*opt) + p->tcfp_nkeys * sizeof(struct tc_pedit_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 /* netlink spinlocks held above us - must use ATOMIC */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700386 opt = kzalloc(s, GFP_ATOMIC);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700387 if (unlikely(!opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
David S. Millere9ce1cd2006-08-21 23:54:55 -0700390 memcpy(opt->keys, p->tcfp_keys,
391 p->tcfp_nkeys * sizeof(struct tc_pedit_key));
392 opt->index = p->tcf_index;
393 opt->nkeys = p->tcfp_nkeys;
394 opt->flags = p->tcfp_flags;
395 opt->action = p->tcf_action;
396 opt->refcnt = p->tcf_refcnt - ref;
397 opt->bindcnt = p->tcf_bindcnt - bind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Amir Vadai71d0ed72017-02-07 09:56:07 +0200399 if (p->tcfp_keys_ex) {
400 tcf_pedit_key_ex_dump(skb, p->tcfp_keys_ex, p->tcfp_nkeys);
401
402 if (nla_put(skb, TCA_PEDIT_PARMS_EX, s, opt))
403 goto nla_put_failure;
404 } else {
405 if (nla_put(skb, TCA_PEDIT_PARMS, s, opt))
406 goto nla_put_failure;
407 }
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400408
409 tcf_tm_dump(&t, &p->tcf_tm);
Nicolas Dichtel98545182016-04-26 10:06:18 +0200410 if (nla_put_64bit(skb, TCA_PEDIT_TM, sizeof(t), &t, TCA_PEDIT_PAD))
David S. Miller1b34ec42012-03-29 05:11:39 -0400411 goto nla_put_failure;
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400412
Patrick McHardy541673c82006-01-08 22:17:27 -0800413 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return skb->len;
415
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800416nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700417 nlmsg_trim(skb, b);
Patrick McHardy541673c82006-01-08 22:17:27 -0800418 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return -1;
420}
421
WANG Congddf97cc2016-02-22 15:57:53 -0800422static int tcf_pedit_walker(struct net *net, struct sk_buff *skb,
423 struct netlink_callback *cb, int type,
WANG Conga85a9702016-07-25 16:09:41 -0700424 const struct tc_action_ops *ops)
WANG Congddf97cc2016-02-22 15:57:53 -0800425{
426 struct tc_action_net *tn = net_generic(net, pedit_net_id);
427
WANG Conga85a9702016-07-25 16:09:41 -0700428 return tcf_generic_walker(tn, skb, cb, type, ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800429}
430
WANG Conga85a9702016-07-25 16:09:41 -0700431static int tcf_pedit_search(struct net *net, struct tc_action **a, u32 index)
WANG Congddf97cc2016-02-22 15:57:53 -0800432{
433 struct tc_action_net *tn = net_generic(net, pedit_net_id);
434
435 return tcf_hash_search(tn, a, index);
436}
437
David S. Millere9ce1cd2006-08-21 23:54:55 -0700438static struct tc_action_ops act_pedit_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 .kind = "pedit",
440 .type = TCA_ACT_PEDIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 .owner = THIS_MODULE,
442 .act = tcf_pedit,
443 .dump = tcf_pedit_dump,
444 .cleanup = tcf_pedit_cleanup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 .init = tcf_pedit_init,
WANG Congddf97cc2016-02-22 15:57:53 -0800446 .walk = tcf_pedit_walker,
447 .lookup = tcf_pedit_search,
WANG Conga85a9702016-07-25 16:09:41 -0700448 .size = sizeof(struct tcf_pedit),
WANG Congddf97cc2016-02-22 15:57:53 -0800449};
450
451static __net_init int pedit_init_net(struct net *net)
452{
453 struct tc_action_net *tn = net_generic(net, pedit_net_id);
454
455 return tc_action_net_init(tn, &act_pedit_ops, PEDIT_TAB_MASK);
456}
457
458static void __net_exit pedit_exit_net(struct net *net)
459{
460 struct tc_action_net *tn = net_generic(net, pedit_net_id);
461
462 tc_action_net_exit(tn);
463}
464
465static struct pernet_operations pedit_net_ops = {
466 .init = pedit_init_net,
467 .exit = pedit_exit_net,
468 .id = &pedit_net_id,
469 .size = sizeof(struct tc_action_net),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470};
471
472MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
473MODULE_DESCRIPTION("Generic Packet Editor actions");
474MODULE_LICENSE("GPL");
475
David S. Millere9ce1cd2006-08-21 23:54:55 -0700476static int __init pedit_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
WANG Congddf97cc2016-02-22 15:57:53 -0800478 return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
David S. Millere9ce1cd2006-08-21 23:54:55 -0700481static void __exit pedit_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
WANG Congddf97cc2016-02-22 15:57:53 -0800483 tcf_unregister_action(&act_pedit_ops, &pedit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486module_init(pedit_init_module);
487module_exit(pedit_cleanup_module);
488