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> |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 20 | |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 21 | #ifdef CONFIG_CGROUP_NET_CLASSID |
| 22 | struct cgroup_cls_state { |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 23 | struct cgroup_subsys_state css; |
| 24 | u32 classid; |
| 25 | }; |
| 26 | |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 27 | struct cgroup_cls_state *task_cls_state(struct task_struct *p); |
Daniel Wagner | f341980 | 2012-09-12 16:12:01 +0200 | [diff] [blame] | 28 | |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 29 | static inline u32 task_cls_classid(struct task_struct *p) |
| 30 | { |
Daniel Wagner | 920750c | 2012-10-25 04:16:56 +0000 | [diff] [blame] | 31 | u32 classid; |
Li Zefan | 3fb5a99 | 2010-09-02 15:42:43 +0000 | [diff] [blame] | 32 | |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 33 | if (in_interrupt()) |
| 34 | return 0; |
| 35 | |
Li Zefan | 3fb5a99 | 2010-09-02 15:42:43 +0000 | [diff] [blame] | 36 | rcu_read_lock(); |
Tejun Heo | 073219e | 2014-02-08 10:36:58 -0500 | [diff] [blame] | 37 | classid = container_of(task_css(p, net_cls_cgrp_id), |
Li Zefan | 3fb5a99 | 2010-09-02 15:42:43 +0000 | [diff] [blame] | 38 | struct cgroup_cls_state, css)->classid; |
| 39 | rcu_read_unlock(); |
| 40 | |
| 41 | return classid; |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 42 | } |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 43 | |
| 44 | static inline void sock_update_classid(struct sock *sk) |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 45 | { |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 46 | u32 classid; |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 47 | |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 48 | classid = task_cls_classid(current); |
| 49 | if (classid != sk->sk_classid) |
| 50 | sk->sk_classid = 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()) { |
| 67 | /* If there is an sk_classid we'll use that. */ |
| 68 | if (!skb->sk) |
| 69 | return 0; |
| 70 | |
| 71 | classid = skb->sk->sk_classid; |
| 72 | } |
| 73 | |
| 74 | return classid; |
| 75 | } |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 76 | #else /* !CONFIG_CGROUP_NET_CLASSID */ |
Zefan Li | 211d2f97 | 2013-04-08 20:03:35 +0000 | [diff] [blame] | 77 | static inline void sock_update_classid(struct sock *sk) |
Daniel Wagner | f341980 | 2012-09-12 16:12:01 +0200 | [diff] [blame] | 78 | { |
| 79 | } |
Daniel Borkmann | b87a173 | 2015-07-15 14:21:41 +0200 | [diff] [blame] | 80 | |
| 81 | static inline u32 task_get_classid(const struct sk_buff *skb) |
| 82 | { |
| 83 | return 0; |
| 84 | } |
Daniel Borkmann | fe1217c | 2013-12-29 18:27:10 +0100 | [diff] [blame] | 85 | #endif /* CONFIG_CGROUP_NET_CLASSID */ |
Herbert Xu | f845172 | 2010-05-24 00:12:34 -0700 | [diff] [blame] | 86 | #endif /* _NET_CLS_CGROUP_H */ |