cgroup: rename ->create/post_create/pre_destroy/destroy() to ->css_alloc/online/offli...
[deliverable/linux.git] / Documentation / cgroups / cgroups.txt
CommitLineData
ddbcc7e8
PM
1 CGROUPS
2 -------
3
45ce80fb
LZ
4Written by Paul Menage <menage@google.com> based on
5Documentation/cgroups/cpusets.txt
ddbcc7e8
PM
6
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 ?
97978e6d
DL
21 1.5 What does clone_children do ?
22 1.6 How do I use cgroups ?
ddbcc7e8
PM
232. Usage Examples and Syntax
24 2.1 Basic Usage
25 2.2 Attaching processes
8ca712ea 26 2.3 Mounting hierarchies by name
0dea1168 27 2.4 Notification API
ddbcc7e8
PM
283. Kernel API
29 3.1 Overview
30 3.2 Synchronization
31 3.3 Subsystem API
19ec2567
AR
324. Extended attributes usage
335. Questions
ddbcc7e8
PM
34
351. Control Groups
d19e0583 36=================
ddbcc7e8
PM
37
381.1 What are cgroups ?
39----------------------
40
41Control Groups provide a mechanism for aggregating/partitioning sets of
42tasks, and all their future children, into hierarchical groups with
43specialized behaviour.
44
45Definitions:
46
47A *cgroup* associates a set of tasks with a set of parameters for one
48or more subsystems.
49
50A *subsystem* is a module that makes use of the task grouping
51facilities provided by cgroups to treat groups of tasks in
52particular ways. A subsystem is typically a "resource controller" that
53schedules a resource or applies per-cgroup limits, but it may be
54anything that wants to act on a group of processes, e.g. a
55virtualization subsystem.
56
57A *hierarchy* is a set of cgroups arranged in a tree, such that
58every task in the system is in exactly one of the cgroups in the
59hierarchy, and a set of subsystems; each subsystem has system-specific
60state attached to each cgroup in the hierarchy. Each hierarchy has
61an instance of the cgroup virtual filesystem associated with it.
62
caa790ba 63At any one time there may be multiple active hierarchies of task
ddbcc7e8
PM
64cgroups. Each hierarchy is a partition of all tasks in the system.
65
83b061fc 66User-level code may create and destroy cgroups by name in an
ddbcc7e8 67instance of the cgroup virtual file system, specify and query to
83b061fc 68which cgroup a task is assigned, and list the task PIDs assigned to
ddbcc7e8
PM
69a cgroup. Those creations and assignments only affect the hierarchy
70associated with that instance of the cgroup file system.
71
72On their own, the only use for cgroups is for simple job
73tracking. The intention is that other subsystems hook into the generic
74cgroup support to provide new attributes for cgroups, such as
75accounting/limiting the resources which processes in a cgroup can
83b061fc 76access. For example, cpusets (see Documentation/cgroups/cpusets.txt) allow
ddbcc7e8
PM
77you to associate a set of CPUs and a set of memory nodes with the
78tasks in each cgroup.
79
801.2 Why are cgroups needed ?
81----------------------------
82
83There are multiple efforts to provide process aggregations in the
83b061fc 84Linux kernel, mainly for resource-tracking purposes. Such efforts
ddbcc7e8
PM
85include cpusets, CKRM/ResGroups, UserBeanCounters, and virtual server
86namespaces. These all require the basic notion of a
87grouping/partitioning of processes, with newly forked processes ending
83b061fc 88up in the same group (cgroup) as their parent process.
ddbcc7e8
PM
89
90The kernel cgroup patch provides the minimum essential kernel
91mechanisms required to efficiently implement such groups. It has
92minimal impact on the system fast paths, and provides hooks for
93specific subsystems such as cpusets to provide additional behaviour as
94desired.
95
96Multiple hierarchy support is provided to allow for situations where
97the division of tasks into cgroups is distinctly different for
98different subsystems - having parallel hierarchies allows each
99hierarchy to be a natural division of tasks, without having to handle
100complex combinations of tasks that would be present if several
101unrelated subsystems needed to be forced into the same tree of
102cgroups.
103
104At one extreme, each resource controller or subsystem could be in a
105separate hierarchy; at the other extreme, all subsystems
106would be attached to the same hierarchy.
107
108As an example of a scenario (originally proposed by vatsa@in.ibm.com)
109that can benefit from multiple hierarchies, consider a large
110university server with various users - students, professors, system
111tasks etc. The resource planning for this server could be along the
112following lines:
113
6ad85239 114 CPU : "Top cpuset"
ddbcc7e8
PM
115 / \
116 CPUSet1 CPUSet2
6ad85239
GL
117 | |
118 (Professors) (Students)
ddbcc7e8
PM
119
120 In addition (system tasks) are attached to topcpuset (so
121 that they can run anywhere) with a limit of 20%
122
6ad85239 123 Memory : Professors (50%), Students (30%), system (20%)
ddbcc7e8 124
6ad85239 125 Disk : Professors (50%), Students (30%), system (20%)
ddbcc7e8
PM
126
127 Network : WWW browsing (20%), Network File System (60%), others (20%)
128 / \
6ad85239 129 Professors (15%) students (5%)
ddbcc7e8 130
83b061fc
MK
131Browsers like Firefox/Lynx go into the WWW network class, while (k)nfsd goes
132into the NFS network class.
ddbcc7e8 133
caa790ba 134At the same time Firefox/Lynx will share an appropriate CPU/Memory class
ddbcc7e8
PM
135depending on who launched it (prof/student).
136
137With the ability to classify tasks differently for different resources
83b061fc 138(by putting those resource subsystems in different hierarchies),
ddbcc7e8
PM
139the admin can easily set up a script which receives exec notifications
140and depending on who is launching the browser he can
141
f6e07d38 142 # echo browser_pid > /sys/fs/cgroup/<restype>/<userclass>/tasks
ddbcc7e8
PM
143
144With only a single hierarchy, he now would potentially have to create
145a separate cgroup for every browser launched and associate it with
67de0162 146appropriate network and other resource class. This may lead to
ddbcc7e8
PM
147proliferation of such cgroups.
148
83b061fc 149Also let's say that the administrator would like to give enhanced network
ddbcc7e8 150access temporarily to a student's browser (since it is night and the user
83b061fc
MK
151wants to do online gaming :)) OR give one of the student's simulation
152apps enhanced CPU power.
ddbcc7e8 153
83b061fc
MK
154With ability to write PIDs directly to resource classes, it's just a
155matter of:
ddbcc7e8 156
f6e07d38 157 # echo pid > /sys/fs/cgroup/network/<new_class>/tasks
ddbcc7e8 158 (after some time)
f6e07d38 159 # echo pid > /sys/fs/cgroup/network/<orig_class>/tasks
ddbcc7e8 160
83b061fc 161Without this ability, the administrator would have to split the cgroup into
ddbcc7e8
PM
162multiple separate ones and then associate the new cgroups with the
163new resource classes.
164
165
166
1671.3 How are cgroups implemented ?
168---------------------------------
169
170Control Groups extends the kernel as follows:
171
172 - Each task in the system has a reference-counted pointer to a
173 css_set.
174
175 - A css_set contains a set of reference-counted pointers to
176 cgroup_subsys_state objects, one for each cgroup subsystem
177 registered in the system. There is no direct link from a task to
178 the cgroup of which it's a member in each hierarchy, but this
179 can be determined by following pointers through the
180 cgroup_subsys_state objects. This is because accessing the
181 subsystem state is something that's expected to happen frequently
182 and in performance-critical code, whereas operations that require a
183 task's actual cgroup assignments (in particular, moving between
817929ec
PM
184 cgroups) are less common. A linked list runs through the cg_list
185 field of each task_struct using the css_set, anchored at
186 css_set->tasks.
ddbcc7e8 187
83b061fc 188 - A cgroup hierarchy filesystem can be mounted for browsing and
ddbcc7e8
PM
189 manipulation from user space.
190
83b061fc 191 - You can list all the tasks (by PID) attached to any cgroup.
ddbcc7e8
PM
192
193The implementation of cgroups requires a few, simple hooks
83b061fc 194into the rest of the kernel, none in performance-critical paths:
ddbcc7e8
PM
195
196 - in init/main.c, to initialize the root cgroups and initial
197 css_set at system boot.
198
199 - in fork and exit, to attach and detach a task from its css_set.
200
83b061fc 201In addition, a new file system of type "cgroup" may be mounted, to
ddbcc7e8
PM
202enable browsing and modifying the cgroups presently known to the
203kernel. When mounting a cgroup hierarchy, you may specify a
204comma-separated list of subsystems to mount as the filesystem mount
205options. By default, mounting the cgroup filesystem attempts to
206mount a hierarchy containing all registered subsystems.
207
208If an active hierarchy with exactly the same set of subsystems already
209exists, it will be reused for the new mount. If no existing hierarchy
210matches, and any of the requested subsystems are in use in an existing
211hierarchy, the mount will fail with -EBUSY. Otherwise, a new hierarchy
212is activated, associated with the requested subsystems.
213
214It's not currently possible to bind a new subsystem to an active
215cgroup hierarchy, or to unbind a subsystem from an active cgroup
216hierarchy. This may be possible in future, but is fraught with nasty
217error-recovery issues.
218
219When a cgroup filesystem is unmounted, if there are any
220child cgroups created below the top-level cgroup, that hierarchy
221will remain active even though unmounted; if there are no
222child cgroups then the hierarchy will be deactivated.
223
224No new system calls are added for cgroups - all support for
225querying and modifying cgroups is via this cgroup file system.
226
227Each task under /proc has an added file named 'cgroup' displaying,
228for each active hierarchy, the subsystem names and the cgroup name
229as the path relative to the root of the cgroup file system.
230
231Each cgroup is represented by a directory in the cgroup file system
232containing the following files describing that cgroup:
233
83b061fc
MK
234 - tasks: list of tasks (by PID) attached to that cgroup. This list
235 is not guaranteed to be sorted. Writing a thread ID into this file
7823da36 236 moves the thread into this cgroup.
83b061fc
MK
237 - cgroup.procs: list of thread group IDs in the cgroup. This list is
238 not guaranteed to be sorted or free of duplicate TGIDs, and userspace
7823da36 239 should sort/uniquify the list if this property is required.
83b061fc 240 Writing a thread group ID into this file moves all threads in that
74a1166d 241 group into this cgroup.
d19e0583
LZ
242 - notify_on_release flag: run the release agent on exit?
243 - release_agent: the path to use for release notifications (this file
244 exists in the top cgroup only)
ddbcc7e8
PM
245
246Other subsystems such as cpusets may add additional files in each
d19e0583 247cgroup dir.
ddbcc7e8
PM
248
249New cgroups are created using the mkdir system call or shell
250command. The properties of a cgroup, such as its flags, are
251modified by writing to the appropriate file in that cgroups
252directory, as listed above.
253
254The named hierarchical structure of nested cgroups allows partitioning
255a large system into nested, dynamically changeable, "soft-partitions".
256
257The attachment of each task, automatically inherited at fork by any
258children of that task, to a cgroup allows organizing the work load
259on a system into related sets of tasks. A task may be re-attached to
260any other cgroup, if allowed by the permissions on the necessary
261cgroup file system directories.
262
263When a task is moved from one cgroup to another, it gets a new
264css_set pointer - if there's an already existing css_set with the
83b061fc 265desired collection of cgroups then that group is reused, otherwise a new
b851ee79
LZ
266css_set is allocated. The appropriate existing css_set is located by
267looking into a hash table.
ddbcc7e8 268
817929ec
PM
269To allow access from a cgroup to the css_sets (and hence tasks)
270that comprise it, a set of cg_cgroup_link objects form a lattice;
271each cg_cgroup_link is linked into a list of cg_cgroup_links for
d19e0583 272a single cgroup on its cgrp_link_list field, and a list of
817929ec
PM
273cg_cgroup_links for a single css_set on its cg_link_list.
274
275Thus the set of tasks in a cgroup can be listed by iterating over
276each css_set that references the cgroup, and sub-iterating over
277each css_set's task set.
278
ddbcc7e8
PM
279The use of a Linux virtual file system (vfs) to represent the
280cgroup hierarchy provides for a familiar permission and name space
281for cgroups, with a minimum of additional kernel code.
282
2831.4 What does notify_on_release do ?
284------------------------------------
285
ddbcc7e8
PM
286If the notify_on_release flag is enabled (1) in a cgroup, then
287whenever the last task in the cgroup leaves (exits or attaches to
288some other cgroup) and the last child cgroup of that cgroup
289is removed, then the kernel runs the command specified by the contents
290of the "release_agent" file in that hierarchy's root directory,
291supplying the pathname (relative to the mount point of the cgroup
292file system) of the abandoned cgroup. This enables automatic
293removal of abandoned cgroups. The default value of
294notify_on_release in the root cgroup at system boot is disabled
295(0). The default value of other cgroups at creation is the current
83b061fc 296value of their parents' notify_on_release settings. The default value of
ddbcc7e8
PM
297a cgroup hierarchy's release_agent path is empty.
298
97978e6d
DL
2991.5 What does clone_children do ?
300---------------------------------
301
302If the clone_children flag is enabled (1) in a cgroup, then all
303cgroups created beneath will call the post_clone callbacks for each
304subsystem of the newly created cgroup. Usually when this callback is
305implemented for a subsystem, it copies the values of the parent
306subsystem, this is the case for the cpuset.
307
3081.6 How do I use cgroups ?
ddbcc7e8
PM
309--------------------------
310
311To start a new job that is to be contained within a cgroup, using
312the "cpuset" cgroup subsystem, the steps are something like:
313
f6e07d38
JS
314 1) mount -t tmpfs cgroup_root /sys/fs/cgroup
315 2) mkdir /sys/fs/cgroup/cpuset
316 3) mount -t cgroup -ocpuset cpuset /sys/fs/cgroup/cpuset
317 4) Create the new cgroup by doing mkdir's and write's (or echo's) in
318 the /sys/fs/cgroup virtual file system.
319 5) Start a task that will be the "founding father" of the new job.
83b061fc 320 6) Attach that task to the new cgroup by writing its PID to the
f6e07d38
JS
321 /sys/fs/cgroup/cpuset/tasks file for that cgroup.
322 7) fork, exec or clone the job tasks from this founding father task.
ddbcc7e8
PM
323
324For example, the following sequence of commands will setup a cgroup
325named "Charlie", containing just CPUs 2 and 3, and Memory Node 1,
326and then start a subshell 'sh' in that cgroup:
327
f6e07d38
JS
328 mount -t tmpfs cgroup_root /sys/fs/cgroup
329 mkdir /sys/fs/cgroup/cpuset
330 mount -t cgroup cpuset -ocpuset /sys/fs/cgroup/cpuset
331 cd /sys/fs/cgroup/cpuset
ddbcc7e8
PM
332 mkdir Charlie
333 cd Charlie
0f146a76
DG
334 /bin/echo 2-3 > cpuset.cpus
335 /bin/echo 1 > cpuset.mems
ddbcc7e8
PM
336 /bin/echo $$ > tasks
337 sh
338 # The subshell 'sh' is now running in cgroup Charlie
339 # The next line should display '/Charlie'
340 cat /proc/self/cgroup
341
3422. Usage Examples and Syntax
343============================
344
3452.1 Basic Usage
346---------------
347
83b061fc 348Creating, modifying, using cgroups can be done through the cgroup
ddbcc7e8
PM
349virtual filesystem.
350
caa790ba 351To mount a cgroup hierarchy with all available subsystems, type:
f6e07d38 352# mount -t cgroup xxx /sys/fs/cgroup
ddbcc7e8
PM
353
354The "xxx" is not interpreted by the cgroup code, but will appear in
355/proc/mounts so may be any useful identifying string that you like.
356
bb6405ea
EM
357Note: Some subsystems do not work without some user input first. For instance,
358if cpusets are enabled the user will have to populate the cpus and mems files
359for each new cgroup created before that group can be used.
360
f6e07d38
JS
361As explained in section `1.2 Why are cgroups needed?' you should create
362different hierarchies of cgroups for each single resource or group of
363resources you want to control. Therefore, you should mount a tmpfs on
364/sys/fs/cgroup and create directories for each cgroup resource or resource
365group.
366
367# mount -t tmpfs cgroup_root /sys/fs/cgroup
368# mkdir /sys/fs/cgroup/rg1
369
595f4b69 370To mount a cgroup hierarchy with just the cpuset and memory
ddbcc7e8 371subsystems, type:
f6e07d38 372# mount -t cgroup -o cpuset,memory hier1 /sys/fs/cgroup/rg1
ddbcc7e8 373
9a8054aa
DW
374While remounting cgroups is currently supported, it is not recommend
375to use it. Remounting allows changing bound subsystems and
376release_agent. Rebinding is hardly useful as it only works when the
377hierarchy is empty and release_agent itself should be replaced with
378conventional fsnotify. The support for remounting will be removed in
379the future.
b6719ec1
LZ
380
381To Specify a hierarchy's release_agent:
382# mount -t cgroup -o cpuset,release_agent="/sbin/cpuset_release_agent" \
f6e07d38 383 xxx /sys/fs/cgroup/rg1
b6719ec1
LZ
384
385Note that specifying 'release_agent' more than once will return failure.
ddbcc7e8
PM
386
387Note that changing the set of subsystems is currently only supported
388when the hierarchy consists of a single (root) cgroup. Supporting
389the ability to arbitrarily bind/unbind subsystems from an existing
390cgroup hierarchy is intended to be implemented in the future.
391
f6e07d38
JS
392Then under /sys/fs/cgroup/rg1 you can find a tree that corresponds to the
393tree of the cgroups in the system. For instance, /sys/fs/cgroup/rg1
ddbcc7e8
PM
394is the cgroup that holds the whole system.
395
b6719ec1 396If you want to change the value of release_agent:
f6e07d38 397# echo "/sbin/new_release_agent" > /sys/fs/cgroup/rg1/release_agent
b6719ec1
LZ
398
399It can also be changed via remount.
400
f6e07d38
JS
401If you want to create a new cgroup under /sys/fs/cgroup/rg1:
402# cd /sys/fs/cgroup/rg1
ddbcc7e8
PM
403# mkdir my_cgroup
404
405Now you want to do something with this cgroup.
406# cd my_cgroup
407
408In this directory you can find several files:
409# ls
7823da36 410cgroup.procs notify_on_release tasks
d19e0583 411(plus whatever files added by the attached subsystems)
ddbcc7e8
PM
412
413Now attach your shell to this cgroup:
414# /bin/echo $$ > tasks
415
416You can also create cgroups inside your cgroup by using mkdir in this
417directory.
418# mkdir my_sub_cs
419
420To remove a cgroup, just use rmdir:
421# rmdir my_sub_cs
422
423This will fail if the cgroup is in use (has cgroups inside, or
424has processes attached, or is held alive by other subsystem-specific
425reference).
426
4272.2 Attaching processes
428-----------------------
429
430# /bin/echo PID > tasks
431
432Note that it is PID, not PIDs. You can only attach ONE task at a time.
433If you have several tasks to attach, you have to do it one after another:
434
435# /bin/echo PID1 > tasks
436# /bin/echo PID2 > tasks
437 ...
438# /bin/echo PIDn > tasks
439
bef67c5a
LZ
440You can attach the current shell task by echoing 0:
441
442# echo 0 > tasks
443
74a1166d 444You can use the cgroup.procs file instead of the tasks file to move all
83b061fc 445threads in a threadgroup at once. Echoing the PID of any task in a
74a1166d
BB
446threadgroup to cgroup.procs causes all tasks in that threadgroup to be
447be attached to the cgroup. Writing 0 to cgroup.procs moves all tasks
448in the writing task's threadgroup.
449
bb6405ea
EM
450Note: Since every task is always a member of exactly one cgroup in each
451mounted hierarchy, to remove a task from its current cgroup you must
452move it into a new cgroup (possibly the root cgroup) by writing to the
453new cgroup's tasks file.
454
5fe69d7e
LZ
455Note: Due to some restrictions enforced by some cgroup subsystems, moving
456a process to another cgroup can fail.
bb6405ea 457
c6d57f33
PM
4582.3 Mounting hierarchies by name
459--------------------------------
460
461Passing the name=<x> option when mounting a cgroups hierarchy
462associates the given name with the hierarchy. This can be used when
463mounting a pre-existing hierarchy, in order to refer to it by name
464rather than by its set of active subsystems. Each hierarchy is either
465nameless, or has a unique name.
466
467The name should match [\w.-]+
468
469When passing a name=<x> option for a new hierarchy, you need to
470specify subsystems manually; the legacy behaviour of mounting all
471subsystems when none are explicitly specified is not supported when
472you give a subsystem a name.
473
474The name of the subsystem appears as part of the hierarchy description
475in /proc/mounts and /proc/<pid>/cgroups.
476
0dea1168
KS
4772.4 Notification API
478--------------------
479
480There is mechanism which allows to get notifications about changing
481status of a cgroup.
482
83b061fc 483To register a new notification handler you need to:
0dea1168
KS
484 - create a file descriptor for event notification using eventfd(2);
485 - open a control file to be monitored (e.g. memory.usage_in_bytes);
486 - write "<event_fd> <control_fd> <args>" to cgroup.event_control.
487 Interpretation of args is defined by control file implementation;
488
489eventfd will be woken up by control file implementation or when the
490cgroup is removed.
491
83b061fc 492To unregister a notification handler just close eventfd.
0dea1168
KS
493
494NOTE: Support of notifications should be implemented for the control
495file. See documentation for the subsystem.
c6d57f33 496
ddbcc7e8
PM
4973. Kernel API
498=============
499
5003.1 Overview
501------------
502
503Each kernel subsystem that wants to hook into the generic cgroup
504system needs to create a cgroup_subsys object. This contains
505various methods, which are callbacks from the cgroup system, along
83b061fc 506with a subsystem ID which will be assigned by the cgroup system.
ddbcc7e8
PM
507
508Other fields in the cgroup_subsys object include:
509
510- subsys_id: a unique array index for the subsystem, indicating which
d19e0583 511 entry in cgroup->subsys[] this subsystem should be managing.
ddbcc7e8 512
d19e0583
LZ
513- name: should be initialized to a unique subsystem name. Should be
514 no longer than MAX_CGROUP_TYPE_NAMELEN.
ddbcc7e8 515
d19e0583
LZ
516- early_init: indicate if the subsystem needs early initialization
517 at system boot.
ddbcc7e8
PM
518
519Each cgroup object created by the system has an array of pointers,
83b061fc 520indexed by subsystem ID; this pointer is entirely managed by the
ddbcc7e8
PM
521subsystem; the generic cgroup code will never touch this pointer.
522
5233.2 Synchronization
524-------------------
525
526There is a global mutex, cgroup_mutex, used by the cgroup
527system. This should be taken by anything that wants to modify a
528cgroup. It may also be taken to prevent cgroups from being
529modified, but more specific locks may be more appropriate in that
530situation.
531
532See kernel/cgroup.c for more details.
533
534Subsystems can take/release the cgroup_mutex via the functions
ddbcc7e8
PM
535cgroup_lock()/cgroup_unlock().
536
537Accessing a task's cgroup pointer may be done in the following ways:
538- while holding cgroup_mutex
539- while holding the task's alloc_lock (via task_lock())
540- inside an rcu_read_lock() section via rcu_dereference()
541
5423.3 Subsystem API
d19e0583 543-----------------
ddbcc7e8
PM
544
545Each subsystem should:
546
547- add an entry in linux/cgroup_subsys.h
548- define a cgroup_subsys object called <name>_subsys
549
e6a1105b 550If a subsystem can be compiled as a module, it should also have in its
cf5d5941
BB
551module initcall a call to cgroup_load_subsys(), and in its exitcall a
552call to cgroup_unload_subsys(). It should also set its_subsys.module =
553THIS_MODULE in its .c file.
e6a1105b 554
ddbcc7e8 555Each subsystem may export the following methods. The only mandatory
92fb9748 556methods are css_alloc/free. Any others that are null are presumed to
ddbcc7e8
PM
557be successful no-ops.
558
92fb9748 559struct cgroup_subsys_state *css_alloc(struct cgroup *cgrp)
8dc4f3e1 560(cgroup_mutex held by caller)
ddbcc7e8 561
92fb9748 562Called to allocate a subsystem state object for a cgroup. The
ddbcc7e8
PM
563subsystem should allocate its subsystem state object for the passed
564cgroup, returning a pointer to the new object on success or a
92fb9748 565ERR_PTR() value. On success, the subsystem pointer should point to
ddbcc7e8
PM
566a structure of type cgroup_subsys_state (typically embedded in a
567larger subsystem-specific object), which will be initialized by the
568cgroup system. Note that this will be called at initialization to
569create the root subsystem state for this subsystem; this case can be
570identified by the passed cgroup object having a NULL parent (since
571it's the root of the hierarchy) and may be an appropriate place for
572initialization code.
573
92fb9748 574int css_online(struct cgroup *cgrp)
8dc4f3e1 575(cgroup_mutex held by caller)
ddbcc7e8 576
92fb9748
TH
577Called after @cgrp successfully completed all allocations and made
578visible to cgroup_for_each_child/descendant_*() iterators. The
579subsystem may choose to fail creation by returning -errno. This
580callback can be used to implement reliable state sharing and
581propagation along the hierarchy. See the comment on
582cgroup_for_each_descendant_pre() for details.
583
584void css_offline(struct cgroup *cgrp);
585
586This is the counterpart of css_online() and called iff css_online()
587has succeeded on @cgrp. This signifies the beginning of the end of
588@cgrp. @cgrp is being removed and the subsystem should start dropping
589all references it's holding on @cgrp. When all references are dropped,
590cgroup removal will proceed to the next step - css_free(). After this
591callback, @cgrp should be considered dead to the subsystem.
592
593void css_free(struct cgroup *cgrp)
594(cgroup_mutex held by caller)
595
596The cgroup system is about to free @cgrp; the subsystem should free
597its subsystem state object. By the time this method is called, @cgrp
598is completely unused; @cgrp->parent is still valid. (Note - can also
599be called for a newly-created cgroup if an error occurs after this
600subsystem's create() method has been called for the new cgroup).
d19e0583 601
761b3ef5 602int can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
8dc4f3e1 603(cgroup_mutex held by caller)
ddbcc7e8 604
2f7ee569
TH
605Called prior to moving one or more tasks into a cgroup; if the
606subsystem returns an error, this will abort the attach operation.
607@tset contains the tasks to be attached and is guaranteed to have at
608least one task in it.
609
610If there are multiple tasks in the taskset, then:
611 - it's guaranteed that all are from the same thread group
612 - @tset contains all tasks from the thread group whether or not
613 they're switching cgroups
614 - the first task is the leader
615
616Each @tset entry also contains the task's old cgroup and tasks which
617aren't switching cgroup can be skipped easily using the
618cgroup_taskset_for_each() iterator. Note that this isn't called on a
619fork. If this method returns 0 (success) then this should remain valid
620while the caller holds cgroup_mutex and it is ensured that either
f780bdb7
BB
621attach() or cancel_attach() will be called in future.
622
761b3ef5 623void cancel_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
2468c723
DN
624(cgroup_mutex held by caller)
625
626Called when a task attach operation has failed after can_attach() has succeeded.
627A subsystem whose can_attach() has some side-effects should provide this
88393161 628function, so that the subsystem can implement a rollback. If not, not necessary.
2468c723 629This will be called only about subsystems whose can_attach() operation have
2f7ee569 630succeeded. The parameters are identical to can_attach().
2468c723 631
761b3ef5 632void attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
18e7f1f0 633(cgroup_mutex held by caller)
ddbcc7e8
PM
634
635Called after the task has been attached to the cgroup, to allow any
636post-attachment activity that requires memory allocations or blocking.
2f7ee569 637The parameters are identical to can_attach().
f780bdb7 638
761b3ef5 639void fork(struct task_struct *task)
ddbcc7e8 640
e8d55fde 641Called when a task is forked into a cgroup.
ddbcc7e8 642
761b3ef5 643void exit(struct task_struct *task)
ddbcc7e8 644
d19e0583 645Called during task exit.
ddbcc7e8 646
761b3ef5 647void post_clone(struct cgroup *cgrp)
18e7f1f0 648(cgroup_mutex held by caller)
697f4161 649
a77aea92 650Called during cgroup_create() to do any parameter
697f4161 651initialization which might be required before a task could attach. For
83b061fc 652example, in cpusets, no task may attach before 'cpus' and 'mems' are set
697f4161
PM
653up.
654
761b3ef5 655void bind(struct cgroup *root)
6be96a5c 656(cgroup_mutex held by caller)
ddbcc7e8
PM
657
658Called when a cgroup subsystem is rebound to a different hierarchy
659and root cgroup. Currently this will only involve movement between
660the default hierarchy (which never has sub-cgroups) and a hierarchy
661that is being created/destroyed (and hence has no sub-cgroups).
662
19ec2567
AR
6634. Extended attribute usage
664===========================
665
666cgroup filesystem supports certain types of extended attributes in its
667directories and files. The current supported types are:
668 - Trusted (XATTR_TRUSTED)
669 - Security (XATTR_SECURITY)
670
671Both require CAP_SYS_ADMIN capability to set.
672
673Like in tmpfs, the extended attributes in cgroup filesystem are stored
674using kernel memory and it's advised to keep the usage at minimum. This
675is the reason why user defined extended attributes are not supported, since
676any user can do it and there's no limit in the value size.
677
678The current known users for this feature are SELinux to limit cgroup usage
679in containers and systemd for assorted meta data like main PID in a cgroup
680(systemd creates a cgroup per service).
681
6825. Questions
ddbcc7e8
PM
683============
684
685Q: what's up with this '/bin/echo' ?
686A: bash's builtin 'echo' command does not check calls to write() against
687 errors. If you use it in the cgroup file system, you won't be
688 able to tell whether a command succeeded or failed.
689
690Q: When I attach processes, only the first of the line gets really attached !
691A: We can only return one error code per call to write(). So you should also
83b061fc 692 put only ONE PID.
ddbcc7e8 693
This page took 0.497842 seconds and 5 git commands to generate.