blob: 64de5f8b0c9ed654ec475c2cae33fe539a1d43ca [file] [log] [blame]
Mike Galbraith5091faa2010-11-30 14:18:03 +01001#ifdef CONFIG_SCHED_AUTOGROUP
2
Peter Zijlstra029632f2011-10-25 10:00:11 +02003#include "sched.h"
4
Mike Galbraith5091faa2010-11-30 14:18:03 +01005#include <linux/proc_fs.h>
6#include <linux/seq_file.h>
7#include <linux/kallsyms.h>
8#include <linux/utsname.h>
Peter Zijlstra029632f2011-10-25 10:00:11 +02009#include <linux/security.h>
10#include <linux/export.h>
Mike Galbraith5091faa2010-11-30 14:18:03 +010011
12unsigned int __read_mostly sysctl_sched_autogroup_enabled = 1;
13static struct autogroup autogroup_default;
14static atomic_t autogroup_seq_nr;
15
Peter Zijlstra029632f2011-10-25 10:00:11 +020016void __init autogroup_init(struct task_struct *init_task)
Mike Galbraith5091faa2010-11-30 14:18:03 +010017{
Yong Zhang07e06b02011-01-07 15:17:36 +080018 autogroup_default.tg = &root_task_group;
Mike Galbraith5091faa2010-11-30 14:18:03 +010019 kref_init(&autogroup_default.kref);
20 init_rwsem(&autogroup_default.lock);
21 init_task->signal->autogroup = &autogroup_default;
22}
23
Peter Zijlstra029632f2011-10-25 10:00:11 +020024void autogroup_free(struct task_group *tg)
Mike Galbraith5091faa2010-11-30 14:18:03 +010025{
26 kfree(tg->autogroup);
27}
28
29static inline void autogroup_destroy(struct kref *kref)
30{
31 struct autogroup *ag = container_of(kref, struct autogroup, kref);
32
Mike Galbraithf4493772011-01-13 04:54:50 +010033#ifdef CONFIG_RT_GROUP_SCHED
34 /* We've redirected RT tasks to the root task group... */
35 ag->tg->rt_se = NULL;
36 ag->tg->rt_rq = NULL;
37#endif
Li Zefanace783b2013-01-24 14:30:48 +080038 sched_offline_group(ag->tg);
Mike Galbraith5091faa2010-11-30 14:18:03 +010039 sched_destroy_group(ag->tg);
40}
41
42static inline void autogroup_kref_put(struct autogroup *ag)
43{
44 kref_put(&ag->kref, autogroup_destroy);
45}
46
47static inline struct autogroup *autogroup_kref_get(struct autogroup *ag)
48{
49 kref_get(&ag->kref);
50 return ag;
51}
52
Mike Galbraith4f821982010-12-16 15:09:52 +010053static inline struct autogroup *autogroup_task_get(struct task_struct *p)
54{
55 struct autogroup *ag;
56 unsigned long flags;
57
58 if (!lock_task_sighand(p, &flags))
59 return autogroup_kref_get(&autogroup_default);
60
61 ag = autogroup_kref_get(p->signal->autogroup);
62 unlock_task_sighand(p, &flags);
63
64 return ag;
65}
66
Mike Galbraith5091faa2010-11-30 14:18:03 +010067static inline struct autogroup *autogroup_create(void)
68{
69 struct autogroup *ag = kzalloc(sizeof(*ag), GFP_KERNEL);
70 struct task_group *tg;
71
72 if (!ag)
73 goto out_fail;
74
Yong Zhang07e06b02011-01-07 15:17:36 +080075 tg = sched_create_group(&root_task_group);
Mike Galbraith5091faa2010-11-30 14:18:03 +010076
77 if (IS_ERR(tg))
78 goto out_free;
79
Li Zefanace783b2013-01-24 14:30:48 +080080 sched_online_group(tg, &root_task_group);
81
Mike Galbraith5091faa2010-11-30 14:18:03 +010082 kref_init(&ag->kref);
83 init_rwsem(&ag->lock);
84 ag->id = atomic_inc_return(&autogroup_seq_nr);
85 ag->tg = tg;
Mike Galbraithf4493772011-01-13 04:54:50 +010086#ifdef CONFIG_RT_GROUP_SCHED
87 /*
88 * Autogroup RT tasks are redirected to the root task group
89 * so we don't have to move tasks around upon policy change,
90 * or flail around trying to allocate bandwidth on the fly.
91 * A bandwidth exception in __sched_setscheduler() allows
92 * the policy change to proceed. Thereafter, task_group()
93 * returns &root_task_group, so zero bandwidth is required.
94 */
95 free_rt_sched_group(tg);
96 tg->rt_se = root_task_group.rt_se;
97 tg->rt_rq = root_task_group.rt_rq;
98#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +010099 tg->autogroup = ag;
100
101 return ag;
102
103out_free:
104 kfree(ag);
105out_fail:
106 if (printk_ratelimit()) {
107 printk(KERN_WARNING "autogroup_create: %s failure.\n",
108 ag ? "sched_create_group()" : "kmalloc()");
109 }
110
111 return autogroup_kref_get(&autogroup_default);
112}
113
Peter Zijlstra029632f2011-10-25 10:00:11 +0200114bool task_wants_autogroup(struct task_struct *p, struct task_group *tg)
Mike Galbraith5091faa2010-11-30 14:18:03 +0100115{
116 if (tg != &root_task_group)
117 return false;
118
119 if (p->sched_class != &fair_sched_class)
120 return false;
121
122 /*
123 * We can only assume the task group can't go away on us if
124 * autogroup_move_group() can see us on ->thread_group list.
125 */
126 if (p->flags & PF_EXITING)
127 return false;
128
129 return true;
130}
131
Mike Galbraith5091faa2010-11-30 14:18:03 +0100132static void
133autogroup_move_group(struct task_struct *p, struct autogroup *ag)
134{
135 struct autogroup *prev;
136 struct task_struct *t;
137 unsigned long flags;
138
139 BUG_ON(!lock_task_sighand(p, &flags));
140
141 prev = p->signal->autogroup;
142 if (prev == ag) {
143 unlock_task_sighand(p, &flags);
144 return;
145 }
146
147 p->signal->autogroup = autogroup_kref_get(ag);
148
Ingo Molnarc1ad41f2012-12-11 10:23:45 +0100149 if (!ACCESS_ONCE(sysctl_sched_autogroup_enabled))
150 goto out;
151
Mike Galbraith5091faa2010-11-30 14:18:03 +0100152 t = p;
153 do {
154 sched_move_task(t);
155 } while_each_thread(p, t);
156
Ingo Molnarc1ad41f2012-12-11 10:23:45 +0100157out:
Mike Galbraith5091faa2010-11-30 14:18:03 +0100158 unlock_task_sighand(p, &flags);
159 autogroup_kref_put(prev);
160}
161
162/* Allocates GFP_KERNEL, cannot be called under any spinlock */
163void sched_autogroup_create_attach(struct task_struct *p)
164{
Ingo Molnarc1ad41f2012-12-11 10:23:45 +0100165 struct autogroup *ag = autogroup_create();
Mike Galbraith5091faa2010-11-30 14:18:03 +0100166
167 autogroup_move_group(p, ag);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300168 /* drop extra reference added by autogroup_create() */
Mike Galbraith5091faa2010-11-30 14:18:03 +0100169 autogroup_kref_put(ag);
170}
171EXPORT_SYMBOL(sched_autogroup_create_attach);
172
173/* Cannot be called under siglock. Currently has no users */
174void sched_autogroup_detach(struct task_struct *p)
175{
176 autogroup_move_group(p, &autogroup_default);
177}
178EXPORT_SYMBOL(sched_autogroup_detach);
179
180void sched_autogroup_fork(struct signal_struct *sig)
181{
Mike Galbraith4f821982010-12-16 15:09:52 +0100182 sig->autogroup = autogroup_task_get(current);
Mike Galbraith5091faa2010-11-30 14:18:03 +0100183}
184
185void sched_autogroup_exit(struct signal_struct *sig)
186{
187 autogroup_kref_put(sig->autogroup);
188}
189
190static int __init setup_autogroup(char *str)
191{
192 sysctl_sched_autogroup_enabled = 0;
193
194 return 1;
195}
196
197__setup("noautogroup", setup_autogroup);
198
Ingo Molnarc1ad41f2012-12-11 10:23:45 +0100199#ifdef CONFIG_PROC_FS
200
201int proc_sched_autogroup_set_nice(struct task_struct *p, int nice)
202{
203 static unsigned long next = INITIAL_JIFFIES;
204 struct autogroup *ag;
205 int err;
206
207 if (nice < -20 || nice > 19)
208 return -EINVAL;
209
210 err = security_task_setnice(current, nice);
211 if (err)
212 return err;
213
214 if (nice < 0 && !can_nice(current, nice))
215 return -EPERM;
216
217 /* this is a heavy operation taking global locks.. */
218 if (!capable(CAP_SYS_ADMIN) && time_before(jiffies, next))
219 return -EAGAIN;
220
221 next = HZ / 10 + jiffies;
222 ag = autogroup_task_get(p);
223
224 down_write(&ag->lock);
225 err = sched_group_set_shares(ag->tg, prio_to_weight[nice + 20]);
226 if (!err)
227 ag->nice = nice;
228 up_write(&ag->lock);
229
230 autogroup_kref_put(ag);
231
232 return err;
233}
234
235void proc_sched_autogroup_show_task(struct task_struct *p, struct seq_file *m)
236{
237 struct autogroup *ag = autogroup_task_get(p);
238
239 if (!task_group_is_autogroup(ag->tg))
240 goto out;
241
242 down_read(&ag->lock);
243 seq_printf(m, "/autogroup-%ld nice %d\n", ag->id, ag->nice);
244 up_read(&ag->lock);
245
246out:
247 autogroup_kref_put(ag);
248}
249#endif /* CONFIG_PROC_FS */
250
Mike Galbraith5091faa2010-11-30 14:18:03 +0100251#ifdef CONFIG_SCHED_DEBUG
Peter Zijlstra029632f2011-10-25 10:00:11 +0200252int autogroup_path(struct task_group *tg, char *buf, int buflen)
Mike Galbraith5091faa2010-11-30 14:18:03 +0100253{
Mike Galbraith511f67a2011-02-22 15:02:00 +0100254 if (!task_group_is_autogroup(tg))
Bharata B Rao8ecedd72011-01-11 15:42:57 +0530255 return 0;
256
Mike Galbraith5091faa2010-11-30 14:18:03 +0100257 return snprintf(buf, buflen, "%s-%ld", "/autogroup", tg->autogroup->id);
258}
259#endif /* CONFIG_SCHED_DEBUG */
260
261#endif /* CONFIG_SCHED_AUTOGROUP */