blob: 308b2680a6d9ad7d6fa81dcf884d2c3889b6cd24 [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
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030027static unsigned int pedit_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070028static struct tc_action_ops act_pedit_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080029
Patrick McHardy53b2bf32008-01-23 20:36:30 -080030static const struct nla_policy pedit_policy[TCA_PEDIT_MAX + 1] = {
jamal53f7e352009-10-11 04:21:38 +000031 [TCA_PEDIT_PARMS] = { .len = sizeof(struct tc_pedit) },
Amir Vadai71d0ed72017-02-07 09:56:07 +020032 [TCA_PEDIT_KEYS_EX] = { .type = NLA_NESTED },
Patrick McHardy53b2bf32008-01-23 20:36:30 -080033};
34
Amir Vadai71d0ed72017-02-07 09:56:07 +020035static const struct nla_policy pedit_key_ex_policy[TCA_PEDIT_KEY_EX_MAX + 1] = {
36 [TCA_PEDIT_KEY_EX_HTYPE] = { .type = NLA_U16 },
Amir Vadai853a14b2017-02-07 09:56:08 +020037 [TCA_PEDIT_KEY_EX_CMD] = { .type = NLA_U16 },
Amir Vadai71d0ed72017-02-07 09:56:07 +020038};
39
40static struct tcf_pedit_key_ex *tcf_pedit_keys_ex_parse(struct nlattr *nla,
41 u8 n)
42{
43 struct tcf_pedit_key_ex *keys_ex;
44 struct tcf_pedit_key_ex *k;
45 const struct nlattr *ka;
46 int err = -EINVAL;
47 int rem;
48
49 if (!nla || !n)
50 return NULL;
51
52 keys_ex = kcalloc(n, sizeof(*k), GFP_KERNEL);
53 if (!keys_ex)
54 return ERR_PTR(-ENOMEM);
55
56 k = keys_ex;
57
58 nla_for_each_nested(ka, nla, rem) {
59 struct nlattr *tb[TCA_PEDIT_KEY_EX_MAX + 1];
60
61 if (!n) {
62 err = -EINVAL;
63 goto err_out;
64 }
65 n--;
66
67 if (nla_type(ka) != TCA_PEDIT_KEY_EX) {
68 err = -EINVAL;
69 goto err_out;
70 }
71
72 err = nla_parse_nested(tb, TCA_PEDIT_KEY_EX_MAX, ka,
Johannes Bergfceb6432017-04-12 14:34:07 +020073 pedit_key_ex_policy, NULL);
Amir Vadai71d0ed72017-02-07 09:56:07 +020074 if (err)
75 goto err_out;
76
Amir Vadai853a14b2017-02-07 09:56:08 +020077 if (!tb[TCA_PEDIT_KEY_EX_HTYPE] ||
78 !tb[TCA_PEDIT_KEY_EX_CMD]) {
Amir Vadai71d0ed72017-02-07 09:56:07 +020079 err = -EINVAL;
80 goto err_out;
81 }
82
83 k->htype = nla_get_u16(tb[TCA_PEDIT_KEY_EX_HTYPE]);
Amir Vadai853a14b2017-02-07 09:56:08 +020084 k->cmd = nla_get_u16(tb[TCA_PEDIT_KEY_EX_CMD]);
Amir Vadai71d0ed72017-02-07 09:56:07 +020085
Amir Vadai853a14b2017-02-07 09:56:08 +020086 if (k->htype > TCA_PEDIT_HDR_TYPE_MAX ||
87 k->cmd > TCA_PEDIT_CMD_MAX) {
Amir Vadai71d0ed72017-02-07 09:56:07 +020088 err = -EINVAL;
89 goto err_out;
90 }
91
92 k++;
93 }
94
Dan Carpenterc4f65b02017-06-14 13:29:31 +030095 if (n) {
96 err = -EINVAL;
Amir Vadai71d0ed72017-02-07 09:56:07 +020097 goto err_out;
Dan Carpenterc4f65b02017-06-14 13:29:31 +030098 }
Amir Vadai71d0ed72017-02-07 09:56:07 +020099
100 return keys_ex;
101
102err_out:
103 kfree(keys_ex);
104 return ERR_PTR(err);
105}
106
107static int tcf_pedit_key_ex_dump(struct sk_buff *skb,
108 struct tcf_pedit_key_ex *keys_ex, int n)
109{
110 struct nlattr *keys_start = nla_nest_start(skb, TCA_PEDIT_KEYS_EX);
111
112 for (; n > 0; n--) {
113 struct nlattr *key_start;
114
115 key_start = nla_nest_start(skb, TCA_PEDIT_KEY_EX);
116
Amir Vadai853a14b2017-02-07 09:56:08 +0200117 if (nla_put_u16(skb, TCA_PEDIT_KEY_EX_HTYPE, keys_ex->htype) ||
118 nla_put_u16(skb, TCA_PEDIT_KEY_EX_CMD, keys_ex->cmd)) {
Amir Vadai71d0ed72017-02-07 09:56:07 +0200119 nlmsg_trim(skb, keys_start);
120 return -EINVAL;
121 }
122
123 nla_nest_end(skb, key_start);
124
125 keys_ex++;
126 }
127
128 nla_nest_end(skb, keys_start);
129
130 return 0;
131}
132
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000133static int tcf_pedit_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700134 struct nlattr *est, struct tc_action **a,
Alexander Aring589dad62018-02-15 10:54:56 -0500135 int ovr, int bind, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
WANG Congddf97cc2016-02-22 15:57:53 -0800137 struct tc_action_net *tn = net_generic(net, pedit_net_id);
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800138 struct nlattr *tb[TCA_PEDIT_MAX + 1];
Amir Vadai71d0ed72017-02-07 09:56:07 +0200139 struct nlattr *pattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 struct tc_pedit *parm;
Patrick McHardycee63722008-01-23 20:33:32 -0800141 int ret = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct tcf_pedit *p;
143 struct tc_pedit_key *keys = NULL;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200144 struct tcf_pedit_key_ex *keys_ex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 int ksize;
146
Patrick McHardycee63722008-01-23 20:33:32 -0800147 if (nla == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return -EINVAL;
149
Johannes Bergfceb6432017-04-12 14:34:07 +0200150 err = nla_parse_nested(tb, TCA_PEDIT_MAX, nla, pedit_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -0800151 if (err < 0)
152 return err;
153
Amir Vadai71d0ed72017-02-07 09:56:07 +0200154 pattr = tb[TCA_PEDIT_PARMS];
155 if (!pattr)
156 pattr = tb[TCA_PEDIT_PARMS_EX];
157 if (!pattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return -EINVAL;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200159
160 parm = nla_data(pattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 ksize = parm->nkeys * sizeof(struct tc_pedit_key);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200162 if (nla_len(pattr) < sizeof(*parm) + ksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return -EINVAL;
164
Amir Vadai71d0ed72017-02-07 09:56:07 +0200165 keys_ex = tcf_pedit_keys_ex_parse(tb[TCA_PEDIT_KEYS_EX], parm->nkeys);
166 if (IS_ERR(keys_ex))
167 return PTR_ERR(keys_ex);
168
Chris Mi65a206c2017-08-30 02:31:59 -0400169 if (!tcf_idr_check(tn, parm->index, a, bind)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (!parm->nkeys)
171 return -EINVAL;
Chris Mi65a206c2017-08-30 02:31:59 -0400172 ret = tcf_idr_create(tn, parm->index, est, a,
173 &act_pedit_ops, bind, false);
WANG Cong86062032014-02-11 17:07:31 -0800174 if (ret)
175 return ret;
WANG Conga85a9702016-07-25 16:09:41 -0700176 p = to_pedit(*a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 keys = kmalloc(ksize, GFP_KERNEL);
178 if (keys == NULL) {
Chris Mi65a206c2017-08-30 02:31:59 -0400179 tcf_idr_cleanup(*a, est);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200180 kfree(keys_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -ENOMEM;
182 }
183 ret = ACT_P_CREATED;
184 } else {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500185 if (bind)
186 return 0;
Chris Mi65a206c2017-08-30 02:31:59 -0400187 tcf_idr_release(*a, bind);
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500188 if (!ovr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return -EEXIST;
WANG Conga85a9702016-07-25 16:09:41 -0700190 p = to_pedit(*a);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700191 if (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 keys = kmalloc(ksize, GFP_KERNEL);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200193 if (!keys) {
194 kfree(keys_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return -ENOMEM;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198 }
199
David S. Millere9ce1cd2006-08-21 23:54:55 -0700200 spin_lock_bh(&p->tcf_lock);
201 p->tcfp_flags = parm->flags;
202 p->tcf_action = parm->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (keys) {
David S. Millere9ce1cd2006-08-21 23:54:55 -0700204 kfree(p->tcfp_keys);
205 p->tcfp_keys = keys;
206 p->tcfp_nkeys = parm->nkeys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700208 memcpy(p->tcfp_keys, parm->keys, ksize);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200209
210 kfree(p->tcfp_keys_ex);
211 p->tcfp_keys_ex = keys_ex;
212
David S. Millere9ce1cd2006-08-21 23:54:55 -0700213 spin_unlock_bh(&p->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (ret == ACT_P_CREATED)
Chris Mi65a206c2017-08-30 02:31:59 -0400215 tcf_idr_insert(tn, *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return ret;
217}
218
Cong Wang9a63b252017-12-05 12:53:07 -0800219static void tcf_pedit_cleanup(struct tc_action *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
WANG Conga85a9702016-07-25 16:09:41 -0700221 struct tcf_pedit *p = to_pedit(a);
WANG Conga5b5c952014-02-11 17:07:32 -0800222 struct tc_pedit_key *keys = p->tcfp_keys;
223 kfree(keys);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200224 kfree(p->tcfp_keys_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Amir Vadai95c20272016-11-28 12:56:40 +0200227static bool offset_valid(struct sk_buff *skb, int offset)
228{
229 if (offset > 0 && offset > skb->len)
230 return false;
231
232 if (offset < 0 && -offset > skb_headroom(skb))
233 return false;
234
235 return true;
236}
237
Amir Vadai71d0ed72017-02-07 09:56:07 +0200238static int pedit_skb_hdr_offset(struct sk_buff *skb,
239 enum pedit_header_type htype, int *hoffset)
240{
241 int ret = -EINVAL;
242
243 switch (htype) {
244 case TCA_PEDIT_KEY_EX_HDR_TYPE_ETH:
245 if (skb_mac_header_was_set(skb)) {
246 *hoffset = skb_mac_offset(skb);
247 ret = 0;
248 }
249 break;
250 case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK:
251 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4:
252 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6:
253 *hoffset = skb_network_offset(skb);
254 ret = 0;
255 break;
256 case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP:
257 case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP:
258 if (skb_transport_header_was_set(skb)) {
259 *hoffset = skb_transport_offset(skb);
260 ret = 0;
261 }
262 break;
263 default:
264 ret = -EINVAL;
265 break;
266 };
267
268 return ret;
269}
270
Eric Dumazetdc7f9f62011-07-05 23:25:42 +0000271static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a,
David S. Millere9ce1cd2006-08-21 23:54:55 -0700272 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
WANG Conga85a9702016-07-25 16:09:41 -0700274 struct tcf_pedit *p = to_pedit(a);
Florian Westphal4749c3ef2015-04-30 12:12:00 +0200275 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000277 if (skb_unclone(skb, GFP_ATOMIC))
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000278 return p->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
David S. Millere9ce1cd2006-08-21 23:54:55 -0700280 spin_lock(&p->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400282 tcf_lastuse_update(&p->tcf_tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
David S. Millere9ce1cd2006-08-21 23:54:55 -0700284 if (p->tcfp_nkeys > 0) {
285 struct tc_pedit_key *tkey = p->tcfp_keys;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200286 struct tcf_pedit_key_ex *tkey_ex = p->tcfp_keys_ex;
287 enum pedit_header_type htype = TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK;
Amir Vadai853a14b2017-02-07 09:56:08 +0200288 enum pedit_cmd cmd = TCA_PEDIT_KEY_EX_CMD_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
David S. Millere9ce1cd2006-08-21 23:54:55 -0700290 for (i = p->tcfp_nkeys; i > 0; i--, tkey++) {
Changli Gaodb2c2412010-06-02 04:55:02 +0000291 u32 *ptr, _data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int offset = tkey->off;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200293 int hoffset;
Amir Vadai853a14b2017-02-07 09:56:08 +0200294 u32 val;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200295 int rc;
296
297 if (tkey_ex) {
298 htype = tkey_ex->htype;
Amir Vadai853a14b2017-02-07 09:56:08 +0200299 cmd = tkey_ex->cmd;
300
Amir Vadai71d0ed72017-02-07 09:56:07 +0200301 tkey_ex++;
302 }
303
304 rc = pedit_skb_hdr_offset(skb, htype, &hoffset);
305 if (rc) {
306 pr_info("tc filter pedit bad header type specified (0x%x)\n",
307 htype);
308 goto bad;
309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 if (tkey->offmask) {
Changli Gaodb2c2412010-06-02 04:55:02 +0000312 char *d, _d;
313
Amir Vadai71d0ed72017-02-07 09:56:07 +0200314 if (!offset_valid(skb, hoffset + tkey->at)) {
Amir Vadai95c20272016-11-28 12:56:40 +0200315 pr_info("tc filter pedit 'at' offset %d out of bounds\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200316 hoffset + tkey->at);
Amir Vadai95c20272016-11-28 12:56:40 +0200317 goto bad;
318 }
Amir Vadai71d0ed72017-02-07 09:56:07 +0200319 d = skb_header_pointer(skb, hoffset + tkey->at, 1,
Changli Gaodb2c2412010-06-02 04:55:02 +0000320 &_d);
321 if (!d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 goto bad;
Changli Gaodb2c2412010-06-02 04:55:02 +0000323 offset += (*d & tkey->offmask) >> tkey->shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325
326 if (offset % 4) {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000327 pr_info("tc filter pedit"
328 " offset must be on 32 bit boundaries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 goto bad;
330 }
Amir Vadai95c20272016-11-28 12:56:40 +0200331
Amir Vadai71d0ed72017-02-07 09:56:07 +0200332 if (!offset_valid(skb, hoffset + offset)) {
Amir Vadai95c20272016-11-28 12:56:40 +0200333 pr_info("tc filter pedit offset %d out of bounds\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200334 hoffset + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 goto bad;
336 }
337
Amir Vadai71d0ed72017-02-07 09:56:07 +0200338 ptr = skb_header_pointer(skb, hoffset + offset, 4, &_data);
Changli Gaodb2c2412010-06-02 04:55:02 +0000339 if (!ptr)
340 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* just do it, baby */
Amir Vadai853a14b2017-02-07 09:56:08 +0200342 switch (cmd) {
343 case TCA_PEDIT_KEY_EX_CMD_SET:
344 val = tkey->val;
345 break;
346 case TCA_PEDIT_KEY_EX_CMD_ADD:
347 val = (*ptr + tkey->val) & ~tkey->mask;
348 break;
349 default:
350 pr_info("tc filter pedit bad command (%d)\n",
351 cmd);
352 goto bad;
353 }
354
355 *ptr = ((*ptr & tkey->mask) ^ val);
Changli Gaodb2c2412010-06-02 04:55:02 +0000356 if (ptr == &_data)
Amir Vadai71d0ed72017-02-07 09:56:07 +0200357 skb_store_bits(skb, hoffset + offset, ptr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 goto done;
stephen hemminger6ff9c362010-05-12 06:37:05 +0000361 } else
362 WARN(1, "pedit BUG: index %d\n", p->tcf_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364bad:
David S. Millere9ce1cd2006-08-21 23:54:55 -0700365 p->tcf_qstats.overlimits++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366done:
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000367 bstats_update(&p->tcf_bstats, skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700368 spin_unlock(&p->tcf_lock);
369 return p->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
David S. Millere9ce1cd2006-08-21 23:54:55 -0700372static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,
373 int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700375 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700376 struct tcf_pedit *p = to_pedit(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct tc_pedit *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 struct tcf_t t;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900379 int s;
380
David S. Millere9ce1cd2006-08-21 23:54:55 -0700381 s = sizeof(*opt) + p->tcfp_nkeys * sizeof(struct tc_pedit_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /* netlink spinlocks held above us - must use ATOMIC */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700384 opt = kzalloc(s, GFP_ATOMIC);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700385 if (unlikely(!opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
David S. Millere9ce1cd2006-08-21 23:54:55 -0700388 memcpy(opt->keys, p->tcfp_keys,
389 p->tcfp_nkeys * sizeof(struct tc_pedit_key));
390 opt->index = p->tcf_index;
391 opt->nkeys = p->tcfp_nkeys;
392 opt->flags = p->tcfp_flags;
393 opt->action = p->tcf_action;
394 opt->refcnt = p->tcf_refcnt - ref;
395 opt->bindcnt = p->tcf_bindcnt - bind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Amir Vadai71d0ed72017-02-07 09:56:07 +0200397 if (p->tcfp_keys_ex) {
398 tcf_pedit_key_ex_dump(skb, p->tcfp_keys_ex, p->tcfp_nkeys);
399
400 if (nla_put(skb, TCA_PEDIT_PARMS_EX, s, opt))
401 goto nla_put_failure;
402 } else {
403 if (nla_put(skb, TCA_PEDIT_PARMS, s, opt))
404 goto nla_put_failure;
405 }
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400406
407 tcf_tm_dump(&t, &p->tcf_tm);
Nicolas Dichtel9854518e2016-04-26 10:06:18 +0200408 if (nla_put_64bit(skb, TCA_PEDIT_TM, sizeof(t), &t, TCA_PEDIT_PAD))
David S. Miller1b34ec42012-03-29 05:11:39 -0400409 goto nla_put_failure;
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400410
Patrick McHardy541673c82006-01-08 22:17:27 -0800411 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return skb->len;
413
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800414nla_put_failure:
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700415 nlmsg_trim(skb, b);
Patrick McHardy541673c82006-01-08 22:17:27 -0800416 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return -1;
418}
419
WANG Congddf97cc2016-02-22 15:57:53 -0800420static int tcf_pedit_walker(struct net *net, struct sk_buff *skb,
421 struct netlink_callback *cb, int type,
WANG Conga85a9702016-07-25 16:09:41 -0700422 const struct tc_action_ops *ops)
WANG Congddf97cc2016-02-22 15:57:53 -0800423{
424 struct tc_action_net *tn = net_generic(net, pedit_net_id);
425
WANG Conga85a9702016-07-25 16:09:41 -0700426 return tcf_generic_walker(tn, skb, cb, type, ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800427}
428
Alexander Aring331a9292018-02-15 10:54:57 -0500429static int tcf_pedit_search(struct net *net, struct tc_action **a, u32 index,
430 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800431{
432 struct tc_action_net *tn = net_generic(net, pedit_net_id);
433
Chris Mi65a206c2017-08-30 02:31:59 -0400434 return tcf_idr_search(tn, a, index);
WANG Congddf97cc2016-02-22 15:57:53 -0800435}
436
David S. Millere9ce1cd2006-08-21 23:54:55 -0700437static struct tc_action_ops act_pedit_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 .kind = "pedit",
439 .type = TCA_ACT_PEDIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 .owner = THIS_MODULE,
441 .act = tcf_pedit,
442 .dump = tcf_pedit_dump,
443 .cleanup = tcf_pedit_cleanup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 .init = tcf_pedit_init,
WANG Congddf97cc2016-02-22 15:57:53 -0800445 .walk = tcf_pedit_walker,
446 .lookup = tcf_pedit_search,
WANG Conga85a9702016-07-25 16:09:41 -0700447 .size = sizeof(struct tcf_pedit),
WANG Congddf97cc2016-02-22 15:57:53 -0800448};
449
450static __net_init int pedit_init_net(struct net *net)
451{
452 struct tc_action_net *tn = net_generic(net, pedit_net_id);
453
Cong Wangc7e460c2017-11-06 13:47:18 -0800454 return tc_action_net_init(tn, &act_pedit_ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800455}
456
Cong Wang039af9c2017-12-11 15:35:03 -0800457static void __net_exit pedit_exit_net(struct list_head *net_list)
WANG Congddf97cc2016-02-22 15:57:53 -0800458{
Cong Wang039af9c2017-12-11 15:35:03 -0800459 tc_action_net_exit(net_list, pedit_net_id);
WANG Congddf97cc2016-02-22 15:57:53 -0800460}
461
462static struct pernet_operations pedit_net_ops = {
463 .init = pedit_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800464 .exit_batch = pedit_exit_net,
WANG Congddf97cc2016-02-22 15:57:53 -0800465 .id = &pedit_net_id,
466 .size = sizeof(struct tc_action_net),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467};
468
469MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
470MODULE_DESCRIPTION("Generic Packet Editor actions");
471MODULE_LICENSE("GPL");
472
David S. Millere9ce1cd2006-08-21 23:54:55 -0700473static int __init pedit_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
WANG Congddf97cc2016-02-22 15:57:53 -0800475 return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
David S. Millere9ce1cd2006-08-21 23:54:55 -0700478static void __exit pedit_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
WANG Congddf97cc2016-02-22 15:57:53 -0800480 tcf_unregister_action(&act_pedit_ops, &pedit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
483module_init(pedit_init_module);
484module_exit(pedit_cleanup_module);
485