blob: fd588ff0e2965311f319d07161f15d6b42f166c8 [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001 CGROUPS
2 -------
3
Li Zefan45ce80f2009-01-15 13:50:59 -08004Written by Paul Menage <menage@google.com> based on
5Documentation/cgroups/cpusets.txt
Paul Menageddbcc7e2007-10-18 23:39:30 -07006
7Original copyright statements from cpusets.txt:
8Portions Copyright (C) 2004 BULL SA.
9Portions Copyright (c) 2004-2006 Silicon Graphics, Inc.
10Modified by Paul Jackson <pj@sgi.com>
11Modified by Christoph Lameter <clameter@sgi.com>
12
13CONTENTS:
14=========
15
161. Control Groups
17 1.1 What are cgroups ?
18 1.2 Why are cgroups needed ?
19 1.3 How are cgroups implemented ?
20 1.4 What does notify_on_release do ?
21 1.5 How do I use cgroups ?
222. Usage Examples and Syntax
23 2.1 Basic Usage
24 2.2 Attaching processes
Kirill A. Shutemov8ca712e2010-03-10 15:22:10 -080025 2.3 Mounting hierarchies by name
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -080026 2.4 Notification API
Paul Menageddbcc7e2007-10-18 23:39:30 -0700273. Kernel API
28 3.1 Overview
29 3.2 Synchronization
30 3.3 Subsystem API
314. Questions
32
331. Control Groups
Li Zefand19e0582008-02-23 15:24:08 -080034=================
Paul Menageddbcc7e2007-10-18 23:39:30 -070035
361.1 What are cgroups ?
37----------------------
38
39Control Groups provide a mechanism for aggregating/partitioning sets of
40tasks, and all their future children, into hierarchical groups with
41specialized behaviour.
42
43Definitions:
44
45A *cgroup* associates a set of tasks with a set of parameters for one
46or more subsystems.
47
48A *subsystem* is a module that makes use of the task grouping
49facilities provided by cgroups to treat groups of tasks in
50particular ways. A subsystem is typically a "resource controller" that
51schedules a resource or applies per-cgroup limits, but it may be
52anything that wants to act on a group of processes, e.g. a
53virtualization subsystem.
54
55A *hierarchy* is a set of cgroups arranged in a tree, such that
56every task in the system is in exactly one of the cgroups in the
57hierarchy, and a set of subsystems; each subsystem has system-specific
58state attached to each cgroup in the hierarchy. Each hierarchy has
59an instance of the cgroup virtual filesystem associated with it.
60
Chris Samuelcaa790b2009-01-17 00:01:18 +110061At any one time there may be multiple active hierarchies of task
Paul Menageddbcc7e2007-10-18 23:39:30 -070062cgroups. Each hierarchy is a partition of all tasks in the system.
63
64User level code may create and destroy cgroups by name in an
65instance of the cgroup virtual file system, specify and query to
66which cgroup a task is assigned, and list the task pids assigned to
67a cgroup. Those creations and assignments only affect the hierarchy
68associated with that instance of the cgroup file system.
69
70On their own, the only use for cgroups is for simple job
71tracking. The intention is that other subsystems hook into the generic
72cgroup support to provide new attributes for cgroups, such as
73accounting/limiting the resources which processes in a cgroup can
Li Zefan45ce80f2009-01-15 13:50:59 -080074access. For example, cpusets (see Documentation/cgroups/cpusets.txt) allows
Paul Menageddbcc7e2007-10-18 23:39:30 -070075you to associate a set of CPUs and a set of memory nodes with the
76tasks in each cgroup.
77
781.2 Why are cgroups needed ?
79----------------------------
80
81There are multiple efforts to provide process aggregations in the
82Linux kernel, mainly for resource tracking purposes. Such efforts
83include cpusets, CKRM/ResGroups, UserBeanCounters, and virtual server
84namespaces. These all require the basic notion of a
85grouping/partitioning of processes, with newly forked processes ending
86in the same group (cgroup) as their parent process.
87
88The kernel cgroup patch provides the minimum essential kernel
89mechanisms required to efficiently implement such groups. It has
90minimal impact on the system fast paths, and provides hooks for
91specific subsystems such as cpusets to provide additional behaviour as
92desired.
93
94Multiple hierarchy support is provided to allow for situations where
95the division of tasks into cgroups is distinctly different for
96different subsystems - having parallel hierarchies allows each
97hierarchy to be a natural division of tasks, without having to handle
98complex combinations of tasks that would be present if several
99unrelated subsystems needed to be forced into the same tree of
100cgroups.
101
102At one extreme, each resource controller or subsystem could be in a
103separate hierarchy; at the other extreme, all subsystems
104would be attached to the same hierarchy.
105
106As an example of a scenario (originally proposed by vatsa@in.ibm.com)
107that can benefit from multiple hierarchies, consider a large
108university server with various users - students, professors, system
109tasks etc. The resource planning for this server could be along the
110following lines:
111
112 CPU : Top cpuset
113 / \
114 CPUSet1 CPUSet2
115 | |
116 (Profs) (Students)
117
118 In addition (system tasks) are attached to topcpuset (so
119 that they can run anywhere) with a limit of 20%
120
121 Memory : Professors (50%), students (30%), system (20%)
122
123 Disk : Prof (50%), students (30%), system (20%)
124
125 Network : WWW browsing (20%), Network File System (60%), others (20%)
126 / \
127 Prof (15%) students (5%)
128
Chris Samuelcaa790b2009-01-17 00:01:18 +1100129Browsers like Firefox/Lynx go into the WWW network class, while (k)nfsd go
Paul Menageddbcc7e2007-10-18 23:39:30 -0700130into NFS network class.
131
Chris Samuelcaa790b2009-01-17 00:01:18 +1100132At the same time Firefox/Lynx will share an appropriate CPU/Memory class
Paul Menageddbcc7e2007-10-18 23:39:30 -0700133depending on who launched it (prof/student).
134
135With the ability to classify tasks differently for different resources
136(by putting those resource subsystems in different hierarchies) then
137the admin can easily set up a script which receives exec notifications
138and depending on who is launching the browser he can
139
140 # echo browser_pid > /mnt/<restype>/<userclass>/tasks
141
142With only a single hierarchy, he now would potentially have to create
143a separate cgroup for every browser launched and associate it with
144approp network and other resource class. This may lead to
145proliferation of such cgroups.
146
147Also lets say that the administrator would like to give enhanced network
148access temporarily to a student's browser (since it is night and the user
Li Zefand19e0582008-02-23 15:24:08 -0800149wants to do online gaming :)) OR give one of the students simulation
Paul Menageddbcc7e2007-10-18 23:39:30 -0700150apps enhanced CPU power,
151
Li Zefand19e0582008-02-23 15:24:08 -0800152With ability to write pids directly to resource classes, it's just a
Paul Menageddbcc7e2007-10-18 23:39:30 -0700153matter of :
154
155 # echo pid > /mnt/network/<new_class>/tasks
156 (after some time)
157 # echo pid > /mnt/network/<orig_class>/tasks
158
159Without this ability, he would have to split the cgroup into
160multiple separate ones and then associate the new cgroups with the
161new resource classes.
162
163
164
1651.3 How are cgroups implemented ?
166---------------------------------
167
168Control Groups extends the kernel as follows:
169
170 - Each task in the system has a reference-counted pointer to a
171 css_set.
172
173 - A css_set contains a set of reference-counted pointers to
174 cgroup_subsys_state objects, one for each cgroup subsystem
175 registered in the system. There is no direct link from a task to
176 the cgroup of which it's a member in each hierarchy, but this
177 can be determined by following pointers through the
178 cgroup_subsys_state objects. This is because accessing the
179 subsystem state is something that's expected to happen frequently
180 and in performance-critical code, whereas operations that require a
181 task's actual cgroup assignments (in particular, moving between
Paul Menage817929e2007-10-18 23:39:36 -0700182 cgroups) are less common. A linked list runs through the cg_list
183 field of each task_struct using the css_set, anchored at
184 css_set->tasks.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700185
186 - A cgroup hierarchy filesystem can be mounted for browsing and
187 manipulation from user space.
188
189 - You can list all the tasks (by pid) attached to any cgroup.
190
191The implementation of cgroups requires a few, simple hooks
192into the rest of the kernel, none in performance critical paths:
193
194 - in init/main.c, to initialize the root cgroups and initial
195 css_set at system boot.
196
197 - in fork and exit, to attach and detach a task from its css_set.
198
199In addition a new file system, of type "cgroup" may be mounted, to
200enable browsing and modifying the cgroups presently known to the
201kernel. When mounting a cgroup hierarchy, you may specify a
202comma-separated list of subsystems to mount as the filesystem mount
203options. By default, mounting the cgroup filesystem attempts to
204mount a hierarchy containing all registered subsystems.
205
206If an active hierarchy with exactly the same set of subsystems already
207exists, it will be reused for the new mount. If no existing hierarchy
208matches, and any of the requested subsystems are in use in an existing
209hierarchy, the mount will fail with -EBUSY. Otherwise, a new hierarchy
210is activated, associated with the requested subsystems.
211
212It's not currently possible to bind a new subsystem to an active
213cgroup hierarchy, or to unbind a subsystem from an active cgroup
214hierarchy. This may be possible in future, but is fraught with nasty
215error-recovery issues.
216
217When a cgroup filesystem is unmounted, if there are any
218child cgroups created below the top-level cgroup, that hierarchy
219will remain active even though unmounted; if there are no
220child cgroups then the hierarchy will be deactivated.
221
222No new system calls are added for cgroups - all support for
223querying and modifying cgroups is via this cgroup file system.
224
225Each task under /proc has an added file named 'cgroup' displaying,
226for each active hierarchy, the subsystem names and the cgroup name
227as the path relative to the root of the cgroup file system.
228
229Each cgroup is represented by a directory in the cgroup file system
230containing the following files describing that cgroup:
231
Paul Menage7823da32009-10-07 16:32:26 -0700232 - tasks: list of tasks (by pid) attached to that cgroup. This list
233 is not guaranteed to be sorted. Writing a thread id into this file
234 moves the thread into this cgroup.
235 - cgroup.procs: list of tgids in the cgroup. This list is not
236 guaranteed to be sorted or free of duplicate tgids, and userspace
237 should sort/uniquify the list if this property is required.
238 Writing a tgid into this file moves all threads with that tgid into
239 this cgroup.
Li Zefand19e0582008-02-23 15:24:08 -0800240 - notify_on_release flag: run the release agent on exit?
241 - release_agent: the path to use for release notifications (this file
242 exists in the top cgroup only)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700243
244Other subsystems such as cpusets may add additional files in each
Li Zefand19e0582008-02-23 15:24:08 -0800245cgroup dir.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700246
247New cgroups are created using the mkdir system call or shell
248command. The properties of a cgroup, such as its flags, are
249modified by writing to the appropriate file in that cgroups
250directory, as listed above.
251
252The named hierarchical structure of nested cgroups allows partitioning
253a large system into nested, dynamically changeable, "soft-partitions".
254
255The attachment of each task, automatically inherited at fork by any
256children of that task, to a cgroup allows organizing the work load
257on a system into related sets of tasks. A task may be re-attached to
258any other cgroup, if allowed by the permissions on the necessary
259cgroup file system directories.
260
261When a task is moved from one cgroup to another, it gets a new
262css_set pointer - if there's an already existing css_set with the
263desired collection of cgroups then that group is reused, else a new
Li Zefanb851ee72009-02-18 14:48:14 -0800264css_set is allocated. The appropriate existing css_set is located by
265looking into a hash table.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700266
Paul Menage817929e2007-10-18 23:39:36 -0700267To allow access from a cgroup to the css_sets (and hence tasks)
268that comprise it, a set of cg_cgroup_link objects form a lattice;
269each cg_cgroup_link is linked into a list of cg_cgroup_links for
Li Zefand19e0582008-02-23 15:24:08 -0800270a single cgroup on its cgrp_link_list field, and a list of
Paul Menage817929e2007-10-18 23:39:36 -0700271cg_cgroup_links for a single css_set on its cg_link_list.
272
273Thus the set of tasks in a cgroup can be listed by iterating over
274each css_set that references the cgroup, and sub-iterating over
275each css_set's task set.
276
Paul Menageddbcc7e2007-10-18 23:39:30 -0700277The use of a Linux virtual file system (vfs) to represent the
278cgroup hierarchy provides for a familiar permission and name space
279for cgroups, with a minimum of additional kernel code.
280
2811.4 What does notify_on_release do ?
282------------------------------------
283
Paul Menageddbcc7e2007-10-18 23:39:30 -0700284If the notify_on_release flag is enabled (1) in a cgroup, then
285whenever the last task in the cgroup leaves (exits or attaches to
286some other cgroup) and the last child cgroup of that cgroup
287is removed, then the kernel runs the command specified by the contents
288of the "release_agent" file in that hierarchy's root directory,
289supplying the pathname (relative to the mount point of the cgroup
290file system) of the abandoned cgroup. This enables automatic
291removal of abandoned cgroups. The default value of
292notify_on_release in the root cgroup at system boot is disabled
293(0). The default value of other cgroups at creation is the current
294value of their parents notify_on_release setting. The default value of
295a cgroup hierarchy's release_agent path is empty.
296
2971.5 How do I use cgroups ?
298--------------------------
299
300To start a new job that is to be contained within a cgroup, using
301the "cpuset" cgroup subsystem, the steps are something like:
302
303 1) mkdir /dev/cgroup
304 2) mount -t cgroup -ocpuset cpuset /dev/cgroup
305 3) Create the new cgroup by doing mkdir's and write's (or echo's) in
306 the /dev/cgroup virtual file system.
307 4) Start a task that will be the "founding father" of the new job.
308 5) Attach that task to the new cgroup by writing its pid to the
309 /dev/cgroup tasks file for that cgroup.
310 6) fork, exec or clone the job tasks from this founding father task.
311
312For example, the following sequence of commands will setup a cgroup
313named "Charlie", containing just CPUs 2 and 3, and Memory Node 1,
314and then start a subshell 'sh' in that cgroup:
315
316 mount -t cgroup cpuset -ocpuset /dev/cgroup
317 cd /dev/cgroup
318 mkdir Charlie
319 cd Charlie
Dhaval Giani0f146a72008-05-12 14:02:31 -0700320 /bin/echo 2-3 > cpuset.cpus
321 /bin/echo 1 > cpuset.mems
Paul Menageddbcc7e2007-10-18 23:39:30 -0700322 /bin/echo $$ > tasks
323 sh
324 # The subshell 'sh' is now running in cgroup Charlie
325 # The next line should display '/Charlie'
326 cat /proc/self/cgroup
327
3282. Usage Examples and Syntax
329============================
330
3312.1 Basic Usage
332---------------
333
334Creating, modifying, using the cgroups can be done through the cgroup
335virtual filesystem.
336
Chris Samuelcaa790b2009-01-17 00:01:18 +1100337To mount a cgroup hierarchy with all available subsystems, type:
Paul Menageddbcc7e2007-10-18 23:39:30 -0700338# mount -t cgroup xxx /dev/cgroup
339
340The "xxx" is not interpreted by the cgroup code, but will appear in
341/proc/mounts so may be any useful identifying string that you like.
342
343To mount a cgroup hierarchy with just the cpuset and numtasks
344subsystems, type:
Li Zefanb6719ec2009-04-02 16:57:28 -0700345# mount -t cgroup -o cpuset,memory hier1 /dev/cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -0700346
347To change the set of subsystems bound to a mounted hierarchy, just
348remount with different options:
Li Zefanb6719ec2009-04-02 16:57:28 -0700349# mount -o remount,cpuset,ns hier1 /dev/cgroup
Paul Menageddbcc7e2007-10-18 23:39:30 -0700350
Li Zefanb6719ec2009-04-02 16:57:28 -0700351Now memory is removed from the hierarchy and ns is added.
352
353Note this will add ns to the hierarchy but won't remove memory or
354cpuset, because the new options are appended to the old ones:
355# mount -o remount,ns /dev/cgroup
356
357To Specify a hierarchy's release_agent:
358# mount -t cgroup -o cpuset,release_agent="/sbin/cpuset_release_agent" \
359 xxx /dev/cgroup
360
361Note that specifying 'release_agent' more than once will return failure.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700362
363Note that changing the set of subsystems is currently only supported
364when the hierarchy consists of a single (root) cgroup. Supporting
365the ability to arbitrarily bind/unbind subsystems from an existing
366cgroup hierarchy is intended to be implemented in the future.
367
368Then under /dev/cgroup you can find a tree that corresponds to the
369tree of the cgroups in the system. For instance, /dev/cgroup
370is the cgroup that holds the whole system.
371
Li Zefanb6719ec2009-04-02 16:57:28 -0700372If you want to change the value of release_agent:
373# echo "/sbin/new_release_agent" > /dev/cgroup/release_agent
374
375It can also be changed via remount.
376
Paul Menageddbcc7e2007-10-18 23:39:30 -0700377If you want to create a new cgroup under /dev/cgroup:
378# cd /dev/cgroup
379# mkdir my_cgroup
380
381Now you want to do something with this cgroup.
382# cd my_cgroup
383
384In this directory you can find several files:
385# ls
Paul Menage7823da32009-10-07 16:32:26 -0700386cgroup.procs notify_on_release tasks
Li Zefand19e0582008-02-23 15:24:08 -0800387(plus whatever files added by the attached subsystems)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700388
389Now attach your shell to this cgroup:
390# /bin/echo $$ > tasks
391
392You can also create cgroups inside your cgroup by using mkdir in this
393directory.
394# mkdir my_sub_cs
395
396To remove a cgroup, just use rmdir:
397# rmdir my_sub_cs
398
399This will fail if the cgroup is in use (has cgroups inside, or
400has processes attached, or is held alive by other subsystem-specific
401reference).
402
4032.2 Attaching processes
404-----------------------
405
406# /bin/echo PID > tasks
407
408Note that it is PID, not PIDs. You can only attach ONE task at a time.
409If you have several tasks to attach, you have to do it one after another:
410
411# /bin/echo PID1 > tasks
412# /bin/echo PID2 > tasks
413 ...
414# /bin/echo PIDn > tasks
415
Li Zefanbef67c52008-07-04 09:59:55 -0700416You can attach the current shell task by echoing 0:
417
418# echo 0 > tasks
419
Paul Menagec6d57f32009-09-23 15:56:19 -07004202.3 Mounting hierarchies by name
421--------------------------------
422
423Passing the name=<x> option when mounting a cgroups hierarchy
424associates the given name with the hierarchy. This can be used when
425mounting a pre-existing hierarchy, in order to refer to it by name
426rather than by its set of active subsystems. Each hierarchy is either
427nameless, or has a unique name.
428
429The name should match [\w.-]+
430
431When passing a name=<x> option for a new hierarchy, you need to
432specify subsystems manually; the legacy behaviour of mounting all
433subsystems when none are explicitly specified is not supported when
434you give a subsystem a name.
435
436The name of the subsystem appears as part of the hierarchy description
437in /proc/mounts and /proc/<pid>/cgroups.
438
Kirill A. Shutemov0dea1162010-03-10 15:22:20 -08004392.4 Notification API
440--------------------
441
442There is mechanism which allows to get notifications about changing
443status of a cgroup.
444
445To register new notification handler you need:
446 - create a file descriptor for event notification using eventfd(2);
447 - open a control file to be monitored (e.g. memory.usage_in_bytes);
448 - write "<event_fd> <control_fd> <args>" to cgroup.event_control.
449 Interpretation of args is defined by control file implementation;
450
451eventfd will be woken up by control file implementation or when the
452cgroup is removed.
453
454To unregister notification handler just close eventfd.
455
456NOTE: Support of notifications should be implemented for the control
457file. See documentation for the subsystem.
Paul Menagec6d57f32009-09-23 15:56:19 -0700458
Paul Menageddbcc7e2007-10-18 23:39:30 -07004593. Kernel API
460=============
461
4623.1 Overview
463------------
464
465Each kernel subsystem that wants to hook into the generic cgroup
466system needs to create a cgroup_subsys object. This contains
467various methods, which are callbacks from the cgroup system, along
468with a subsystem id which will be assigned by the cgroup system.
469
470Other fields in the cgroup_subsys object include:
471
472- subsys_id: a unique array index for the subsystem, indicating which
Li Zefand19e0582008-02-23 15:24:08 -0800473 entry in cgroup->subsys[] this subsystem should be managing.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700474
Li Zefand19e0582008-02-23 15:24:08 -0800475- name: should be initialized to a unique subsystem name. Should be
476 no longer than MAX_CGROUP_TYPE_NAMELEN.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700477
Li Zefand19e0582008-02-23 15:24:08 -0800478- early_init: indicate if the subsystem needs early initialization
479 at system boot.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700480
481Each cgroup object created by the system has an array of pointers,
482indexed by subsystem id; this pointer is entirely managed by the
483subsystem; the generic cgroup code will never touch this pointer.
484
4853.2 Synchronization
486-------------------
487
488There is a global mutex, cgroup_mutex, used by the cgroup
489system. This should be taken by anything that wants to modify a
490cgroup. It may also be taken to prevent cgroups from being
491modified, but more specific locks may be more appropriate in that
492situation.
493
494See kernel/cgroup.c for more details.
495
496Subsystems can take/release the cgroup_mutex via the functions
Paul Menageddbcc7e2007-10-18 23:39:30 -0700497cgroup_lock()/cgroup_unlock().
498
499Accessing a task's cgroup pointer may be done in the following ways:
500- while holding cgroup_mutex
501- while holding the task's alloc_lock (via task_lock())
502- inside an rcu_read_lock() section via rcu_dereference()
503
5043.3 Subsystem API
Li Zefand19e0582008-02-23 15:24:08 -0800505-----------------
Paul Menageddbcc7e2007-10-18 23:39:30 -0700506
507Each subsystem should:
508
509- add an entry in linux/cgroup_subsys.h
510- define a cgroup_subsys object called <name>_subsys
511
Ben Blume6a11052010-03-10 15:22:09 -0800512If a subsystem can be compiled as a module, it should also have in its
Ben Blumcf5d5942010-03-10 15:22:09 -0800513module initcall a call to cgroup_load_subsys(), and in its exitcall a
514call to cgroup_unload_subsys(). It should also set its_subsys.module =
515THIS_MODULE in its .c file.
Ben Blume6a11052010-03-10 15:22:09 -0800516
Paul Menageddbcc7e2007-10-18 23:39:30 -0700517Each subsystem may export the following methods. The only mandatory
518methods are create/destroy. Any others that are null are presumed to
519be successful no-ops.
520
Li Zefand19e0582008-02-23 15:24:08 -0800521struct cgroup_subsys_state *create(struct cgroup_subsys *ss,
522 struct cgroup *cgrp)
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800523(cgroup_mutex held by caller)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700524
525Called to create a subsystem state object for a cgroup. The
526subsystem should allocate its subsystem state object for the passed
527cgroup, returning a pointer to the new object on success or a
528negative error code. On success, the subsystem pointer should point to
529a structure of type cgroup_subsys_state (typically embedded in a
530larger subsystem-specific object), which will be initialized by the
531cgroup system. Note that this will be called at initialization to
532create the root subsystem state for this subsystem; this case can be
533identified by the passed cgroup object having a NULL parent (since
534it's the root of the hierarchy) and may be an appropriate place for
535initialization code.
536
Li Zefand19e0582008-02-23 15:24:08 -0800537void destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800538(cgroup_mutex held by caller)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700539
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800540The cgroup system is about to destroy the passed cgroup; the subsystem
541should do any necessary cleanup and free its subsystem state
542object. By the time this method is called, the cgroup has already been
543unlinked from the file system and from the child list of its parent;
544cgroup->parent is still valid. (Note - can also be called for a
545newly-created cgroup if an error occurs after this subsystem's
546create() method has been called for the new cgroup).
Paul Menageddbcc7e2007-10-18 23:39:30 -0700547
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700548int pre_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp);
Li Zefand19e0582008-02-23 15:24:08 -0800549
550Called before checking the reference count on each subsystem. This may
551be useful for subsystems which have some extra references even if
KAMEZAWA Hiroyukiec64f512009-04-02 16:57:26 -0700552there are not tasks in the cgroup. If pre_destroy() returns error code,
553rmdir() will fail with it. From this behavior, pre_destroy() can be
554called multiple times against a cgroup.
Li Zefand19e0582008-02-23 15:24:08 -0800555
556int can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Ben Blumbe367d02009-09-23 15:56:31 -0700557 struct task_struct *task, bool threadgroup)
Paul Menage8dc4f3e2008-02-07 00:13:45 -0800558(cgroup_mutex held by caller)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700559
560Called prior to moving a task into a cgroup; if the subsystem
561returns an error, this will abort the attach operation. If a NULL
562task is passed, then a successful result indicates that *any*
563unspecified task can be moved into the cgroup. Note that this isn't
564called on a fork. If this method returns 0 (success) then this should
Daisuke Nishimura2468c722010-03-10 15:22:03 -0800565remain valid while the caller holds cgroup_mutex and it is ensured that either
566attach() or cancel_attach() will be called in future. If threadgroup is
Ben Blumbe367d02009-09-23 15:56:31 -0700567true, then a successful result indicates that all threads in the given
568thread's threadgroup can be moved together.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700569
Daisuke Nishimura2468c722010-03-10 15:22:03 -0800570void cancel_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
571 struct task_struct *task, bool threadgroup)
572(cgroup_mutex held by caller)
573
574Called when a task attach operation has failed after can_attach() has succeeded.
575A subsystem whose can_attach() has some side-effects should provide this
576function, so that the subsytem can implement a rollback. If not, not necessary.
577This will be called only about subsystems whose can_attach() operation have
578succeeded.
579
Li Zefand19e0582008-02-23 15:24:08 -0800580void attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Ben Blumbe367d02009-09-23 15:56:31 -0700581 struct cgroup *old_cgrp, struct task_struct *task,
582 bool threadgroup)
Li Zefan18e7f1f2009-01-07 18:07:32 -0800583(cgroup_mutex held by caller)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700584
585Called after the task has been attached to the cgroup, to allow any
586post-attachment activity that requires memory allocations or blocking.
Ben Blumbe367d02009-09-23 15:56:31 -0700587If threadgroup is true, the subsystem should take care of all threads
588in the specified thread's threadgroup. Currently does not support any
589subsystem that might need the old_cgrp for every thread in the group.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700590
591void fork(struct cgroup_subsy *ss, struct task_struct *task)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700592
Li Zefane8d55fd2008-04-29 01:00:13 -0700593Called when a task is forked into a cgroup.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700594
595void exit(struct cgroup_subsys *ss, struct task_struct *task)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700596
Li Zefand19e0582008-02-23 15:24:08 -0800597Called during task exit.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700598
Li Zefand19e0582008-02-23 15:24:08 -0800599int populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Li Zefan18e7f1f2009-01-07 18:07:32 -0800600(cgroup_mutex held by caller)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700601
602Called after creation of a cgroup to allow a subsystem to populate
603the cgroup directory with file entries. The subsystem should make
604calls to cgroup_add_file() with objects of type cftype (see
605include/linux/cgroup.h for details). Note that although this
606method can return an error code, the error code is currently not
607always handled well.
608
Li Zefand19e0582008-02-23 15:24:08 -0800609void post_clone(struct cgroup_subsys *ss, struct cgroup *cgrp)
Li Zefan18e7f1f2009-01-07 18:07:32 -0800610(cgroup_mutex held by caller)
Paul Menage697f4162007-10-18 23:39:34 -0700611
Chris Samuelcaa790b2009-01-17 00:01:18 +1100612Called at the end of cgroup_clone() to do any parameter
Paul Menage697f4162007-10-18 23:39:34 -0700613initialization which might be required before a task could attach. For
614example in cpusets, no task may attach before 'cpus' and 'mems' are set
615up.
616
Paul Menageddbcc7e2007-10-18 23:39:30 -0700617void bind(struct cgroup_subsys *ss, struct cgroup *root)
Paul Menage999cd8a2009-01-07 18:08:36 -0800618(cgroup_mutex and ss->hierarchy_mutex held by caller)
Paul Menageddbcc7e2007-10-18 23:39:30 -0700619
620Called when a cgroup subsystem is rebound to a different hierarchy
621and root cgroup. Currently this will only involve movement between
622the default hierarchy (which never has sub-cgroups) and a hierarchy
623that is being created/destroyed (and hence has no sub-cgroups).
624
6254. Questions
626============
627
628Q: what's up with this '/bin/echo' ?
629A: bash's builtin 'echo' command does not check calls to write() against
630 errors. If you use it in the cgroup file system, you won't be
631 able to tell whether a command succeeded or failed.
632
633Q: When I attach processes, only the first of the line gets really attached !
634A: We can only return one error code per call to write(). So you should also
635 put only ONE pid.
636