Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 1 | /* |
| 2 | * cls_cgroup.h Control Group Classifier |
| 3 | * |
| 4 | * Authors: Thomas Graf <tgraf@suug.ch> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the Free |
| 8 | * Software Foundation; either version 2 of the License, or (at your option) |
| 9 | * any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #ifndef _NET_CLS_CGROUP_H |
| 14 | #define _NET_CLS_CGROUP_H |
| 15 | |
| 16 | #include <linux/cgroup.h> |
| 17 | #include <linux/hardirq.h> |
| 18 | #include <linux/rcupdate.h> |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 19 | #include <net/sock.h> |
Konstantin Khlebnikov | 2309236 | 2016-04-18 14:37:10 +0300 | [diff] [blame] | 20 | #include <net/inet_sock.h> |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 21 | |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 22 | #ifdef CONFIG_CGROUP_NET_CLASSID |
| 23 | struct cgroup_cls_state { |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 24 | struct cgroup_subsys_state css; |
| 25 | u32 classid; |
| 26 | }; |
| 27 | |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 28 | struct cgroup_cls_state *task_cls_state(struct task_struct *p); |
Daniel Wagner | f341980 | 2012-09-12 16:12:01 +0200 | [diff] [blame] | 29 | |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 30 | static inline u32 task_cls_classid(struct task_struct *p) |
| 31 | { |
Daniel Wagner | 920750c | 2012-10-25 04:16:56 +0000 | [diff] [blame] | 32 | u32 classid; |
Li Zefan | 3fb5a99 | 2010-09-02 15:42:43 +0000 | [diff] [blame] | 33 | |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 34 | if (in_interrupt()) |
| 35 | return 0; |
| 36 | |
Li Zefan | 3fb5a99 | 2010-09-02 15:42:43 +0000 | [diff] [blame] | 37 | rcu_read_lock(); |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 38 | classid = container_of(task_css(p, net_cls_cgrp_id), |
Li Zefan | 3fb5a99 | 2010-09-02 15:42:43 +0000 | [diff] [blame] | 39 | struct cgroup_cls_state, css)->classid; |
| 40 | rcu_read_unlock(); |
| 41 | |
| 42 | return classid; |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 43 | } |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 44 | |
Tejun Heo | 2a56a1f | 2015-12-07 17:38:52 -0500 | [diff] [blame] | 45 | static inline void sock_update_classid(struct sock_cgroup_data *skcd) |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 46 | { |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 47 | u32 classid; |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 48 | |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 49 | classid = task_cls_classid(current); |
Tejun Heo | 2a56a1f | 2015-12-07 17:38:52 -0500 | [diff] [blame] | 50 | sock_cgroup_set_classid(skcd, classid); |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 51 | } |
Daniel Borkmann | b87a173 | 2015-07-15 14:21:41 +0200 | [diff] [blame] | 52 | |
| 53 | static inline u32 task_get_classid(const struct sk_buff *skb) |
| 54 | { |
| 55 | u32 classid = task_cls_state(current)->classid; |
| 56 | |
| 57 | /* Due to the nature of the classifier it is required to ignore all |
| 58 | * packets originating from softirq context as accessing `current' |
| 59 | * would lead to false results. |
| 60 | * |
| 61 | * This test assumes that all callers of dev_queue_xmit() explicitly |
| 62 | * disable bh. Knowing this, it is possible to detect softirq based |
| 63 | * calls by looking at the number of nested bh disable calls because |
| 64 | * softirqs always disables bh. |
| 65 | */ |
| 66 | if (in_serving_softirq()) { |
Konstantin Khlebnikov | 2309236 | 2016-04-18 14:37:10 +0300 | [diff] [blame] | 67 | struct sock *sk = skb_to_full_sk(skb); |
| 68 | |
Tejun Heo | 2a56a1f | 2015-12-07 17:38:52 -0500 | [diff] [blame] | 69 | /* If there is an sock_cgroup_classid we'll use that. */ |
Konstantin Khlebnikov | 2309236 | 2016-04-18 14:37:10 +0300 | [diff] [blame] | 70 | if (!sk || !sk_fullsock(sk)) |
Daniel Borkmann | b87a173 | 2015-07-15 14:21:41 +0200 | [diff] [blame] | 71 | return 0; |
| 72 | |
Konstantin Khlebnikov | 2309236 | 2016-04-18 14:37:10 +0300 | [diff] [blame] | 73 | classid = sock_cgroup_classid(&sk->sk_cgrp_data); |
Daniel Borkmann | b87a173 | 2015-07-15 14:21:41 +0200 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | return classid; |
| 77 | } |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 78 | #else /* !CONFIG_CGROUP_NET_CLASSID */ |
Tejun Heo | 2a56a1f | 2015-12-07 17:38:52 -0500 | [diff] [blame] | 79 | static inline void sock_update_classid(struct sock_cgroup_data *skcd) |
Daniel Wagner | f341980 | 2012-09-12 16:12:01 +0200 | [diff] [blame] | 80 | { |
| 81 | } |
Daniel Borkmann | b87a173 | 2015-07-15 14:21:41 +0200 | [diff] [blame] | 82 | |
| 83 | static inline u32 task_get_classid(const struct sk_buff *skb) |
| 84 | { |
| 85 | return 0; |
| 86 | } |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 87 | #endif /* CONFIG_CGROUP_NET_CLASSID */ |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 88 | #endif /* _NET_CLS_CGROUP_H */ |