blob: 4060b0955c97db68872a88d6bd05d5143fdc2e7c [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 Carattie8c87c62019-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 Carattie8c87c62019-03-20 15:00:09 +010047 struct tcf_chain *goto_ch = NULL;
Yotam Gigi5c5670f2017-01-23 11:07:09 +010048 struct tc_sample *parm;
Vlad Buslov653cd282018-08-14 21:46:16 +030049 u32 psample_group_num;
Yotam Gigi5c5670f2017-01-23 11:07:09 +010050 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 Carattie8c87c62019-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
Vlad Buslov653cd282018-08-14 21:46:16 +030088 psample_group_num = nla_get_u32(tb[TCA_SAMPLE_PSAMPLE_GROUP]);
89 psample_group = psample_group_get(net, psample_group_num);
Yotam Gigicadb9c92017-01-31 11:33:53 +020090 if (!psample_group) {
Davide Carattie8c87c62019-03-20 15:00:09 +010091 err = -ENOMEM;
92 goto put_chain;
Yotam Gigicadb9c92017-01-31 11:33:53 +020093 }
Vlad Buslov653cd282018-08-14 21:46:16 +030094
95 s = to_sample(*a);
96
97 spin_lock_bh(&s->tcf_lock);
Davide Carattie8c87c62019-03-20 15:00:09 +010098 goto_ch = tcf_action_set_ctrlact(*a, parm->action, goto_ch);
Vlad Buslov653cd282018-08-14 21:46:16 +030099 s->rate = nla_get_u32(tb[TCA_SAMPLE_RATE]);
100 s->psample_group_num = psample_group_num;
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100101 RCU_INIT_POINTER(s->psample_group, psample_group);
102
103 if (tb[TCA_SAMPLE_TRUNC_SIZE]) {
104 s->truncate = true;
105 s->trunc_size = nla_get_u32(tb[TCA_SAMPLE_TRUNC_SIZE]);
106 }
Vlad Buslov653cd282018-08-14 21:46:16 +0300107 spin_unlock_bh(&s->tcf_lock);
Davide Carattie8c87c62019-03-20 15:00:09 +0100108 if (goto_ch)
109 tcf_chain_put_by_act(goto_ch);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100110
111 if (ret == ACT_P_CREATED)
Chris Mi65a206c2017-08-30 02:31:59 -0400112 tcf_idr_insert(tn, *a);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100113 return ret;
Davide Carattie8c87c62019-03-20 15:00:09 +0100114put_chain:
115 if (goto_ch)
116 tcf_chain_put_by_act(goto_ch);
117release_idr:
118 tcf_idr_release(*a, bind);
119 return err;
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100120}
121
Cong Wang9a63b252017-12-05 12:53:07 -0800122static void tcf_sample_cleanup(struct tc_action *a)
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100123{
124 struct tcf_sample *s = to_sample(a);
Cong Wang90a6ec82017-11-29 16:07:51 -0800125 struct psample_group *psample_group;
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100126
Vlad Buslovd7728492018-08-10 20:51:47 +0300127 /* last reference to action, no need to lock */
128 psample_group = rcu_dereference_protected(s->psample_group, 1);
Cong Wang90a6ec82017-11-29 16:07:51 -0800129 RCU_INIT_POINTER(s->psample_group, NULL);
Davide Caratti1f110e72018-03-16 00:00:56 +0100130 if (psample_group)
131 psample_group_put(psample_group);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100132}
133
134static bool tcf_sample_dev_ok_push(struct net_device *dev)
135{
136 switch (dev->type) {
137 case ARPHRD_TUNNEL:
138 case ARPHRD_TUNNEL6:
139 case ARPHRD_SIT:
140 case ARPHRD_IPGRE:
141 case ARPHRD_VOID:
142 case ARPHRD_NONE:
143 return false;
144 default:
145 return true;
146 }
147}
148
149static int tcf_sample_act(struct sk_buff *skb, const struct tc_action *a,
150 struct tcf_result *res)
151{
152 struct tcf_sample *s = to_sample(a);
153 struct psample_group *psample_group;
154 int retval;
155 int size;
156 int iif;
157 int oif;
158
159 tcf_lastuse_update(&s->tcf_tm);
160 bstats_cpu_update(this_cpu_ptr(s->common.cpu_bstats), skb);
161 retval = READ_ONCE(s->tcf_action);
162
Paolo Abeni7fd4b282018-07-30 14:30:43 +0200163 psample_group = rcu_dereference_bh(s->psample_group);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100164
165 /* randomly sample packets according to rate */
166 if (psample_group && (prandom_u32() % s->rate == 0)) {
167 if (!skb_at_tc_ingress(skb)) {
168 iif = skb->skb_iif;
169 oif = skb->dev->ifindex;
170 } else {
171 iif = skb->dev->ifindex;
172 oif = 0;
173 }
174
175 /* on ingress, the mac header gets popped, so push it back */
176 if (skb_at_tc_ingress(skb) && tcf_sample_dev_ok_push(skb->dev))
177 skb_push(skb, skb->mac_len);
178
179 size = s->truncate ? s->trunc_size : skb->len;
180 psample_sample_packet(psample_group, skb, size, iif, oif,
181 s->rate);
182
183 if (skb_at_tc_ingress(skb) && tcf_sample_dev_ok_push(skb->dev))
184 skb_pull(skb, skb->mac_len);
185 }
186
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100187 return retval;
188}
189
190static int tcf_sample_dump(struct sk_buff *skb, struct tc_action *a,
191 int bind, int ref)
192{
193 unsigned char *b = skb_tail_pointer(skb);
194 struct tcf_sample *s = to_sample(a);
195 struct tc_sample opt = {
196 .index = s->tcf_index,
Vlad Buslov036bb442018-07-05 17:24:24 +0300197 .refcnt = refcount_read(&s->tcf_refcnt) - ref,
198 .bindcnt = atomic_read(&s->tcf_bindcnt) - bind,
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100199 };
200 struct tcf_t t;
201
Vlad Buslov653cd282018-08-14 21:46:16 +0300202 spin_lock_bh(&s->tcf_lock);
Vlad Buslovd7728492018-08-10 20:51:47 +0300203 opt.action = s->tcf_action;
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100204 if (nla_put(skb, TCA_SAMPLE_PARMS, sizeof(opt), &opt))
205 goto nla_put_failure;
206
207 tcf_tm_dump(&t, &s->tcf_tm);
208 if (nla_put_64bit(skb, TCA_SAMPLE_TM, sizeof(t), &t, TCA_SAMPLE_PAD))
209 goto nla_put_failure;
210
211 if (nla_put_u32(skb, TCA_SAMPLE_RATE, s->rate))
212 goto nla_put_failure;
213
214 if (s->truncate)
215 if (nla_put_u32(skb, TCA_SAMPLE_TRUNC_SIZE, s->trunc_size))
216 goto nla_put_failure;
217
218 if (nla_put_u32(skb, TCA_SAMPLE_PSAMPLE_GROUP, s->psample_group_num))
219 goto nla_put_failure;
Vlad Buslov653cd282018-08-14 21:46:16 +0300220 spin_unlock_bh(&s->tcf_lock);
Vlad Buslovd7728492018-08-10 20:51:47 +0300221
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100222 return skb->len;
223
224nla_put_failure:
Vlad Buslov653cd282018-08-14 21:46:16 +0300225 spin_unlock_bh(&s->tcf_lock);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100226 nlmsg_trim(skb, b);
227 return -1;
228}
229
230static int tcf_sample_walker(struct net *net, struct sk_buff *skb,
231 struct netlink_callback *cb, int type,
Alexander Aring41780102018-02-15 10:54:58 -0500232 const struct tc_action_ops *ops,
233 struct netlink_ext_ack *extack)
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100234{
235 struct tc_action_net *tn = net_generic(net, sample_net_id);
236
Alexander Aringb3620142018-02-15 10:54:59 -0500237 return tcf_generic_walker(tn, skb, cb, type, ops, extack);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100238}
239
Cong Wangf061b482018-08-29 10:15:35 -0700240static int tcf_sample_search(struct net *net, struct tc_action **a, u32 index)
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100241{
242 struct tc_action_net *tn = net_generic(net, sample_net_id);
243
Chris Mi65a206c2017-08-30 02:31:59 -0400244 return tcf_idr_search(tn, a, index);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100245}
246
247static struct tc_action_ops act_sample_ops = {
248 .kind = "sample",
Eli Coheneddd2cf2019-02-10 14:25:00 +0200249 .id = TCA_ID_SAMPLE,
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100250 .owner = THIS_MODULE,
251 .act = tcf_sample_act,
252 .dump = tcf_sample_dump,
253 .init = tcf_sample_init,
254 .cleanup = tcf_sample_cleanup,
255 .walk = tcf_sample_walker,
256 .lookup = tcf_sample_search,
257 .size = sizeof(struct tcf_sample),
258};
259
260static __net_init int sample_init_net(struct net *net)
261{
262 struct tc_action_net *tn = net_generic(net, sample_net_id);
263
Cong Wangc7e460c2017-11-06 13:47:18 -0800264 return tc_action_net_init(tn, &act_sample_ops);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100265}
266
Cong Wang039af9c2017-12-11 15:35:03 -0800267static void __net_exit sample_exit_net(struct list_head *net_list)
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100268{
Cong Wang039af9c2017-12-11 15:35:03 -0800269 tc_action_net_exit(net_list, sample_net_id);
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100270}
271
272static struct pernet_operations sample_net_ops = {
273 .init = sample_init_net,
Cong Wang039af9c2017-12-11 15:35:03 -0800274 .exit_batch = sample_exit_net,
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100275 .id = &sample_net_id,
276 .size = sizeof(struct tc_action_net),
277};
278
279static int __init sample_init_module(void)
280{
281 return tcf_register_action(&act_sample_ops, &sample_net_ops);
282}
283
284static void __exit sample_cleanup_module(void)
285{
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100286 tcf_unregister_action(&act_sample_ops, &sample_net_ops);
287}
288
289module_init(sample_init_module);
290module_exit(sample_cleanup_module);
291
Yotam Gigif1fd20c2017-10-30 11:41:36 +0200292MODULE_AUTHOR("Yotam Gigi <yotam.gi@gmail.com>");
Yotam Gigi5c5670f2017-01-23 11:07:09 +0100293MODULE_DESCRIPTION("Packet sampling action");
294MODULE_LICENSE("GPL v2");