blob: 10703407001972a8cccc297a8c0d85e72edfed1c [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,
Vlad Buslov789871b2018-07-05 17:24:25 +0300135 int ovr, int bind, bool rtnl_held,
136 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
WANG Congddf97cc2016-02-22 15:57:53 -0800138 struct tc_action_net *tn = net_generic(net, pedit_net_id);
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800139 struct nlattr *tb[TCA_PEDIT_MAX + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 struct tc_pedit_key *keys = NULL;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200141 struct tcf_pedit_key_ex *keys_ex;
Roman Mashak80f0f572018-06-27 13:33:30 -0400142 struct tc_pedit *parm;
143 struct nlattr *pattr;
144 struct tcf_pedit *p;
145 int ret = 0, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 int ksize;
147
Roman Mashak9868c0b2018-07-02 00:02:02 -0400148 if (!nla) {
149 NL_SET_ERR_MSG_MOD(extack, "Pedit requires attributes to be passed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return -EINVAL;
Roman Mashak9868c0b2018-07-02 00:02:02 -0400151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Johannes Bergfceb6432017-04-12 14:34:07 +0200153 err = nla_parse_nested(tb, TCA_PEDIT_MAX, nla, pedit_policy, NULL);
Patrick McHardycee63722008-01-23 20:33:32 -0800154 if (err < 0)
155 return err;
156
Amir Vadai71d0ed72017-02-07 09:56:07 +0200157 pattr = tb[TCA_PEDIT_PARMS];
158 if (!pattr)
159 pattr = tb[TCA_PEDIT_PARMS_EX];
Roman Mashak9868c0b2018-07-02 00:02:02 -0400160 if (!pattr) {
161 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 -0700162 return -EINVAL;
Roman Mashak9868c0b2018-07-02 00:02:02 -0400163 }
Amir Vadai71d0ed72017-02-07 09:56:07 +0200164
165 parm = nla_data(pattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 ksize = parm->nkeys * sizeof(struct tc_pedit_key);
Roman Mashak9868c0b2018-07-02 00:02:02 -0400167 if (nla_len(pattr) < sizeof(*parm) + ksize) {
168 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 -0700169 return -EINVAL;
Roman Mashak9868c0b2018-07-02 00:02:02 -0400170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Amir Vadai71d0ed72017-02-07 09:56:07 +0200172 keys_ex = tcf_pedit_keys_ex_parse(tb[TCA_PEDIT_KEYS_EX], parm->nkeys);
173 if (IS_ERR(keys_ex))
174 return PTR_ERR(keys_ex);
175
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300176 err = tcf_idr_check_alloc(tn, &parm->index, a, bind);
177 if (!err) {
Roman Mashak9868c0b2018-07-02 00:02:02 -0400178 if (!parm->nkeys) {
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300179 tcf_idr_cleanup(tn, parm->index);
Roman Mashak9868c0b2018-07-02 00:02:02 -0400180 NL_SET_ERR_MSG_MOD(extack, "Pedit requires keys to be passed");
Wei Yongjun30e99ed2018-07-03 13:45:12 +0000181 ret = -EINVAL;
182 goto out_free;
Roman Mashak9868c0b2018-07-02 00:02:02 -0400183 }
Chris Mi65a206c2017-08-30 02:31:59 -0400184 ret = tcf_idr_create(tn, parm->index, est, a,
185 &act_pedit_ops, bind, false);
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300186 if (ret) {
187 tcf_idr_cleanup(tn, parm->index);
Wei Yongjun30e99ed2018-07-03 13:45:12 +0000188 goto out_free;
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 ret = ACT_P_CREATED;
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300191 } else if (err > 0) {
Jamal Hadi Salim1a293212013-12-23 08:02:11 -0500192 if (bind)
Wei Yongjun30e99ed2018-07-03 13:45:12 +0000193 goto out_free;
Wei Yongjun30e99ed2018-07-03 13:45:12 +0000194 if (!ovr) {
195 ret = -EEXIST;
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300196 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
Vlad Buslov0190c1d2018-07-05 17:24:32 +0300198 } else {
199 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300202 p = to_pedit(*a);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700203 spin_lock_bh(&p->tcf_lock);
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300204
205 if (ret == ACT_P_CREATED ||
206 (p->tcfp_nkeys && p->tcfp_nkeys != parm->nkeys)) {
207 keys = kmalloc(ksize, GFP_ATOMIC);
208 if (!keys) {
209 spin_unlock_bh(&p->tcf_lock);
210 ret = -ENOMEM;
211 goto out_release;
212 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700213 kfree(p->tcfp_keys);
214 p->tcfp_keys = keys;
215 p->tcfp_nkeys = parm->nkeys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
David S. Millere9ce1cd2006-08-21 23:54:55 -0700217 memcpy(p->tcfp_keys, parm->keys, ksize);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200218
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300219 p->tcfp_flags = parm->flags;
220 p->tcf_action = parm->action;
221
Amir Vadai71d0ed72017-02-07 09:56:07 +0200222 kfree(p->tcfp_keys_ex);
223 p->tcfp_keys_ex = keys_ex;
224
David S. Millere9ce1cd2006-08-21 23:54:55 -0700225 spin_unlock_bh(&p->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (ret == ACT_P_CREATED)
Chris Mi65a206c2017-08-30 02:31:59 -0400227 tcf_idr_insert(tn, *a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return ret;
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300229
230out_release:
231 tcf_idr_release(*a, bind);
Wei Yongjun30e99ed2018-07-03 13:45:12 +0000232out_free:
233 kfree(keys_ex);
234 return ret;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Cong Wang9a63b252017-12-05 12:53:07 -0800238static void tcf_pedit_cleanup(struct tc_action *a)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
WANG Conga85a9702016-07-25 16:09:41 -0700240 struct tcf_pedit *p = to_pedit(a);
WANG Conga5b5c952014-02-11 17:07:32 -0800241 struct tc_pedit_key *keys = p->tcfp_keys;
Roman Mashak80f0f572018-06-27 13:33:30 -0400242
WANG Conga5b5c952014-02-11 17:07:32 -0800243 kfree(keys);
Amir Vadai71d0ed72017-02-07 09:56:07 +0200244 kfree(p->tcfp_keys_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Amir Vadai95c20272016-11-28 12:56:40 +0200247static bool offset_valid(struct sk_buff *skb, int offset)
248{
249 if (offset > 0 && offset > skb->len)
250 return false;
251
252 if (offset < 0 && -offset > skb_headroom(skb))
253 return false;
254
255 return true;
256}
257
Amir Vadai71d0ed72017-02-07 09:56:07 +0200258static int pedit_skb_hdr_offset(struct sk_buff *skb,
259 enum pedit_header_type htype, int *hoffset)
260{
261 int ret = -EINVAL;
262
263 switch (htype) {
264 case TCA_PEDIT_KEY_EX_HDR_TYPE_ETH:
265 if (skb_mac_header_was_set(skb)) {
266 *hoffset = skb_mac_offset(skb);
267 ret = 0;
268 }
269 break;
270 case TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK:
271 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP4:
272 case TCA_PEDIT_KEY_EX_HDR_TYPE_IP6:
273 *hoffset = skb_network_offset(skb);
274 ret = 0;
275 break;
276 case TCA_PEDIT_KEY_EX_HDR_TYPE_TCP:
277 case TCA_PEDIT_KEY_EX_HDR_TYPE_UDP:
278 if (skb_transport_header_was_set(skb)) {
279 *hoffset = skb_transport_offset(skb);
280 ret = 0;
281 }
282 break;
283 default:
284 ret = -EINVAL;
285 break;
YueHaibing0a808482018-07-28 18:29:01 +0800286 }
Amir Vadai71d0ed72017-02-07 09:56:07 +0200287
288 return ret;
289}
290
Jamal Hadi Salim6a2b4012018-08-12 09:34:55 -0400291static int tcf_pedit_act(struct sk_buff *skb, const struct tc_action *a,
292 struct tcf_result *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
WANG Conga85a9702016-07-25 16:09:41 -0700294 struct tcf_pedit *p = to_pedit(a);
Florian Westphal4749c3ef2015-04-30 12:12:00 +0200295 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000297 if (skb_unclone(skb, GFP_ATOMIC))
Eric Dumazetcc7ec452011-01-19 19:26:56 +0000298 return p->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
David S. Millere9ce1cd2006-08-21 23:54:55 -0700300 spin_lock(&p->tcf_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Jamal Hadi Salim9c4a4e42016-06-06 06:32:53 -0400302 tcf_lastuse_update(&p->tcf_tm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
David S. Millere9ce1cd2006-08-21 23:54:55 -0700304 if (p->tcfp_nkeys > 0) {
305 struct tc_pedit_key *tkey = p->tcfp_keys;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200306 struct tcf_pedit_key_ex *tkey_ex = p->tcfp_keys_ex;
Roman Mashak80f0f572018-06-27 13:33:30 -0400307 enum pedit_header_type htype =
308 TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK;
Amir Vadai853a14b2017-02-07 09:56:08 +0200309 enum pedit_cmd cmd = TCA_PEDIT_KEY_EX_CMD_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
David S. Millere9ce1cd2006-08-21 23:54:55 -0700311 for (i = p->tcfp_nkeys; i > 0; i--, tkey++) {
Roman Mashak544377c2018-06-27 13:33:32 -0400312 u32 *ptr, hdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 int offset = tkey->off;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200314 int hoffset;
Amir Vadai853a14b2017-02-07 09:56:08 +0200315 u32 val;
Amir Vadai71d0ed72017-02-07 09:56:07 +0200316 int rc;
317
318 if (tkey_ex) {
319 htype = tkey_ex->htype;
Amir Vadai853a14b2017-02-07 09:56:08 +0200320 cmd = tkey_ex->cmd;
321
Amir Vadai71d0ed72017-02-07 09:56:07 +0200322 tkey_ex++;
323 }
324
325 rc = pedit_skb_hdr_offset(skb, htype, &hoffset);
326 if (rc) {
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400327 pr_info("tc action pedit bad header type specified (0x%x)\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200328 htype);
329 goto bad;
330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 if (tkey->offmask) {
Roman Mashak43052742018-06-27 13:33:35 -0400333 u8 *d, _d;
Changli Gaodb2c2412010-06-02 04:55:02 +0000334
Amir Vadai71d0ed72017-02-07 09:56:07 +0200335 if (!offset_valid(skb, hoffset + tkey->at)) {
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400336 pr_info("tc action pedit 'at' offset %d out of bounds\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200337 hoffset + tkey->at);
Amir Vadai95c20272016-11-28 12:56:40 +0200338 goto bad;
339 }
Roman Mashak80f0f572018-06-27 13:33:30 -0400340 d = skb_header_pointer(skb, hoffset + tkey->at,
Roman Mashak6ff75862018-06-27 13:33:33 -0400341 sizeof(_d), &_d);
Changli Gaodb2c2412010-06-02 04:55:02 +0000342 if (!d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 goto bad;
Changli Gaodb2c2412010-06-02 04:55:02 +0000344 offset += (*d & tkey->offmask) >> tkey->shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
347 if (offset % 4) {
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400348 pr_info("tc action pedit offset must be on 32 bit boundaries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 goto bad;
350 }
Amir Vadai95c20272016-11-28 12:56:40 +0200351
Amir Vadai71d0ed72017-02-07 09:56:07 +0200352 if (!offset_valid(skb, hoffset + offset)) {
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400353 pr_info("tc action pedit offset %d out of bounds\n",
Amir Vadai71d0ed72017-02-07 09:56:07 +0200354 hoffset + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 goto bad;
356 }
357
Roman Mashak80f0f572018-06-27 13:33:30 -0400358 ptr = skb_header_pointer(skb, hoffset + offset,
Roman Mashak6ff75862018-06-27 13:33:33 -0400359 sizeof(hdata), &hdata);
Changli Gaodb2c2412010-06-02 04:55:02 +0000360 if (!ptr)
361 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /* just do it, baby */
Amir Vadai853a14b2017-02-07 09:56:08 +0200363 switch (cmd) {
364 case TCA_PEDIT_KEY_EX_CMD_SET:
365 val = tkey->val;
366 break;
367 case TCA_PEDIT_KEY_EX_CMD_ADD:
368 val = (*ptr + tkey->val) & ~tkey->mask;
369 break;
370 default:
Roman Mashak95b0d2d2018-06-27 13:33:34 -0400371 pr_info("tc action pedit bad command (%d)\n",
Amir Vadai853a14b2017-02-07 09:56:08 +0200372 cmd);
373 goto bad;
374 }
375
376 *ptr = ((*ptr & tkey->mask) ^ val);
Roman Mashak544377c2018-06-27 13:33:32 -0400377 if (ptr == &hdata)
Amir Vadai71d0ed72017-02-07 09:56:07 +0200378 skb_store_bits(skb, hoffset + offset, ptr, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 goto done;
Roman Mashak80f0f572018-06-27 13:33:30 -0400382 } else {
stephen hemminger6ff9c362010-05-12 06:37:05 +0000383 WARN(1, "pedit BUG: index %d\n", p->tcf_index);
Roman Mashak80f0f572018-06-27 13:33:30 -0400384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386bad:
David S. Millere9ce1cd2006-08-21 23:54:55 -0700387 p->tcf_qstats.overlimits++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388done:
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000389 bstats_update(&p->tcf_bstats, skb);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700390 spin_unlock(&p->tcf_lock);
391 return p->tcf_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
David S. Millere9ce1cd2006-08-21 23:54:55 -0700394static int tcf_pedit_dump(struct sk_buff *skb, struct tc_action *a,
395 int bind, int ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700397 unsigned char *b = skb_tail_pointer(skb);
WANG Conga85a9702016-07-25 16:09:41 -0700398 struct tcf_pedit *p = to_pedit(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct tc_pedit *opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct tcf_t t;
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900401 int s;
402
David S. Millere9ce1cd2006-08-21 23:54:55 -0700403 s = sizeof(*opt) + p->tcfp_nkeys * sizeof(struct tc_pedit_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /* netlink spinlocks held above us - must use ATOMIC */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700406 opt = kzalloc(s, GFP_ATOMIC);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700407 if (unlikely(!opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300410 spin_lock_bh(&p->tcf_lock);
David S. Millere9ce1cd2006-08-21 23:54:55 -0700411 memcpy(opt->keys, p->tcfp_keys,
412 p->tcfp_nkeys * sizeof(struct tc_pedit_key));
413 opt->index = p->tcf_index;
414 opt->nkeys = p->tcfp_nkeys;
415 opt->flags = p->tcfp_flags;
416 opt->action = p->tcf_action;
Vlad Buslov036bb442018-07-05 17:24:24 +0300417 opt->refcnt = refcount_read(&p->tcf_refcnt) - ref;
418 opt->bindcnt = atomic_read(&p->tcf_bindcnt) - bind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Amir Vadai71d0ed72017-02-07 09:56:07 +0200420 if (p->tcfp_keys_ex) {
421 tcf_pedit_key_ex_dump(skb, p->tcfp_keys_ex, p->tcfp_nkeys);
422
423 if (nla_put(skb, TCA_PEDIT_PARMS_EX, s, opt))
424 goto nla_put_failure;
425 } else {
426 if (nla_put(skb, TCA_PEDIT_PARMS, s, opt))
427 goto nla_put_failure;
428 }
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400429
430 tcf_tm_dump(&t, &p->tcf_tm);
Nicolas Dichtel9854518e2016-04-26 10:06:18 +0200431 if (nla_put_64bit(skb, TCA_PEDIT_TM, sizeof(t), &t, TCA_PEDIT_PAD))
David S. Miller1b34ec42012-03-29 05:11:39 -0400432 goto nla_put_failure;
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300433 spin_unlock_bh(&p->tcf_lock);
Jamal Hadi Salim48d8ee12016-06-06 06:32:55 -0400434
Patrick McHardy541673c82006-01-08 22:17:27 -0800435 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return skb->len;
437
Patrick McHardy7ba699c2008-01-22 22:11:50 -0800438nla_put_failure:
Vlad Buslov67b0c1a2018-08-10 20:51:46 +0300439 spin_unlock_bh(&p->tcf_lock);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -0700440 nlmsg_trim(skb, b);
Patrick McHardy541673c82006-01-08 22:17:27 -0800441 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return -1;
443}
444
WANG Congddf97cc2016-02-22 15:57:53 -0800445static int tcf_pedit_walker(struct net *net, struct sk_buff *skb,
446 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500447 const struct tc_action_ops *ops,
448 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800449{
450 struct tc_action_net *tn = net_generic(net, pedit_net_id);
451
Alexander Aringb3620142018-02-15 10:54:59 -0500452 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
WANG Congddf97cc2016-02-22 15:57:53 -0800453}
454
Alexander Aring331a9292018-02-15 10:54:57 -0500455static int tcf_pedit_search(struct net *net, struct tc_action **a, u32 index,
456 struct netlink_ext_ack *extack)
WANG Congddf97cc2016-02-22 15:57:53 -0800457{
458 struct tc_action_net *tn = net_generic(net, pedit_net_id);
459
Chris Mi65a206c2017-08-30 02:31:59 -0400460 return tcf_idr_search(tn, a, index);
WANG Congddf97cc2016-02-22 15:57:53 -0800461}
462
David S. Millere9ce1cd2006-08-21 23:54:55 -0700463static struct tc_action_ops act_pedit_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 .kind = "pedit",
465 .type = TCA_ACT_PEDIT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 .owner = THIS_MODULE,
Jamal Hadi Salim6a2b4012018-08-12 09:34:55 -0400467 .act = tcf_pedit_act,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 .dump = tcf_pedit_dump,
469 .cleanup = tcf_pedit_cleanup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 .init = tcf_pedit_init,
WANG Congddf97cc2016-02-22 15:57:53 -0800471 .walk = tcf_pedit_walker,
472 .lookup = tcf_pedit_search,
WANG Conga85a9702016-07-25 16:09:41 -0700473 .size = sizeof(struct tcf_pedit),
WANG Congddf97cc2016-02-22 15:57:53 -0800474};
475
476static __net_init int pedit_init_net(struct net *net)
477{
478 struct tc_action_net *tn = net_generic(net, pedit_net_id);
479
Cong Wangc7e460c2017-11-06 13:47:18 -0800480 return tc_action_net_init(tn, &act_pedit_ops);
WANG Congddf97cc2016-02-22 15:57:53 -0800481}
482
Cong Wang039af9c2017-12-11 15:35:03 -0800483static void __net_exit pedit_exit_net(struct list_head *net_list)
WANG Congddf97cc2016-02-22 15:57:53 -0800484{
Cong Wang039af9c2017-12-11 15:35:03 -0800485 tc_action_net_exit(net_list, pedit_net_id);
WANG Congddf97cc2016-02-22 15:57:53 -0800486}
487
488static struct pernet_operations pedit_net_ops = {
489 .init = pedit_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800490 .exit_batch = pedit_exit_net,
WANG Congddf97cc2016-02-22 15:57:53 -0800491 .id = &pedit_net_id,
492 .size = sizeof(struct tc_action_net),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493};
494
495MODULE_AUTHOR("Jamal Hadi Salim(2002-4)");
496MODULE_DESCRIPTION("Generic Packet Editor actions");
497MODULE_LICENSE("GPL");
498
David S. Millere9ce1cd2006-08-21 23:54:55 -0700499static int __init pedit_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
WANG Congddf97cc2016-02-22 15:57:53 -0800501 return tcf_register_action(&act_pedit_ops, &pedit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
David S. Millere9ce1cd2006-08-21 23:54:55 -0700504static void __exit pedit_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
WANG Congddf97cc2016-02-22 15:57:53 -0800506 tcf_unregister_action(&act_pedit_ops, &pedit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
509module_init(pedit_init_module);
510module_exit(pedit_cleanup_module);