blob: 0f82d50ea23245be1ce34fcce1cdb4a048c1af17 [file] [log] [blame]
Yotam Gigi5c5670f2017-01-23 11:07:09 +01001/*
2 * net/sched/act_sample.c - Packet sampling tc action
3 * Copyright (c) 2017 Yotam Gigi <yotamg@mellanox.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/types.h>
11#include <linux/kernel.h>
12#include <linux/string.h>
13#include <linux/errno.h>
14#include <linux/skbuff.h>
15#include <linux/rtnetlink.h>
16#include <linux/module.h>
17#include <linux/init.h>
18#include <linux/gfp.h>
19#include <net/net_namespace.h>
20#include <net/netlink.h>
21#include <net/pkt_sched.h>
22#include <linux/tc_act/tc_sample.h>
23#include <net/tc_act/tc_sample.h>
24#include <net/psample.h>
Davide Carattie8c87c6432019-03-20 15:00:09 +010025#include <net/pkt_cls.h>
Yotam Gigi5c5670f2017-01-23 11:07:09 +010026
27#include <linux/if_arp.h>
28
Yotam Gigi5c5670f2017-01-23 11:07:09 +010029static unsigned int sample_net_id;
30static struct tc_action_ops act_sample_ops;
31
32static const struct nla_policy sample_policy[TCA_SAMPLE_MAX + 1] = {
33 [TCA_SAMPLE_PARMS] = { .len = sizeof(struct tc_sample) },
34 [TCA_SAMPLE_RATE] = { .type = NLA_U32 },
35 [TCA_SAMPLE_TRUNC_SIZE] = { .type = NLA_U32 },
36 [TCA_SAMPLE_PSAMPLE_GROUP] = { .type = NLA_U32 },
37};
38
39static int tcf_sample_init(struct net *net, struct nlattr *nla,
40 struct nlattr *est, struct tc_action **a, int ovr,
Davide Caratti85d09662019-03-20 14:59:59 +010041 int bind, bool rtnl_held, struct tcf_proto *tp,
Vlad Buslov789871b2018-07-05 17:24:25 +030042 struct netlink_ext_ack *extack)
Yotam Gigi5c5670f2017-01-23 11:07:09 +010043{
44 struct tc_action_net *tn = net_generic(net, sample_net_id);
45 struct nlattr *tb[TCA_SAMPLE_MAX + 1];
46 struct psample_group *psample_group;
Davide Carattie8c87c6432019-03-20 15:00:09 +010047 struct tcf_chain *goto_ch = NULL;
Davide Carattifae27082019-04-04 12:31:35 +020048 u32 psample_group_num, rate;
Yotam Gigi5c5670f2017-01-23 11:07:09 +010049 struct tc_sample *parm;
50 struct tcf_sample *s;
51 bool exists = false;
Vlad Buslov0190c1d2018-07-05 17:24:32 +030052 int ret, err;
Yotam Gigi5c5670f2017-01-23 11:07:09 +010053
54 if (!nla)
55 return -EINVAL;
Johannes Bergfceb6432017-04-12 14:34:07 +020056 ret = nla_parse_nested(tb, TCA_SAMPLE_MAX, nla, sample_policy, NULL);
Yotam Gigi5c5670f2017-01-23 11:07:09 +010057 if (ret < 0)
58 return ret;
59 if (!tb[TCA_SAMPLE_PARMS] || !tb[TCA_SAMPLE_RATE] ||
60 !tb[TCA_SAMPLE_PSAMPLE_GROUP])
61 return -EINVAL;
62
63 parm = nla_data(tb[TCA_SAMPLE_PARMS]);
64
Vlad Buslov0190c1d2018-07-05 17:24:32 +030065 err = tcf_idr_check_alloc(tn, &parm->index, a, bind);
66 if (err < 0)
67 return err;
68 exists = err;
Yotam Gigi5c5670f2017-01-23 11:07:09 +010069 if (exists && bind)
70 return 0;
71
72 if (!exists) {
Chris Mi65a206c2017-08-30 02:31:59 -040073 ret = tcf_idr_create(tn, parm->index, est, a,
Davide Caratti34043d22018-09-14 12:03:18 +020074 &act_sample_ops, bind, true);
Vlad Buslov0190c1d2018-07-05 17:24:32 +030075 if (ret) {
76 tcf_idr_cleanup(tn, parm->index);
Yotam Gigi5c5670f2017-01-23 11:07:09 +010077 return ret;
Vlad Buslov0190c1d2018-07-05 17:24:32 +030078 }
Yotam Gigi5c5670f2017-01-23 11:07:09 +010079 ret = ACT_P_CREATED;
Vlad Buslov4e8ddd72018-07-05 17:24:30 +030080 } else if (!ovr) {
Chris Mi65a206c2017-08-30 02:31:59 -040081 tcf_idr_release(*a, bind);
Vlad Buslov4e8ddd72018-07-05 17:24:30 +030082 return -EEXIST;
Yotam Gigi5c5670f2017-01-23 11:07:09 +010083 }
Davide Carattie8c87c6432019-03-20 15:00:09 +010084 err = tcf_action_check_ctrlact(parm->action, tp, &goto_ch, extack);
85 if (err < 0)
86 goto release_idr;
Yotam Gigi5c5670f2017-01-23 11:07:09 +010087
Davide Carattifae27082019-04-04 12:31:35 +020088 rate = nla_get_u32(tb[TCA_SAMPLE_RATE]);
89 if (!rate) {
90 NL_SET_ERR_MSG(extack, "invalid sample rate");
91 err = -EINVAL;
92 goto put_chain;
93 }
Vlad Buslov653cd282018-08-14 21:46:16 +030094 psample_group_num = nla_get_u32(tb[TCA_SAMPLE_PSAMPLE_GROUP]);
95 psample_group = psample_group_get(net, psample_group_num);
Yotam Gigicadb9c92017-01-31 11:33:53 +020096 if (!psample_group) {
Davide Carattie8c87c6432019-03-20 15:00:09 +010097 err = -ENOMEM;
98 goto put_chain;
Yotam Gigicadb9c92017-01-31 11:33:53 +020099 }
Vlad Buslov653cd282018-08-14 21:46:16 +0300100
101 s = to_sample(*a);
102
103 spin_lock_bh(&s->tcf_lock);
Davide Carattie8c87c6432019-03-20 15:00:09 +0100104 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
Davide Carattifae27082019-04-04 12:31:35 +0200105 s->rate = rate;
Vlad Buslov653cd282018-08-14 21:46:16 +0300106 s->psample_group_num = psample_group_num;
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100107 RCU_INIT_POINTER(s->psample_group, psample_group);
108
109 if (tb[TCA_SAMPLE_TRUNC_SIZE]) {
110 s->truncate = true;
111 s->trunc_size = nla_get_u32(tb[TCA_SAMPLE_TRUNC_SIZE]);
112 }
Vlad Buslov653cd282018-08-14 21:46:16 +0300113 spin_unlock_bh(&s->tcf_lock);
Davide Carattie8c87c6432019-03-20 15:00:09 +0100114 if (goto_ch)
115 tcf_chain_put_by_act(goto_ch);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100116
117 if (ret == ACT_P_CREATED)
Chris Mi65a206c2017-08-30 02:31:59 -0400118 tcf_idr_insert(tn, *a);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100119 return ret;
Davide Carattie8c87c6432019-03-20 15:00:09 +0100120put_chain:
121 if (goto_ch)
122 tcf_chain_put_by_act(goto_ch);
123release_idr:
124 tcf_idr_release(*a, bind);
125 return err;
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100126}
127
Cong Wang9a63b252017-12-05 12:53:07 -0800128static void tcf_sample_cleanup(struct tc_action *a)
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100129{
130 struct tcf_sample *s = to_sample(a);
Cong Wang90a6ec82017-11-29 16:07:51 -0800131 struct psample_group *psample_group;
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100132
Vlad Buslovd7728492018-08-10 20:51:47 +0300133 /* last reference to action, no need to lock */
134 psample_group = rcu_dereference_protected(s->psample_group, 1);
Cong Wang90a6ec82017-11-29 16:07:51 -0800135 RCU_INIT_POINTER(s->psample_group, NULL);
Davide Caratti1f110e72018-03-16 00:00:56 +0100136 if (psample_group)
137 psample_group_put(psample_group);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100138}
139
140static bool tcf_sample_dev_ok_push(struct net_device *dev)
141{
142 switch (dev->type) {
143 case ARPHRD_TUNNEL:
144 case ARPHRD_TUNNEL6:
145 case ARPHRD_SIT:
146 case ARPHRD_IPGRE:
147 case ARPHRD_VOID:
148 case ARPHRD_NONE:
149 return false;
150 default:
151 return true;
152 }
153}
154
155static int tcf_sample_act(struct sk_buff *skb, const struct tc_action *a,
156 struct tcf_result *res)
157{
158 struct tcf_sample *s = to_sample(a);
159 struct psample_group *psample_group;
160 int retval;
161 int size;
162 int iif;
163 int oif;
164
165 tcf_lastuse_update(&s->tcf_tm);
166 bstats_cpu_update(this_cpu_ptr(s->common.cpu_bstats), skb);
167 retval = READ_ONCE(s->tcf_action);
168
Paolo Abeni7fd4b282018-07-30 14:30:43 +0200169 psample_group = rcu_dereference_bh(s->psample_group);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100170
171 /* randomly sample packets according to rate */
172 if (psample_group && (prandom_u32() % s->rate == 0)) {
173 if (!skb_at_tc_ingress(skb)) {
174 iif = skb->skb_iif;
175 oif = skb->dev->ifindex;
176 } else {
177 iif = skb->dev->ifindex;
178 oif = 0;
179 }
180
181 /* on ingress, the mac header gets popped, so push it back */
182 if (skb_at_tc_ingress(skb) && tcf_sample_dev_ok_push(skb->dev))
183 skb_push(skb, skb->mac_len);
184
185 size = s->truncate ? s->trunc_size : skb->len;
186 psample_sample_packet(psample_group, skb, size, iif, oif,
187 s->rate);
188
189 if (skb_at_tc_ingress(skb) && tcf_sample_dev_ok_push(skb->dev))
190 skb_pull(skb, skb->mac_len);
191 }
192
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100193 return retval;
194}
195
196static int tcf_sample_dump(struct sk_buff *skb, struct tc_action *a,
197 int bind, int ref)
198{
199 unsigned char *b = skb_tail_pointer(skb);
200 struct tcf_sample *s = to_sample(a);
201 struct tc_sample opt = {
202 .index = s->tcf_index,
Vlad Buslov036bb442018-07-05 17:24:24 +0300203 .refcnt = refcount_read(&s->tcf_refcnt) - ref,
204 .bindcnt = atomic_read(&s->tcf_bindcnt) - bind,
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100205 };
206 struct tcf_t t;
207
Vlad Buslov653cd282018-08-14 21:46:16 +0300208 spin_lock_bh(&s->tcf_lock);
Vlad Buslovd7728492018-08-10 20:51:47 +0300209 opt.action = s->tcf_action;
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100210 if (nla_put(skb, TCA_SAMPLE_PARMS, sizeof(opt), &opt))
211 goto nla_put_failure;
212
213 tcf_tm_dump(&t, &s->tcf_tm);
214 if (nla_put_64bit(skb, TCA_SAMPLE_TM, sizeof(t), &t, TCA_SAMPLE_PAD))
215 goto nla_put_failure;
216
217 if (nla_put_u32(skb, TCA_SAMPLE_RATE, s->rate))
218 goto nla_put_failure;
219
220 if (s->truncate)
221 if (nla_put_u32(skb, TCA_SAMPLE_TRUNC_SIZE, s->trunc_size))
222 goto nla_put_failure;
223
224 if (nla_put_u32(skb, TCA_SAMPLE_PSAMPLE_GROUP, s->psample_group_num))
225 goto nla_put_failure;
Vlad Buslov653cd282018-08-14 21:46:16 +0300226 spin_unlock_bh(&s->tcf_lock);
Vlad Buslovd7728492018-08-10 20:51:47 +0300227
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100228 return skb->len;
229
230nla_put_failure:
Vlad Buslov653cd282018-08-14 21:46:16 +0300231 spin_unlock_bh(&s->tcf_lock);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100232 nlmsg_trim(skb, b);
233 return -1;
234}
235
236static int tcf_sample_walker(struct net *net, struct sk_buff *skb,
237 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500238 const struct tc_action_ops *ops,
239 struct netlink_ext_ack *extack)
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100240{
241 struct tc_action_net *tn = net_generic(net, sample_net_id);
242
Alexander Aringb3620142018-02-15 10:54:59 -0500243 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100244}
245
Cong Wangf061b482018-08-29 10:15:35 -0700246static int tcf_sample_search(struct net *net, struct tc_action **a, u32 index)
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100247{
248 struct tc_action_net *tn = net_generic(net, sample_net_id);
249
Chris Mi65a206c2017-08-30 02:31:59 -0400250 return tcf_idr_search(tn, a, index);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100251}
252
253static struct tc_action_ops act_sample_ops = {
254 .kind = "sample",
Eli Coheneddd2cf2019-02-10 14:25:00 +0200255 .id = TCA_ID_SAMPLE,
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100256 .owner = THIS_MODULE,
257 .act = tcf_sample_act,
258 .dump = tcf_sample_dump,
259 .init = tcf_sample_init,
260 .cleanup = tcf_sample_cleanup,
261 .walk = tcf_sample_walker,
262 .lookup = tcf_sample_search,
263 .size = sizeof(struct tcf_sample),
264};
265
266static __net_init int sample_init_net(struct net *net)
267{
268 struct tc_action_net *tn = net_generic(net, sample_net_id);
269
Cong Wangc7e460c2017-11-06 13:47:18 -0800270 return tc_action_net_init(tn, &act_sample_ops);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100271}
272
Cong Wang039af9c2017-12-11 15:35:03 -0800273static void __net_exit sample_exit_net(struct list_head *net_list)
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100274{
Cong Wang039af9c2017-12-11 15:35:03 -0800275 tc_action_net_exit(net_list, sample_net_id);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100276}
277
278static struct pernet_operations sample_net_ops = {
279 .init = sample_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800280 .exit_batch = sample_exit_net,
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100281 .id = &sample_net_id,
282 .size = sizeof(struct tc_action_net),
283};
284
285static int __init sample_init_module(void)
286{
287 return tcf_register_action(&act_sample_ops, &sample_net_ops);
288}
289
290static void __exit sample_cleanup_module(void)
291{
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100292 tcf_unregister_action(&act_sample_ops, &sample_net_ops);
293}
294
295module_init(sample_init_module);
296module_exit(sample_cleanup_module);
297
Yotam Gigif1fd20c2017-10-30 11:41:36 +0200298MODULE_AUTHOR("Yotam Gigi <yotam.gi@gmail.com>");
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100299MODULE_DESCRIPTION("Packet sampling action");
300MODULE_LICENSE("GPL v2");