blob: 31fcd279c17767a57f6190f623f3cef25f33cf99 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Jiri Pirko0c6965d2014-11-05 20:51:51 +01003 * net/sched/act_pedit.c Generic packet editor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Authors: Jamal Hadi Salim (2002-4)
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/types.h>
9#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/skbuff.h>
13#include <linux/rtnetlink.h>
14#include <linux/module.h>
15#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070017#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <net/pkt_sched.h>
19#include <linux/tc_act/tc_pedit.h>
20#include <net/tc_act/tc_pedit.h>
Amir Vadai71d0ed72017-02-07 09:56:07 +020021#include <uapi/linux/tc_act/tc_pedit.h>
Davide Caratti6ac86ca2019-03-20 15:00:07 +010022#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030024static unsigned int pedit_net_id;
WANG Conga85a9702016-07-25 16:09:41 -070025static struct tc_action_ops act_pedit_ops;
WANG Congddf97cc2016-02-22 15:57:53 -080026
Patrick McHardy53b2bf32008-01-23 20:36:30 -080027static const struct nla_policy pedit_policy[TCA_PEDIT_MAX + 1] = {
jamal53f7e352009-10-11 04:21:38 +000028 [TCA_PEDIT_PARMS] = { .len = sizeof(struct tc_pedit) },
Amir Vadai71d0ed72017-02-07 09:56:07 +020029 [TCA_PEDIT_KEYS_EX] = { .type = NLA_NESTED },
Patrick McHardy53b2bf32008-01-23 20:36:30 -080030};
31
Amir Vadai71d0ed72017-02-07 09:56:07 +020032static const struct nla_policy pedit_key_ex_policy[TCA_PEDIT_KEY_EX_MAX + 1] = {
33 [TCA_PEDIT_KEY_EX_HTYPE] = { .type = NLA_U16 },
Amir Vadai853a14b2017-02-07 09:56:08 +020034 [TCA_PEDIT_KEY_EX_CMD] = { .type = NLA_U16 },
Amir Vadai71d0ed72017-02-07 09:56:07 +020035};
36
37static struct tcf_pedit_key_ex *tcf_pedit_keys_ex_parse(struct nlattr *nla,
38 u8 n)
39{
40 struct tcf_pedit_key_ex *keys_ex;
41 struct tcf_pedit_key_ex *k;
42 const struct nlattr *ka;
43 int err = -EINVAL;
44 int rem;
45
Davide Carattif67169f2019-11-19 23:47:33 +010046 if (!nla)
Amir Vadai71d0ed72017-02-07 09:56:07 +020047 return NULL;
48
49 keys_ex = kcalloc(n, sizeof(*k), GFP_KERNEL);
50 if (!keys_ex)
51 return ERR_PTR(-ENOMEM);
52
53 k = keys_ex;
54
55 nla_for_each_nested(ka, nla, rem) {
56 struct nlattr *tb[TCA_PEDIT_KEY_EX_MAX + 1];
57
58 if (!n) {
59 err = -EINVAL;
60 goto err_out;
61 }
62 n--;
63
64 if (nla_type(ka) != TCA_PEDIT_KEY_EX) {
65 err = -EINVAL;
66 goto err_out;
67 }
68
Johannes Berg8cb08172019-04-26 14:07:28 +020069 err = nla_parse_nested_deprecated(tb, TCA_PEDIT_KEY_EX_MAX,
70 ka, pedit_key_ex_policy,
71 NULL);
Amir Vadai71d0ed72017-02-07 09:56:07 +020072 if (err)
73 goto err_out;
74
Amir Vadai853a14b2017-02-07 09:56:08 +020075 if (!tb[TCA_PEDIT_KEY_EX_HTYPE] ||
76 !tb[TCA_PEDIT_KEY_EX_CMD]) {
Amir Vadai71d0ed72017-02-07 09:56:07 +020077 err = -EINVAL;
78 goto err_out;
79 }
80
81 k->htype = nla_get_u16(tb[TCA_PEDIT_KEY_EX_HTYPE]);
Amir Vadai853a14b2017-02-07 09:56:08 +020082 k->cmd = nla_get_u16(tb[TCA_PEDIT_KEY_EX_CMD]);
Amir Vadai71d0ed72017-02-07 09:56:07 +020083
Amir Vadai853a14b2017-02-07 09:56:08 +020084 if (k->htype > TCA_PEDIT_HDR_TYPE_MAX ||
85 k->cmd > TCA_PEDIT_CMD_MAX) {
Amir Vadai71d0ed72017-02-07 09:56:07 +020086 err = -EINVAL;
87 goto err_out;
88 }
89
90 k++;
91 }
92
Dan Carpenterc4f65b02017-06-14 13:29:31 +030093 if (n) {
94 err = -EINVAL;
Amir Vadai71d0ed72017-02-07 09:56:07 +020095 goto err_out;
Dan Carpenterc4f65b02017-06-14 13:29:31 +030096 }
Amir Vadai71d0ed72017-02-07 09:56:07 +020097
98 return keys_ex;
99
100err_out:
101 kfree(keys_ex);
102 return ERR_PTR(err);
103}
104
105static int tcf_pedit_key_ex_dump(struct sk_buff *skb,
106 struct tcf_pedit_key_ex *keys_ex, int n)
107{
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200108 struct nlattr *keys_start = nla_nest_start_noflag(skb,
109 TCA_PEDIT_KEYS_EX);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200110
Davide Caratti85eb9af2018-08-27 22:56:22 +0200111 if (!keys_start)
112 goto nla_failure;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200113 for (; n > 0; n--) {
114 struct nlattr *key_start;
115
Michal Kubecekae0be8d2019-04-26 11:13:06 +0200116 key_start = nla_nest_start_noflag(skb, TCA_PEDIT_KEY_EX);
Davide Caratti85eb9af2018-08-27 22:56:22 +0200117 if (!key_start)
118 goto nla_failure;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200119
Amir Vadai853a14b2017-02-07 09:56:08 +0200120 if (nla_put_u16(skb, TCA_PEDIT_KEY_EX_HTYPE, keys_ex->htype) ||
Davide Caratti85eb9af2018-08-27 22:56:22 +0200121 nla_put_u16(skb, TCA_PEDIT_KEY_EX_CMD, keys_ex->cmd))
122 goto nla_failure;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200123
124 nla_nest_end(skb, key_start);
125
126 keys_ex++;
127 }
128
129 nla_nest_end(skb, keys_start);
130
131 return 0;
Davide Caratti85eb9af2018-08-27 22:56:22 +0200132nla_failure:
133 nla_nest_cancel(skb, keys_start);
134 return -EINVAL;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200135}
136
Benjamin LaHaisec1b52732013-01-14 05:15:39 +0000137static int tcf_pedit_init(struct net *net, struct nlattr *nla,
WANG Conga85a9702016-07-25 16:09:41 -0700138 struct nlattr *est, struct tc_action **a,
Vlad Buslovabbb0d32019-10-30 16:09:05 +0200139 struct tcf_proto *tp, u32 flags,
140 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
WANG Congddf97cc2016-02-22 15:57:53 -0800142 struct tc_action_net *tn = net_generic(net, pedit_net_id);
Cong Wang695176b2021-07-29 16:12:14 -0700143 bool bind = flags & TCA_ACT_FLAGS_BIND;
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800144 struct nlattr *tb[TCA_PEDIT_MAX + 1];
Davide Caratti6ac86ca2019-03-20 15:00:07 +0100145 struct tcf_chain *goto_ch = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 struct tc_pedit_key *keys = NULL;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200147 struct tcf_pedit_key_ex *keys_ex;
Roman Mashak80f0f572018-06-27 13:33:30 -0400148 struct tc_pedit *parm;
149 struct nlattr *pattr;
150 struct tcf_pedit *p;
151 int ret = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int ksize;
Dmytro Linkin7be8ef22019-08-01 13:02:51 +0000153 u32 index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Roman Mashak9868c0b2018-07-02 00:02:02 -0400155 if (!nla) {
156 NL_SET_ERR_MSG_MOD(extack, "Pedit requires attributes to be passed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return -EINVAL;
Roman Mashak9868c0b2018-07-02 00:02:02 -0400158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Johannes Berg8cb08172019-04-26 14:07:28 +0200160 err = nla_parse_nested_deprecated(tb, TCA_PEDIT_MAX, nla,
161 pedit_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -0800162 if (err < 0)
163 return err;
164
Amir Vadai71d0ed72017-02-07 09:56:07 +0200165 pattr = tb[TCA_PEDIT_PARMS];
166 if (!pattr)
167 pattr = tb[TCA_PEDIT_PARMS_EX];
Roman Mashak9868c0b2018-07-02 00:02:02 -0400168 if (!pattr) {
169 NL_SET_ERR_MSG_MOD(extack, "Missing required TCA_PEDIT_PARMS or TCA_PEDIT_PARMS_EX pedit attribute");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -EINVAL;
Roman Mashak9868c0b2018-07-02 00:02:02 -0400171 }
Amir Vadai71d0ed72017-02-07 09:56:07 +0200172
173 parm = nla_data(pattr);
Davide Carattif67169f2019-11-19 23:47:33 +0100174 if (!parm->nkeys) {
175 NL_SET_ERR_MSG_MOD(extack, "Pedit requires keys to be passed");
176 return -EINVAL;
177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 ksize = parm->nkeys * sizeof(struct tc_pedit_key);
Roman Mashak9868c0b2018-07-02 00:02:02 -0400179 if (nla_len(pattr) < sizeof(*parm) + ksize) {
180 NL_SET_ERR_MSG_ATTR(extack, pattr, "Length of TCA_PEDIT_PARMS or TCA_PEDIT_PARMS_EX pedit attribute is invalid");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -EINVAL;
Roman Mashak9868c0b2018-07-02 00:02:02 -0400182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Amir Vadai71d0ed72017-02-07 09:56:07 +0200184 keys_ex = tcf_pedit_keys_ex_parse(tb[TCA_PEDIT_KEYS_EX], parm->nkeys);
185 if (IS_ERR(keys_ex))
186 return PTR_ERR(keys_ex);
187
Dmytro Linkin7be8ef22019-08-01 13:02:51 +0000188 index = parm->index;
189 err = tcf_idr_check_alloc(tn, &index, a, bind);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300190 if (!err) {
Dmytro Linkin7be8ef22019-08-01 13:02:51 +0000191 ret = tcf_idr_create(tn, index, est, a,
Baowen Zheng40bd0942021-12-17 19:16:17 +0100192 &act_pedit_ops, bind, false, flags);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300193 if (ret) {
Dmytro Linkin7be8ef22019-08-01 13:02:51 +0000194 tcf_idr_cleanup(tn, index);
Wei Yongjun30e99ed2018-07-03 13:45:12 +0000195 goto out_free;
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 ret = ACT_P_CREATED;
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300198 } else if (err > 0) {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500199 if (bind)
Wei Yongjun30e99ed2018-07-03 13:45:12 +0000200 goto out_free;
Cong Wang695176b2021-07-29 16:12:14 -0700201 if (!(flags & TCA_ACT_FLAGS_REPLACE)) {
Wei Yongjun30e99ed2018-07-03 13:45:12 +0000202 ret = -EEXIST;
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300203 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300205 } else {
Davide Caratti19ab6912018-11-14 12:17:25 +0100206 ret = err;
207 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
Davide Caratti6ac86ca2019-03-20 15:00:07 +0100210 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
211 if (err < 0) {
212 ret = err;
213 goto out_release;
214 }
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300215 p = to_pedit(*a);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700216 spin_lock_bh(&p->tcf_lock);
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300217
218 if (ret == ACT_P_CREATED ||
219 (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys)) {
220 keys = kmalloc(ksize, GFP_ATOMIC);
221 if (!keys) {
222 spin_unlock_bh(&p->tcf_lock);
223 ret = -ENOMEM;
Davide Caratti6ac86ca2019-03-20 15:00:07 +0100224 goto put_chain;
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300225 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700226 kfree(p->tcfp_keys);
227 p->tcfp_keys = keys;
228 p->tcfp_nkeys = parm->nkeys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700230 memcpy(p->tcfp_keys, parm->keys, ksize);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200231
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300232 p->tcfp_flags = parm->flags;
Davide Caratti6ac86ca2019-03-20 15:00:07 +0100233 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300234
Amir Vadai71d0ed72017-02-07 09:56:07 +0200235 kfree(p->tcfp_keys_ex);
236 p->tcfp_keys_ex = keys_ex;
237
David S. Millere9ce1cd2006-08-21 23:54:55 -0700238 spin_unlock_bh(&p->tcf_lock);
Davide Caratti6ac86ca2019-03-20 15:00:07 +0100239 if (goto_ch)
240 tcf_chain_put_by_act(goto_ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return ret;
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300242
Davide Caratti6ac86ca2019-03-20 15:00:07 +0100243put_chain:
244 if (goto_ch)
245 tcf_chain_put_by_act(goto_ch);
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300246out_release:
247 tcf_idr_release(*a, bind);
Wei Yongjun30e99ed2018-07-03 13:45:12 +0000248out_free:
249 kfree(keys_ex);
250 return ret;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
Cong Wang9a63b252017-12-05 12:53:07 -0800254static void tcf_pedit_cleanup(struct tc_action *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
WANG Conga85a9702016-07-25 16:09:41 -0700256 struct tcf_pedit *p = to_pedit(a);
WANG Conga5b5c952014-02-11 17:07:32 -0800257 struct tc_pedit_key *keys = p->tcfp_keys;
Roman Mashak80f0f572018-06-27 13:33:30 -0400258
WANG Conga5b5c952014-02-11 17:07:32 -0800259 kfree(keys);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200260 kfree(p->tcfp_keys_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
Amir Vadai95c20272016-11-28 12:56:40 +0200263static bool offset_valid(struct sk_buff *skb, int offset)
264{
265 if (offset > 0 && offset > skb->len)
266 return false;
267
268 if (offset < 0 && -offset > skb_headroom(skb))
269 return false;
270
271 return true;
272}
273
Amir Vadai71d0ed72017-02-07 09:56:07 +0200274static int pedit_skb_hdr_offset(struct sk_buff *skb,
275 enum pedit_header_type htype, int *hoffset)
276{
277 int ret = -EINVAL;
278
279 switch (htype) {
280 case TCA_PEDIT_KEY_EX_HDR_TYPE_ETH:
281 if (skb_mac_header_was_set(skb)) {
282 *hoffset = skb_mac_offset(skb);
283 ret = 0;
284 }
285 break;
286 case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK:
287 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4:
288 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6:
289 *hoffset = skb_network_offset(skb);
290 ret = 0;
291 break;
292 case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP:
293 case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP:
294 if (skb_transport_header_was_set(skb)) {
295 *hoffset = skb_transport_offset(skb);
296 ret = 0;
297 }
298 break;
299 default:
300 ret = -EINVAL;
301 break;
YueHaibing0a808482018-07-28 18:29:01 +0800302 }
Amir Vadai71d0ed72017-02-07 09:56:07 +0200303
304 return ret;
305}
306
Jamal Hadi Salim6a2b4012018-08-12 09:34:55 -0400307static int tcf_pedit_act(struct sk_buff *skb, const struct tc_action *a,
308 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
WANG Conga85a9702016-07-25 16:09:41 -0700310 struct tcf_pedit *p = to_pedit(a);
Florian Westphal4749c3ef2015-04-30 12:12:00 +0200311 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000313 if (skb_unclone(skb, GFP_ATOMIC))
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000314 return p->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
David S. Millere9ce1cd2006-08-21 23:54:55 -0700316 spin_lock(&p->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400318 tcf_lastuse_update(&p->tcf_tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
David S. Millere9ce1cd2006-08-21 23:54:55 -0700320 if (p->tcfp_nkeys > 0) {
321 struct tc_pedit_key *tkey = p->tcfp_keys;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200322 struct tcf_pedit_key_ex *tkey_ex = p->tcfp_keys_ex;
Roman Mashak80f0f572018-06-27 13:33:30 -0400323 enum pedit_header_type htype =
324 TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK;
Amir Vadai853a14b2017-02-07 09:56:08 +0200325 enum pedit_cmd cmd = TCA_PEDIT_KEY_EX_CMD_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
David S. Millere9ce1cd2006-08-21 23:54:55 -0700327 for (i = p->tcfp_nkeys; i > 0; i--, tkey++) {
Roman Mashak544377c2018-06-27 13:33:32 -0400328 u32 *ptr, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 int offset = tkey->off;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200330 int hoffset;
Amir Vadai853a14b2017-02-07 09:56:08 +0200331 u32 val;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200332 int rc;
333
334 if (tkey_ex) {
335 htype = tkey_ex->htype;
Amir Vadai853a14b2017-02-07 09:56:08 +0200336 cmd = tkey_ex->cmd;
337
Amir Vadai71d0ed72017-02-07 09:56:07 +0200338 tkey_ex++;
339 }
340
341 rc = pedit_skb_hdr_offset(skb, htype, &hoffset);
342 if (rc) {
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400343 pr_info("tc action pedit bad header type specified (0x%x)\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200344 htype);
345 goto bad;
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 if (tkey->offmask) {
Roman Mashak43052742018-06-27 13:33:35 -0400349 u8 *d, _d;
Changli Gaodb2c2412010-06-02 04:55:02 +0000350
Amir Vadai71d0ed72017-02-07 09:56:07 +0200351 if (!offset_valid(skb, hoffset + tkey->at)) {
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400352 pr_info("tc action pedit 'at' offset %d out of bounds\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200353 hoffset + tkey->at);
Amir Vadai95c20272016-11-28 12:56:40 +0200354 goto bad;
355 }
Roman Mashak80f0f572018-06-27 13:33:30 -0400356 d = skb_header_pointer(skb, hoffset + tkey->at,
Roman Mashak6ff75862018-06-27 13:33:33 -0400357 sizeof(_d), &_d);
Changli Gaodb2c2412010-06-02 04:55:02 +0000358 if (!d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 goto bad;
Changli Gaodb2c2412010-06-02 04:55:02 +0000360 offset += (*d & tkey->offmask) >> tkey->shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
363 if (offset % 4) {
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400364 pr_info("tc action pedit offset must be on 32 bit boundaries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 goto bad;
366 }
Amir Vadai95c20272016-11-28 12:56:40 +0200367
Amir Vadai71d0ed72017-02-07 09:56:07 +0200368 if (!offset_valid(skb, hoffset + offset)) {
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400369 pr_info("tc action pedit offset %d out of bounds\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200370 hoffset + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 goto bad;
372 }
373
Roman Mashak80f0f572018-06-27 13:33:30 -0400374 ptr = skb_header_pointer(skb, hoffset + offset,
Roman Mashak6ff75862018-06-27 13:33:33 -0400375 sizeof(hdata), &hdata);
Changli Gaodb2c2412010-06-02 04:55:02 +0000376 if (!ptr)
377 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* just do it, baby */
Amir Vadai853a14b2017-02-07 09:56:08 +0200379 switch (cmd) {
380 case TCA_PEDIT_KEY_EX_CMD_SET:
381 val = tkey->val;
382 break;
383 case TCA_PEDIT_KEY_EX_CMD_ADD:
384 val = (*ptr + tkey->val) & ~tkey->mask;
385 break;
386 default:
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400387 pr_info("tc action pedit bad command (%d)\n",
Amir Vadai853a14b2017-02-07 09:56:08 +0200388 cmd);
389 goto bad;
390 }
391
392 *ptr = ((*ptr & tkey->mask) ^ val);
Roman Mashak544377c2018-06-27 13:33:32 -0400393 if (ptr == &hdata)
Amir Vadai71d0ed72017-02-07 09:56:07 +0200394 skb_store_bits(skb, hoffset + offset, ptr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 goto done;
Roman Mashak80f0f572018-06-27 13:33:30 -0400398 } else {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000399 WARN(1, "pedit BUG: index %d\n", p->tcf_index);
Roman Mashak80f0f572018-06-27 13:33:30 -0400400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402bad:
David S. Millere9ce1cd2006-08-21 23:54:55 -0700403 p->tcf_qstats.overlimits++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404done:
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000405 bstats_update(&p->tcf_bstats, skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700406 spin_unlock(&p->tcf_lock);
407 return p->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Po Liu4b61d3e2020-06-19 14:01:07 +0800410static void tcf_pedit_stats_update(struct tc_action *a, u64 bytes, u64 packets,
411 u64 drops, u64 lastuse, bool hw)
Petr Machatad4d9d9c2020-03-26 22:45:56 +0200412{
413 struct tcf_pedit *d = to_pedit(a);
414 struct tcf_t *tm = &d->tcf_tm;
415
Po Liu4b61d3e2020-06-19 14:01:07 +0800416 tcf_action_update_stats(a, bytes, packets, drops, hw);
Petr Machatad4d9d9c2020-03-26 22:45:56 +0200417 tm->lastuse = max_t(u64, tm->lastuse, lastuse);
418}
419
David S. Millere9ce1cd2006-08-21 23:54:55 -0700420static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,
421 int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700423 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700424 struct tcf_pedit *p = to_pedit(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct tc_pedit *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct tcf_t t;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900427 int s;
428
Gustavo A. R. Silva8fe57562019-02-07 19:02:52 -0600429 s = struct_size(opt, keys, p->tcfp_nkeys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 /* netlink spinlocks held above us - must use ATOMIC */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700432 opt = kzalloc(s, GFP_ATOMIC);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700433 if (unlikely(!opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300436 spin_lock_bh(&p->tcf_lock);
Gustavo A. R. Silvaa0d716d82020-07-29 22:17:00 -0500437 memcpy(opt->keys, p->tcfp_keys, flex_array_size(opt, keys, p->tcfp_nkeys));
David S. Millere9ce1cd2006-08-21 23:54:55 -0700438 opt->index = p->tcf_index;
439 opt->nkeys = p->tcfp_nkeys;
440 opt->flags = p->tcfp_flags;
441 opt->action = p->tcf_action;
Vlad Buslov036bb442018-07-05 17:24:24 +0300442 opt->refcnt = refcount_read(&p->tcf_refcnt) - ref;
443 opt->bindcnt = atomic_read(&p->tcf_bindcnt) - bind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Amir Vadai71d0ed72017-02-07 09:56:07 +0200445 if (p->tcfp_keys_ex) {
Davide Caratti85eb9af2018-08-27 22:56:22 +0200446 if (tcf_pedit_key_ex_dump(skb,
447 p->tcfp_keys_ex,
448 p->tcfp_nkeys))
449 goto nla_put_failure;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200450
451 if (nla_put(skb, TCA_PEDIT_PARMS_EX, s, opt))
452 goto nla_put_failure;
453 } else {
454 if (nla_put(skb, TCA_PEDIT_PARMS, s, opt))
455 goto nla_put_failure;
456 }
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400457
458 tcf_tm_dump(&t, &p->tcf_tm);
Nicolas Dichtel9854518e2016-04-26 10:06:18 +0200459 if (nla_put_64bit(skb, TCA_PEDIT_TM, sizeof(t), &t, TCA_PEDIT_PAD))
David S. Miller1b34ec42012-03-29 05:11:39 -0400460 goto nla_put_failure;
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300461 spin_unlock_bh(&p->tcf_lock);
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400462
Patrick McHardy541673c82006-01-08 22:17:27 -0800463 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return skb->len;
465
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800466nla_put_failure:
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300467 spin_unlock_bh(&p->tcf_lock);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700468 nlmsg_trim(skb, b);
Patrick McHardy541673c82006-01-08 22:17:27 -0800469 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return -1;
471}
472
WANG Congddf97cc2016-02-22 15:57:53 -0800473static int tcf_pedit_walker(struct net *net, struct sk_buff *skb,
474 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500475 const struct tc_action_ops *ops,
476 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800477{
478 struct tc_action_net *tn = net_generic(net, pedit_net_id);
479
Alexander Aringb3620142018-02-15 10:54:59 -0500480 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
WANG Congddf97cc2016-02-22 15:57:53 -0800481}
482
Cong Wangf061b482018-08-29 10:15:35 -0700483static int tcf_pedit_search(struct net *net, struct tc_action **a, u32 index)
WANG Congddf97cc2016-02-22 15:57:53 -0800484{
485 struct tc_action_net *tn = net_generic(net, pedit_net_id);
486
Chris Mi65a206c2017-08-30 02:31:59 -0400487 return tcf_idr_search(tn, a, index);
WANG Congddf97cc2016-02-22 15:57:53 -0800488}
489
Baowen Zhengc54e1d92021-12-17 19:16:21 +0100490static int tcf_pedit_offload_act_setup(struct tc_action *act, void *entry_data,
491 u32 *index_inc, bool bind)
492{
493 if (bind) {
494 struct flow_action_entry *entry = entry_data;
495 int k;
496
497 for (k = 0; k < tcf_pedit_nkeys(act); k++) {
498 switch (tcf_pedit_cmd(act, k)) {
499 case TCA_PEDIT_KEY_EX_CMD_SET:
500 entry->id = FLOW_ACTION_MANGLE;
501 break;
502 case TCA_PEDIT_KEY_EX_CMD_ADD:
503 entry->id = FLOW_ACTION_ADD;
504 break;
505 default:
506 return -EOPNOTSUPP;
507 }
508 entry->mangle.htype = tcf_pedit_htype(act, k);
509 entry->mangle.mask = tcf_pedit_mask(act, k);
510 entry->mangle.val = tcf_pedit_val(act, k);
511 entry->mangle.offset = tcf_pedit_offset(act, k);
512 entry->hw_stats = tc_act_hw_stats(act->hw_stats);
513 entry++;
514 }
515 *index_inc = k;
516 } else {
517 return -EOPNOTSUPP;
518 }
519
520 return 0;
521}
522
David S. Millere9ce1cd2006-08-21 23:54:55 -0700523static struct tc_action_ops act_pedit_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 .kind = "pedit",
Eli Coheneddd2cf2019-02-10 14:25:00 +0200525 .id = TCA_ID_PEDIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 .owner = THIS_MODULE,
Jamal Hadi Salim6a2b4012018-08-12 09:34:55 -0400527 .act = tcf_pedit_act,
Petr Machatad4d9d9c2020-03-26 22:45:56 +0200528 .stats_update = tcf_pedit_stats_update,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 .dump = tcf_pedit_dump,
530 .cleanup = tcf_pedit_cleanup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 .init = tcf_pedit_init,
WANG Congddf97cc2016-02-22 15:57:53 -0800532 .walk = tcf_pedit_walker,
533 .lookup = tcf_pedit_search,
Baowen Zhengc54e1d92021-12-17 19:16:21 +0100534 .offload_act_setup = tcf_pedit_offload_act_setup,
WANG Conga85a9702016-07-25 16:09:41 -0700535 .size = sizeof(struct tcf_pedit),
WANG Congddf97cc2016-02-22 15:57:53 -0800536};
537
538static __net_init int pedit_init_net(struct net *net)
539{
540 struct tc_action_net *tn = net_generic(net, pedit_net_id);
541
Cong Wang981471b2019-08-25 10:01:32 -0700542 return tc_action_net_init(net, tn, &act_pedit_ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800543}
544
Cong Wang039af9c2017-12-11 15:35:03 -0800545static void __net_exit pedit_exit_net(struct list_head *net_list)
WANG Congddf97cc2016-02-22 15:57:53 -0800546{
Cong Wang039af9c2017-12-11 15:35:03 -0800547 tc_action_net_exit(net_list, pedit_net_id);
WANG Congddf97cc2016-02-22 15:57:53 -0800548}
549
550static struct pernet_operations pedit_net_ops = {
551 .init = pedit_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800552 .exit_batch = pedit_exit_net,
WANG Congddf97cc2016-02-22 15:57:53 -0800553 .id = &pedit_net_id,
554 .size = sizeof(struct tc_action_net),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555};
556
557MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
558MODULE_DESCRIPTION("Generic Packet Editor actions");
559MODULE_LICENSE("GPL");
560
David S. Millere9ce1cd2006-08-21 23:54:55 -0700561static int __init pedit_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
WANG Congddf97cc2016-02-22 15:57:53 -0800563 return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
David S. Millere9ce1cd2006-08-21 23:54:55 -0700566static void __exit pedit_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
WANG Congddf97cc2016-02-22 15:57:53 -0800568 tcf_unregister_action(&act_pedit_ops, &pedit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571module_init(pedit_init_module);
572module_exit(pedit_cleanup_module);