memcg: fix shmem's swap accounting
[deliverable/linux.git] / Documentation / cgroups / cgroups.txt
CommitLineData
ddbcc7e8
PM
1 CGROUPS
2 -------
3
4Written by Paul Menage <menage@google.com> based on Documentation/cpusets.txt
5
6Original copyright statements from cpusets.txt:
7Portions Copyright (C) 2004 BULL SA.
8Portions Copyright (c) 2004-2006 Silicon Graphics, Inc.
9Modified by Paul Jackson <pj@sgi.com>
10Modified by Christoph Lameter <clameter@sgi.com>
11
12CONTENTS:
13=========
14
151. Control Groups
16 1.1 What are cgroups ?
17 1.2 Why are cgroups needed ?
18 1.3 How are cgroups implemented ?
19 1.4 What does notify_on_release do ?
20 1.5 How do I use cgroups ?
212. Usage Examples and Syntax
22 2.1 Basic Usage
23 2.2 Attaching processes
243. Kernel API
25 3.1 Overview
26 3.2 Synchronization
27 3.3 Subsystem API
284. Questions
29
301. Control Groups
d19e0583 31=================
ddbcc7e8
PM
32
331.1 What are cgroups ?
34----------------------
35
36Control Groups provide a mechanism for aggregating/partitioning sets of
37tasks, and all their future children, into hierarchical groups with
38specialized behaviour.
39
40Definitions:
41
42A *cgroup* associates a set of tasks with a set of parameters for one
43or more subsystems.
44
45A *subsystem* is a module that makes use of the task grouping
46facilities provided by cgroups to treat groups of tasks in
47particular ways. A subsystem is typically a "resource controller" that
48schedules a resource or applies per-cgroup limits, but it may be
49anything that wants to act on a group of processes, e.g. a
50virtualization subsystem.
51
52A *hierarchy* is a set of cgroups arranged in a tree, such that
53every task in the system is in exactly one of the cgroups in the
54hierarchy, and a set of subsystems; each subsystem has system-specific
55state attached to each cgroup in the hierarchy. Each hierarchy has
56an instance of the cgroup virtual filesystem associated with it.
57
58At any one time there may be multiple active hierachies of task
59cgroups. Each hierarchy is a partition of all tasks in the system.
60
61User level code may create and destroy cgroups by name in an
62instance of the cgroup virtual file system, specify and query to
63which cgroup a task is assigned, and list the task pids assigned to
64a cgroup. Those creations and assignments only affect the hierarchy
65associated with that instance of the cgroup file system.
66
67On their own, the only use for cgroups is for simple job
68tracking. The intention is that other subsystems hook into the generic
69cgroup support to provide new attributes for cgroups, such as
70accounting/limiting the resources which processes in a cgroup can
71access. For example, cpusets (see Documentation/cpusets.txt) allows
72you to associate a set of CPUs and a set of memory nodes with the
73tasks in each cgroup.
74
751.2 Why are cgroups needed ?
76----------------------------
77
78There are multiple efforts to provide process aggregations in the
79Linux kernel, mainly for resource tracking purposes. Such efforts
80include cpusets, CKRM/ResGroups, UserBeanCounters, and virtual server
81namespaces. These all require the basic notion of a
82grouping/partitioning of processes, with newly forked processes ending
83in the same group (cgroup) as their parent process.
84
85The kernel cgroup patch provides the minimum essential kernel
86mechanisms required to efficiently implement such groups. It has
87minimal impact on the system fast paths, and provides hooks for
88specific subsystems such as cpusets to provide additional behaviour as
89desired.
90
91Multiple hierarchy support is provided to allow for situations where
92the division of tasks into cgroups is distinctly different for
93different subsystems - having parallel hierarchies allows each
94hierarchy to be a natural division of tasks, without having to handle
95complex combinations of tasks that would be present if several
96unrelated subsystems needed to be forced into the same tree of
97cgroups.
98
99At one extreme, each resource controller or subsystem could be in a
100separate hierarchy; at the other extreme, all subsystems
101would be attached to the same hierarchy.
102
103As an example of a scenario (originally proposed by vatsa@in.ibm.com)
104that can benefit from multiple hierarchies, consider a large
105university server with various users - students, professors, system
106tasks etc. The resource planning for this server could be along the
107following lines:
108
109 CPU : Top cpuset
110 / \
111 CPUSet1 CPUSet2
112 | |
113 (Profs) (Students)
114
115 In addition (system tasks) are attached to topcpuset (so
116 that they can run anywhere) with a limit of 20%
117
118 Memory : Professors (50%), students (30%), system (20%)
119
120 Disk : Prof (50%), students (30%), system (20%)
121
122 Network : WWW browsing (20%), Network File System (60%), others (20%)
123 / \
124 Prof (15%) students (5%)
125
126Browsers like firefox/lynx go into the WWW network class, while (k)nfsd go
127into NFS network class.
128
129At the same time firefox/lynx will share an appropriate CPU/Memory class
130depending on who launched it (prof/student).
131
132With the ability to classify tasks differently for different resources
133(by putting those resource subsystems in different hierarchies) then
134the admin can easily set up a script which receives exec notifications
135and depending on who is launching the browser he can
136
137 # echo browser_pid > /mnt/<restype>/<userclass>/tasks
138
139With only a single hierarchy, he now would potentially have to create
140a separate cgroup for every browser launched and associate it with
141approp network and other resource class. This may lead to
142proliferation of such cgroups.
143
144Also lets say that the administrator would like to give enhanced network
145access temporarily to a student's browser (since it is night and the user
d19e0583 146wants to do online gaming :)) OR give one of the students simulation
ddbcc7e8
PM
147apps enhanced CPU power,
148
d19e0583 149With ability to write pids directly to resource classes, it's just a
ddbcc7e8
PM
150matter of :
151
152 # echo pid > /mnt/network/<new_class>/tasks
153 (after some time)
154 # echo pid > /mnt/network/<orig_class>/tasks
155
156Without this ability, he would have to split the cgroup into
157multiple separate ones and then associate the new cgroups with the
158new resource classes.
159
160
161
1621.3 How are cgroups implemented ?
163---------------------------------
164
165Control Groups extends the kernel as follows:
166
167 - Each task in the system has a reference-counted pointer to a
168 css_set.
169
170 - A css_set contains a set of reference-counted pointers to
171 cgroup_subsys_state objects, one for each cgroup subsystem
172 registered in the system. There is no direct link from a task to
173 the cgroup of which it's a member in each hierarchy, but this
174 can be determined by following pointers through the
175 cgroup_subsys_state objects. This is because accessing the
176 subsystem state is something that's expected to happen frequently
177 and in performance-critical code, whereas operations that require a
178 task's actual cgroup assignments (in particular, moving between
817929ec
PM
179 cgroups) are less common. A linked list runs through the cg_list
180 field of each task_struct using the css_set, anchored at
181 css_set->tasks.
ddbcc7e8
PM
182
183 - A cgroup hierarchy filesystem can be mounted for browsing and
184 manipulation from user space.
185
186 - You can list all the tasks (by pid) attached to any cgroup.
187
188The implementation of cgroups requires a few, simple hooks
189into the rest of the kernel, none in performance critical paths:
190
191 - in init/main.c, to initialize the root cgroups and initial
192 css_set at system boot.
193
194 - in fork and exit, to attach and detach a task from its css_set.
195
196In addition a new file system, of type "cgroup" may be mounted, to
197enable browsing and modifying the cgroups presently known to the
198kernel. When mounting a cgroup hierarchy, you may specify a
199comma-separated list of subsystems to mount as the filesystem mount
200options. By default, mounting the cgroup filesystem attempts to
201mount a hierarchy containing all registered subsystems.
202
203If an active hierarchy with exactly the same set of subsystems already
204exists, it will be reused for the new mount. If no existing hierarchy
205matches, and any of the requested subsystems are in use in an existing
206hierarchy, the mount will fail with -EBUSY. Otherwise, a new hierarchy
207is activated, associated with the requested subsystems.
208
209It's not currently possible to bind a new subsystem to an active
210cgroup hierarchy, or to unbind a subsystem from an active cgroup
211hierarchy. This may be possible in future, but is fraught with nasty
212error-recovery issues.
213
214When a cgroup filesystem is unmounted, if there are any
215child cgroups created below the top-level cgroup, that hierarchy
216will remain active even though unmounted; if there are no
217child cgroups then the hierarchy will be deactivated.
218
219No new system calls are added for cgroups - all support for
220querying and modifying cgroups is via this cgroup file system.
221
222Each task under /proc has an added file named 'cgroup' displaying,
223for each active hierarchy, the subsystem names and the cgroup name
224as the path relative to the root of the cgroup file system.
225
226Each cgroup is represented by a directory in the cgroup file system
227containing the following files describing that cgroup:
228
229 - tasks: list of tasks (by pid) attached to that cgroup
d19e0583
LZ
230 - notify_on_release flag: run the release agent on exit?
231 - release_agent: the path to use for release notifications (this file
232 exists in the top cgroup only)
ddbcc7e8
PM
233
234Other subsystems such as cpusets may add additional files in each
d19e0583 235cgroup dir.
ddbcc7e8
PM
236
237New cgroups are created using the mkdir system call or shell
238command. The properties of a cgroup, such as its flags, are
239modified by writing to the appropriate file in that cgroups
240directory, as listed above.
241
242The named hierarchical structure of nested cgroups allows partitioning
243a large system into nested, dynamically changeable, "soft-partitions".
244
245The attachment of each task, automatically inherited at fork by any
246children of that task, to a cgroup allows organizing the work load
247on a system into related sets of tasks. A task may be re-attached to
248any other cgroup, if allowed by the permissions on the necessary
249cgroup file system directories.
250
251When a task is moved from one cgroup to another, it gets a new
252css_set pointer - if there's an already existing css_set with the
253desired collection of cgroups then that group is reused, else a new
254css_set is allocated. Note that the current implementation uses a
255linear search to locate an appropriate existing css_set, so isn't
256very efficient. A future version will use a hash table for better
257performance.
258
817929ec
PM
259To allow access from a cgroup to the css_sets (and hence tasks)
260that comprise it, a set of cg_cgroup_link objects form a lattice;
261each cg_cgroup_link is linked into a list of cg_cgroup_links for
d19e0583 262a single cgroup on its cgrp_link_list field, and a list of
817929ec
PM
263cg_cgroup_links for a single css_set on its cg_link_list.
264
265Thus the set of tasks in a cgroup can be listed by iterating over
266each css_set that references the cgroup, and sub-iterating over
267each css_set's task set.
268
ddbcc7e8
PM
269The use of a Linux virtual file system (vfs) to represent the
270cgroup hierarchy provides for a familiar permission and name space
271for cgroups, with a minimum of additional kernel code.
272
2731.4 What does notify_on_release do ?
274------------------------------------
275
ddbcc7e8
PM
276If the notify_on_release flag is enabled (1) in a cgroup, then
277whenever the last task in the cgroup leaves (exits or attaches to
278some other cgroup) and the last child cgroup of that cgroup
279is removed, then the kernel runs the command specified by the contents
280of the "release_agent" file in that hierarchy's root directory,
281supplying the pathname (relative to the mount point of the cgroup
282file system) of the abandoned cgroup. This enables automatic
283removal of abandoned cgroups. The default value of
284notify_on_release in the root cgroup at system boot is disabled
285(0). The default value of other cgroups at creation is the current
286value of their parents notify_on_release setting. The default value of
287a cgroup hierarchy's release_agent path is empty.
288
2891.5 How do I use cgroups ?
290--------------------------
291
292To start a new job that is to be contained within a cgroup, using
293the "cpuset" cgroup subsystem, the steps are something like:
294
295 1) mkdir /dev/cgroup
296 2) mount -t cgroup -ocpuset cpuset /dev/cgroup
297 3) Create the new cgroup by doing mkdir's and write's (or echo's) in
298 the /dev/cgroup virtual file system.
299 4) Start a task that will be the "founding father" of the new job.
300 5) Attach that task to the new cgroup by writing its pid to the
301 /dev/cgroup tasks file for that cgroup.
302 6) fork, exec or clone the job tasks from this founding father task.
303
304For example, the following sequence of commands will setup a cgroup
305named "Charlie", containing just CPUs 2 and 3, and Memory Node 1,
306and then start a subshell 'sh' in that cgroup:
307
308 mount -t cgroup cpuset -ocpuset /dev/cgroup
309 cd /dev/cgroup
310 mkdir Charlie
311 cd Charlie
0f146a76
DG
312 /bin/echo 2-3 > cpuset.cpus
313 /bin/echo 1 > cpuset.mems
ddbcc7e8
PM
314 /bin/echo $$ > tasks
315 sh
316 # The subshell 'sh' is now running in cgroup Charlie
317 # The next line should display '/Charlie'
318 cat /proc/self/cgroup
319
3202. Usage Examples and Syntax
321============================
322
3232.1 Basic Usage
324---------------
325
326Creating, modifying, using the cgroups can be done through the cgroup
327virtual filesystem.
328
329To mount a cgroup hierarchy will all available subsystems, type:
330# mount -t cgroup xxx /dev/cgroup
331
332The "xxx" is not interpreted by the cgroup code, but will appear in
333/proc/mounts so may be any useful identifying string that you like.
334
335To mount a cgroup hierarchy with just the cpuset and numtasks
336subsystems, type:
337# mount -t cgroup -o cpuset,numtasks hier1 /dev/cgroup
338
339To change the set of subsystems bound to a mounted hierarchy, just
340remount with different options:
341
342# mount -o remount,cpuset,ns /dev/cgroup
343
344Note that changing the set of subsystems is currently only supported
345when the hierarchy consists of a single (root) cgroup. Supporting
346the ability to arbitrarily bind/unbind subsystems from an existing
347cgroup hierarchy is intended to be implemented in the future.
348
349Then under /dev/cgroup you can find a tree that corresponds to the
350tree of the cgroups in the system. For instance, /dev/cgroup
351is the cgroup that holds the whole system.
352
353If you want to create a new cgroup under /dev/cgroup:
354# cd /dev/cgroup
355# mkdir my_cgroup
356
357Now you want to do something with this cgroup.
358# cd my_cgroup
359
360In this directory you can find several files:
361# ls
18e7f1f0 362notify_on_release tasks
d19e0583 363(plus whatever files added by the attached subsystems)
ddbcc7e8
PM
364
365Now attach your shell to this cgroup:
366# /bin/echo $$ > tasks
367
368You can also create cgroups inside your cgroup by using mkdir in this
369directory.
370# mkdir my_sub_cs
371
372To remove a cgroup, just use rmdir:
373# rmdir my_sub_cs
374
375This will fail if the cgroup is in use (has cgroups inside, or
376has processes attached, or is held alive by other subsystem-specific
377reference).
378
3792.2 Attaching processes
380-----------------------
381
382# /bin/echo PID > tasks
383
384Note that it is PID, not PIDs. You can only attach ONE task at a time.
385If you have several tasks to attach, you have to do it one after another:
386
387# /bin/echo PID1 > tasks
388# /bin/echo PID2 > tasks
389 ...
390# /bin/echo PIDn > tasks
391
bef67c5a
LZ
392You can attach the current shell task by echoing 0:
393
394# echo 0 > tasks
395
ddbcc7e8
PM
3963. Kernel API
397=============
398
3993.1 Overview
400------------
401
402Each kernel subsystem that wants to hook into the generic cgroup
403system needs to create a cgroup_subsys object. This contains
404various methods, which are callbacks from the cgroup system, along
405with a subsystem id which will be assigned by the cgroup system.
406
407Other fields in the cgroup_subsys object include:
408
409- subsys_id: a unique array index for the subsystem, indicating which
d19e0583 410 entry in cgroup->subsys[] this subsystem should be managing.
ddbcc7e8 411
d19e0583
LZ
412- name: should be initialized to a unique subsystem name. Should be
413 no longer than MAX_CGROUP_TYPE_NAMELEN.
ddbcc7e8 414
d19e0583
LZ
415- early_init: indicate if the subsystem needs early initialization
416 at system boot.
ddbcc7e8
PM
417
418Each cgroup object created by the system has an array of pointers,
419indexed by subsystem id; this pointer is entirely managed by the
420subsystem; the generic cgroup code will never touch this pointer.
421
4223.2 Synchronization
423-------------------
424
425There is a global mutex, cgroup_mutex, used by the cgroup
426system. This should be taken by anything that wants to modify a
427cgroup. It may also be taken to prevent cgroups from being
428modified, but more specific locks may be more appropriate in that
429situation.
430
431See kernel/cgroup.c for more details.
432
433Subsystems can take/release the cgroup_mutex via the functions
ddbcc7e8
PM
434cgroup_lock()/cgroup_unlock().
435
436Accessing a task's cgroup pointer may be done in the following ways:
437- while holding cgroup_mutex
438- while holding the task's alloc_lock (via task_lock())
439- inside an rcu_read_lock() section via rcu_dereference()
440
4413.3 Subsystem API
d19e0583 442-----------------
ddbcc7e8
PM
443
444Each subsystem should:
445
446- add an entry in linux/cgroup_subsys.h
447- define a cgroup_subsys object called <name>_subsys
448
449Each subsystem may export the following methods. The only mandatory
450methods are create/destroy. Any others that are null are presumed to
451be successful no-ops.
452
d19e0583
LZ
453struct cgroup_subsys_state *create(struct cgroup_subsys *ss,
454 struct cgroup *cgrp)
8dc4f3e1 455(cgroup_mutex held by caller)
ddbcc7e8
PM
456
457Called to create a subsystem state object for a cgroup. The
458subsystem should allocate its subsystem state object for the passed
459cgroup, returning a pointer to the new object on success or a
460negative error code. On success, the subsystem pointer should point to
461a structure of type cgroup_subsys_state (typically embedded in a
462larger subsystem-specific object), which will be initialized by the
463cgroup system. Note that this will be called at initialization to
464create the root subsystem state for this subsystem; this case can be
465identified by the passed cgroup object having a NULL parent (since
466it's the root of the hierarchy) and may be an appropriate place for
467initialization code.
468
d19e0583 469void destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
8dc4f3e1 470(cgroup_mutex held by caller)
ddbcc7e8 471
8dc4f3e1
PM
472The cgroup system is about to destroy the passed cgroup; the subsystem
473should do any necessary cleanup and free its subsystem state
474object. By the time this method is called, the cgroup has already been
475unlinked from the file system and from the child list of its parent;
476cgroup->parent is still valid. (Note - can also be called for a
477newly-created cgroup if an error occurs after this subsystem's
478create() method has been called for the new cgroup).
ddbcc7e8 479
d19e0583 480void pre_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp);
d19e0583
LZ
481
482Called before checking the reference count on each subsystem. This may
483be useful for subsystems which have some extra references even if
484there are not tasks in the cgroup.
485
486int can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
ddbcc7e8 487 struct task_struct *task)
8dc4f3e1 488(cgroup_mutex held by caller)
ddbcc7e8
PM
489
490Called prior to moving a task into a cgroup; if the subsystem
491returns an error, this will abort the attach operation. If a NULL
492task is passed, then a successful result indicates that *any*
493unspecified task can be moved into the cgroup. Note that this isn't
494called on a fork. If this method returns 0 (success) then this should
495remain valid while the caller holds cgroup_mutex.
496
d19e0583
LZ
497void attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
498 struct cgroup *old_cgrp, struct task_struct *task)
18e7f1f0 499(cgroup_mutex held by caller)
ddbcc7e8
PM
500
501Called after the task has been attached to the cgroup, to allow any
502post-attachment activity that requires memory allocations or blocking.
503
504void fork(struct cgroup_subsy *ss, struct task_struct *task)
ddbcc7e8 505
e8d55fde 506Called when a task is forked into a cgroup.
ddbcc7e8
PM
507
508void exit(struct cgroup_subsys *ss, struct task_struct *task)
ddbcc7e8 509
d19e0583 510Called during task exit.
ddbcc7e8 511
d19e0583 512int populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
18e7f1f0 513(cgroup_mutex held by caller)
ddbcc7e8
PM
514
515Called after creation of a cgroup to allow a subsystem to populate
516the cgroup directory with file entries. The subsystem should make
517calls to cgroup_add_file() with objects of type cftype (see
518include/linux/cgroup.h for details). Note that although this
519method can return an error code, the error code is currently not
520always handled well.
521
d19e0583 522void post_clone(struct cgroup_subsys *ss, struct cgroup *cgrp)
18e7f1f0 523(cgroup_mutex held by caller)
697f4161
PM
524
525Called at the end of cgroup_clone() to do any paramater
526initialization which might be required before a task could attach. For
527example in cpusets, no task may attach before 'cpus' and 'mems' are set
528up.
529
ddbcc7e8 530void bind(struct cgroup_subsys *ss, struct cgroup *root)
8dc4f3e1 531(cgroup_mutex held by caller)
ddbcc7e8
PM
532
533Called when a cgroup subsystem is rebound to a different hierarchy
534and root cgroup. Currently this will only involve movement between
535the default hierarchy (which never has sub-cgroups) and a hierarchy
536that is being created/destroyed (and hence has no sub-cgroups).
537
5384. Questions
539============
540
541Q: what's up with this '/bin/echo' ?
542A: bash's builtin 'echo' command does not check calls to write() against
543 errors. If you use it in the cgroup file system, you won't be
544 able to tell whether a command succeeded or failed.
545
546Q: When I attach processes, only the first of the line gets really attached !
547A: We can only return one error code per call to write(). So you should also
548 put only ONE pid.
549
This page took 0.239256 seconds and 5 git commands to generate.