Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 1 | CGROUPS |
| 2 | ------- |
| 3 | |
Li Zefan | 45ce80f | 2009-01-15 13:50:59 -0800 | [diff] [blame] | 4 | Written by Paul Menage <menage@google.com> based on |
| 5 | Documentation/cgroups/cpusets.txt |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 6 | |
| 7 | Original copyright statements from cpusets.txt: |
| 8 | Portions Copyright (C) 2004 BULL SA. |
| 9 | Portions Copyright (c) 2004-2006 Silicon Graphics, Inc. |
| 10 | Modified by Paul Jackson <pj@sgi.com> |
| 11 | Modified by Christoph Lameter <clameter@sgi.com> |
| 12 | |
| 13 | CONTENTS: |
| 14 | ========= |
| 15 | |
| 16 | 1. 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 ? |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 21 | 1.5 What does clone_children do ? |
| 22 | 1.6 How do I use cgroups ? |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 23 | 2. Usage Examples and Syntax |
| 24 | 2.1 Basic Usage |
| 25 | 2.2 Attaching processes |
Kirill A. Shutemov | 8ca712e | 2010-03-10 15:22:10 -0800 | [diff] [blame] | 26 | 2.3 Mounting hierarchies by name |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 27 | 2.4 Notification API |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 28 | 3. Kernel API |
| 29 | 3.1 Overview |
| 30 | 3.2 Synchronization |
| 31 | 3.3 Subsystem API |
Aristeu Rozanski | 19ec256 | 2012-09-11 16:28:10 -0400 | [diff] [blame] | 32 | 4. Extended attributes usage |
| 33 | 5. Questions |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 34 | |
| 35 | 1. Control Groups |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 36 | ================= |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 37 | |
| 38 | 1.1 What are cgroups ? |
| 39 | ---------------------- |
| 40 | |
| 41 | Control Groups provide a mechanism for aggregating/partitioning sets of |
| 42 | tasks, and all their future children, into hierarchical groups with |
| 43 | specialized behaviour. |
| 44 | |
| 45 | Definitions: |
| 46 | |
| 47 | A *cgroup* associates a set of tasks with a set of parameters for one |
| 48 | or more subsystems. |
| 49 | |
| 50 | A *subsystem* is a module that makes use of the task grouping |
| 51 | facilities provided by cgroups to treat groups of tasks in |
| 52 | particular ways. A subsystem is typically a "resource controller" that |
| 53 | schedules a resource or applies per-cgroup limits, but it may be |
| 54 | anything that wants to act on a group of processes, e.g. a |
| 55 | virtualization subsystem. |
| 56 | |
| 57 | A *hierarchy* is a set of cgroups arranged in a tree, such that |
| 58 | every task in the system is in exactly one of the cgroups in the |
| 59 | hierarchy, and a set of subsystems; each subsystem has system-specific |
| 60 | state attached to each cgroup in the hierarchy. Each hierarchy has |
| 61 | an instance of the cgroup virtual filesystem associated with it. |
| 62 | |
Chris Samuel | caa790b | 2009-01-17 00:01:18 +1100 | [diff] [blame] | 63 | At any one time there may be multiple active hierarchies of task |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 64 | cgroups. Each hierarchy is a partition of all tasks in the system. |
| 65 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 66 | User-level code may create and destroy cgroups by name in an |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 67 | instance of the cgroup virtual file system, specify and query to |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 68 | which cgroup a task is assigned, and list the task PIDs assigned to |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 69 | a cgroup. Those creations and assignments only affect the hierarchy |
| 70 | associated with that instance of the cgroup file system. |
| 71 | |
| 72 | On their own, the only use for cgroups is for simple job |
| 73 | tracking. The intention is that other subsystems hook into the generic |
| 74 | cgroup support to provide new attributes for cgroups, such as |
| 75 | accounting/limiting the resources which processes in a cgroup can |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 76 | access. For example, cpusets (see Documentation/cgroups/cpusets.txt) allow |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 77 | you to associate a set of CPUs and a set of memory nodes with the |
| 78 | tasks in each cgroup. |
| 79 | |
| 80 | 1.2 Why are cgroups needed ? |
| 81 | ---------------------------- |
| 82 | |
| 83 | There are multiple efforts to provide process aggregations in the |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 84 | Linux kernel, mainly for resource-tracking purposes. Such efforts |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 85 | include cpusets, CKRM/ResGroups, UserBeanCounters, and virtual server |
| 86 | namespaces. These all require the basic notion of a |
| 87 | grouping/partitioning of processes, with newly forked processes ending |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 88 | up in the same group (cgroup) as their parent process. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 89 | |
| 90 | The kernel cgroup patch provides the minimum essential kernel |
| 91 | mechanisms required to efficiently implement such groups. It has |
| 92 | minimal impact on the system fast paths, and provides hooks for |
| 93 | specific subsystems such as cpusets to provide additional behaviour as |
| 94 | desired. |
| 95 | |
| 96 | Multiple hierarchy support is provided to allow for situations where |
| 97 | the division of tasks into cgroups is distinctly different for |
| 98 | different subsystems - having parallel hierarchies allows each |
| 99 | hierarchy to be a natural division of tasks, without having to handle |
| 100 | complex combinations of tasks that would be present if several |
| 101 | unrelated subsystems needed to be forced into the same tree of |
| 102 | cgroups. |
| 103 | |
| 104 | At one extreme, each resource controller or subsystem could be in a |
| 105 | separate hierarchy; at the other extreme, all subsystems |
| 106 | would be attached to the same hierarchy. |
| 107 | |
| 108 | As an example of a scenario (originally proposed by vatsa@in.ibm.com) |
| 109 | that can benefit from multiple hierarchies, consider a large |
| 110 | university server with various users - students, professors, system |
| 111 | tasks etc. The resource planning for this server could be along the |
| 112 | following lines: |
| 113 | |
Geunsik Lim | 6ad8523 | 2011-04-04 15:10:45 -0700 | [diff] [blame] | 114 | CPU : "Top cpuset" |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 115 | / \ |
| 116 | CPUSet1 CPUSet2 |
Geunsik Lim | 6ad8523 | 2011-04-04 15:10:45 -0700 | [diff] [blame] | 117 | | | |
| 118 | (Professors) (Students) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 119 | |
| 120 | In addition (system tasks) are attached to topcpuset (so |
| 121 | that they can run anywhere) with a limit of 20% |
| 122 | |
Geunsik Lim | 6ad8523 | 2011-04-04 15:10:45 -0700 | [diff] [blame] | 123 | Memory : Professors (50%), Students (30%), system (20%) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 124 | |
Geunsik Lim | 6ad8523 | 2011-04-04 15:10:45 -0700 | [diff] [blame] | 125 | Disk : Professors (50%), Students (30%), system (20%) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 126 | |
| 127 | Network : WWW browsing (20%), Network File System (60%), others (20%) |
| 128 | / \ |
Geunsik Lim | 6ad8523 | 2011-04-04 15:10:45 -0700 | [diff] [blame] | 129 | Professors (15%) students (5%) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 130 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 131 | Browsers like Firefox/Lynx go into the WWW network class, while (k)nfsd goes |
| 132 | into the NFS network class. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 133 | |
Chris Samuel | caa790b | 2009-01-17 00:01:18 +1100 | [diff] [blame] | 134 | At the same time Firefox/Lynx will share an appropriate CPU/Memory class |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 135 | depending on who launched it (prof/student). |
| 136 | |
| 137 | With the ability to classify tasks differently for different resources |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 138 | (by putting those resource subsystems in different hierarchies), |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 139 | the admin can easily set up a script which receives exec notifications |
| 140 | and depending on who is launching the browser he can |
| 141 | |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 142 | # echo browser_pid > /sys/fs/cgroup/<restype>/<userclass>/tasks |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 143 | |
| 144 | With only a single hierarchy, he now would potentially have to create |
| 145 | a separate cgroup for every browser launched and associate it with |
Jörg Sommer | 67de016 | 2011-06-15 13:00:47 -0700 | [diff] [blame] | 146 | appropriate network and other resource class. This may lead to |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 147 | proliferation of such cgroups. |
| 148 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 149 | Also let's say that the administrator would like to give enhanced network |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 150 | access temporarily to a student's browser (since it is night and the user |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 151 | wants to do online gaming :)) OR give one of the student's simulation |
| 152 | apps enhanced CPU power. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 153 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 154 | With ability to write PIDs directly to resource classes, it's just a |
| 155 | matter of: |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 156 | |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 157 | # echo pid > /sys/fs/cgroup/network/<new_class>/tasks |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 158 | (after some time) |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 159 | # echo pid > /sys/fs/cgroup/network/<orig_class>/tasks |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 160 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 161 | Without this ability, the administrator would have to split the cgroup into |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 162 | multiple separate ones and then associate the new cgroups with the |
| 163 | new resource classes. |
| 164 | |
| 165 | |
| 166 | |
| 167 | 1.3 How are cgroups implemented ? |
| 168 | --------------------------------- |
| 169 | |
| 170 | Control 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 |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 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. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 187 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 188 | - A cgroup hierarchy filesystem can be mounted for browsing and |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 189 | manipulation from user space. |
| 190 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 191 | - You can list all the tasks (by PID) attached to any cgroup. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 192 | |
| 193 | The implementation of cgroups requires a few, simple hooks |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 194 | into the rest of the kernel, none in performance-critical paths: |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 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 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 201 | In addition, a new file system of type "cgroup" may be mounted, to |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 202 | enable browsing and modifying the cgroups presently known to the |
| 203 | kernel. When mounting a cgroup hierarchy, you may specify a |
| 204 | comma-separated list of subsystems to mount as the filesystem mount |
| 205 | options. By default, mounting the cgroup filesystem attempts to |
| 206 | mount a hierarchy containing all registered subsystems. |
| 207 | |
| 208 | If an active hierarchy with exactly the same set of subsystems already |
| 209 | exists, it will be reused for the new mount. If no existing hierarchy |
| 210 | matches, and any of the requested subsystems are in use in an existing |
| 211 | hierarchy, the mount will fail with -EBUSY. Otherwise, a new hierarchy |
| 212 | is activated, associated with the requested subsystems. |
| 213 | |
| 214 | It's not currently possible to bind a new subsystem to an active |
| 215 | cgroup hierarchy, or to unbind a subsystem from an active cgroup |
| 216 | hierarchy. This may be possible in future, but is fraught with nasty |
| 217 | error-recovery issues. |
| 218 | |
| 219 | When a cgroup filesystem is unmounted, if there are any |
| 220 | child cgroups created below the top-level cgroup, that hierarchy |
| 221 | will remain active even though unmounted; if there are no |
| 222 | child cgroups then the hierarchy will be deactivated. |
| 223 | |
| 224 | No new system calls are added for cgroups - all support for |
| 225 | querying and modifying cgroups is via this cgroup file system. |
| 226 | |
| 227 | Each task under /proc has an added file named 'cgroup' displaying, |
| 228 | for each active hierarchy, the subsystem names and the cgroup name |
| 229 | as the path relative to the root of the cgroup file system. |
| 230 | |
| 231 | Each cgroup is represented by a directory in the cgroup file system |
| 232 | containing the following files describing that cgroup: |
| 233 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 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 |
Paul Menage | 7823da3 | 2009-10-07 16:32:26 -0700 | [diff] [blame] | 236 | moves the thread into this cgroup. |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 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 |
Paul Menage | 7823da3 | 2009-10-07 16:32:26 -0700 | [diff] [blame] | 239 | should sort/uniquify the list if this property is required. |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 240 | Writing a thread group ID into this file moves all threads in that |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 241 | group into this cgroup. |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 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) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 245 | |
| 246 | Other subsystems such as cpusets may add additional files in each |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 247 | cgroup dir. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 248 | |
| 249 | New cgroups are created using the mkdir system call or shell |
| 250 | command. The properties of a cgroup, such as its flags, are |
| 251 | modified by writing to the appropriate file in that cgroups |
| 252 | directory, as listed above. |
| 253 | |
| 254 | The named hierarchical structure of nested cgroups allows partitioning |
| 255 | a large system into nested, dynamically changeable, "soft-partitions". |
| 256 | |
| 257 | The attachment of each task, automatically inherited at fork by any |
| 258 | children of that task, to a cgroup allows organizing the work load |
| 259 | on a system into related sets of tasks. A task may be re-attached to |
| 260 | any other cgroup, if allowed by the permissions on the necessary |
| 261 | cgroup file system directories. |
| 262 | |
| 263 | When a task is moved from one cgroup to another, it gets a new |
| 264 | css_set pointer - if there's an already existing css_set with the |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 265 | desired collection of cgroups then that group is reused, otherwise a new |
Li Zefan | b851ee7 | 2009-02-18 14:48:14 -0800 | [diff] [blame] | 266 | css_set is allocated. The appropriate existing css_set is located by |
| 267 | looking into a hash table. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 268 | |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 269 | To allow access from a cgroup to the css_sets (and hence tasks) |
| 270 | that comprise it, a set of cg_cgroup_link objects form a lattice; |
| 271 | each cg_cgroup_link is linked into a list of cg_cgroup_links for |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 272 | a single cgroup on its cgrp_link_list field, and a list of |
Paul Menage | 817929e | 2007-10-18 23:39:36 -0700 | [diff] [blame] | 273 | cg_cgroup_links for a single css_set on its cg_link_list. |
| 274 | |
| 275 | Thus the set of tasks in a cgroup can be listed by iterating over |
| 276 | each css_set that references the cgroup, and sub-iterating over |
| 277 | each css_set's task set. |
| 278 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 279 | The use of a Linux virtual file system (vfs) to represent the |
| 280 | cgroup hierarchy provides for a familiar permission and name space |
| 281 | for cgroups, with a minimum of additional kernel code. |
| 282 | |
| 283 | 1.4 What does notify_on_release do ? |
| 284 | ------------------------------------ |
| 285 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 286 | If the notify_on_release flag is enabled (1) in a cgroup, then |
| 287 | whenever the last task in the cgroup leaves (exits or attaches to |
| 288 | some other cgroup) and the last child cgroup of that cgroup |
| 289 | is removed, then the kernel runs the command specified by the contents |
| 290 | of the "release_agent" file in that hierarchy's root directory, |
| 291 | supplying the pathname (relative to the mount point of the cgroup |
| 292 | file system) of the abandoned cgroup. This enables automatic |
| 293 | removal of abandoned cgroups. The default value of |
| 294 | notify_on_release in the root cgroup at system boot is disabled |
| 295 | (0). The default value of other cgroups at creation is the current |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 296 | value of their parents' notify_on_release settings. The default value of |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 297 | a cgroup hierarchy's release_agent path is empty. |
| 298 | |
Daniel Lezcano | 97978e6 | 2010-10-27 15:33:35 -0700 | [diff] [blame] | 299 | 1.5 What does clone_children do ? |
| 300 | --------------------------------- |
| 301 | |
| 302 | If the clone_children flag is enabled (1) in a cgroup, then all |
| 303 | cgroups created beneath will call the post_clone callbacks for each |
| 304 | subsystem of the newly created cgroup. Usually when this callback is |
| 305 | implemented for a subsystem, it copies the values of the parent |
| 306 | subsystem, this is the case for the cpuset. |
| 307 | |
| 308 | 1.6 How do I use cgroups ? |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 309 | -------------------------- |
| 310 | |
| 311 | To start a new job that is to be contained within a cgroup, using |
| 312 | the "cpuset" cgroup subsystem, the steps are something like: |
| 313 | |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 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. |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 320 | 6) Attach that task to the new cgroup by writing its PID to the |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 321 | /sys/fs/cgroup/cpuset/tasks file for that cgroup. |
| 322 | 7) fork, exec or clone the job tasks from this founding father task. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 323 | |
| 324 | For example, the following sequence of commands will setup a cgroup |
| 325 | named "Charlie", containing just CPUs 2 and 3, and Memory Node 1, |
| 326 | and then start a subshell 'sh' in that cgroup: |
| 327 | |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 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 |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 332 | mkdir Charlie |
| 333 | cd Charlie |
Dhaval Giani | 0f146a7 | 2008-05-12 14:02:31 -0700 | [diff] [blame] | 334 | /bin/echo 2-3 > cpuset.cpus |
| 335 | /bin/echo 1 > cpuset.mems |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 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 | |
| 342 | 2. Usage Examples and Syntax |
| 343 | ============================ |
| 344 | |
| 345 | 2.1 Basic Usage |
| 346 | --------------- |
| 347 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 348 | Creating, modifying, using cgroups can be done through the cgroup |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 349 | virtual filesystem. |
| 350 | |
Chris Samuel | caa790b | 2009-01-17 00:01:18 +1100 | [diff] [blame] | 351 | To mount a cgroup hierarchy with all available subsystems, type: |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 352 | # mount -t cgroup xxx /sys/fs/cgroup |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 353 | |
| 354 | The "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 | |
Eric B Munson | bb6405e | 2011-03-15 16:12:18 -0700 | [diff] [blame] | 357 | Note: Some subsystems do not work without some user input first. For instance, |
| 358 | if cpusets are enabled the user will have to populate the cpus and mems files |
| 359 | for each new cgroup created before that group can be used. |
| 360 | |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 361 | As explained in section `1.2 Why are cgroups needed?' you should create |
| 362 | different hierarchies of cgroups for each single resource or group of |
| 363 | resources you want to control. Therefore, you should mount a tmpfs on |
| 364 | /sys/fs/cgroup and create directories for each cgroup resource or resource |
| 365 | group. |
| 366 | |
| 367 | # mount -t tmpfs cgroup_root /sys/fs/cgroup |
| 368 | # mkdir /sys/fs/cgroup/rg1 |
| 369 | |
Trevor Woerner | 595f4b6 | 2010-05-26 14:42:35 -0700 | [diff] [blame] | 370 | To mount a cgroup hierarchy with just the cpuset and memory |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 371 | subsystems, type: |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 372 | # mount -t cgroup -o cpuset,memory hier1 /sys/fs/cgroup/rg1 |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 373 | |
Daniel Wagner | 9a8054a | 2012-07-10 10:49:18 +0200 | [diff] [blame] | 374 | While remounting cgroups is currently supported, it is not recommend |
| 375 | to use it. Remounting allows changing bound subsystems and |
| 376 | release_agent. Rebinding is hardly useful as it only works when the |
| 377 | hierarchy is empty and release_agent itself should be replaced with |
| 378 | conventional fsnotify. The support for remounting will be removed in |
| 379 | the future. |
Li Zefan | b6719ec | 2009-04-02 16:57:28 -0700 | [diff] [blame] | 380 | |
| 381 | To Specify a hierarchy's release_agent: |
| 382 | # mount -t cgroup -o cpuset,release_agent="/sbin/cpuset_release_agent" \ |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 383 | xxx /sys/fs/cgroup/rg1 |
Li Zefan | b6719ec | 2009-04-02 16:57:28 -0700 | [diff] [blame] | 384 | |
| 385 | Note that specifying 'release_agent' more than once will return failure. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 386 | |
| 387 | Note that changing the set of subsystems is currently only supported |
| 388 | when the hierarchy consists of a single (root) cgroup. Supporting |
| 389 | the ability to arbitrarily bind/unbind subsystems from an existing |
| 390 | cgroup hierarchy is intended to be implemented in the future. |
| 391 | |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 392 | Then under /sys/fs/cgroup/rg1 you can find a tree that corresponds to the |
| 393 | tree of the cgroups in the system. For instance, /sys/fs/cgroup/rg1 |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 394 | is the cgroup that holds the whole system. |
| 395 | |
Li Zefan | b6719ec | 2009-04-02 16:57:28 -0700 | [diff] [blame] | 396 | If you want to change the value of release_agent: |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 397 | # echo "/sbin/new_release_agent" > /sys/fs/cgroup/rg1/release_agent |
Li Zefan | b6719ec | 2009-04-02 16:57:28 -0700 | [diff] [blame] | 398 | |
| 399 | It can also be changed via remount. |
| 400 | |
Jörg Sommer | f6e07d3 | 2011-06-15 12:59:45 -0700 | [diff] [blame] | 401 | If you want to create a new cgroup under /sys/fs/cgroup/rg1: |
| 402 | # cd /sys/fs/cgroup/rg1 |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 403 | # mkdir my_cgroup |
| 404 | |
| 405 | Now you want to do something with this cgroup. |
| 406 | # cd my_cgroup |
| 407 | |
| 408 | In this directory you can find several files: |
| 409 | # ls |
Paul Menage | 7823da3 | 2009-10-07 16:32:26 -0700 | [diff] [blame] | 410 | cgroup.procs notify_on_release tasks |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 411 | (plus whatever files added by the attached subsystems) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 412 | |
| 413 | Now attach your shell to this cgroup: |
| 414 | # /bin/echo $$ > tasks |
| 415 | |
| 416 | You can also create cgroups inside your cgroup by using mkdir in this |
| 417 | directory. |
| 418 | # mkdir my_sub_cs |
| 419 | |
| 420 | To remove a cgroup, just use rmdir: |
| 421 | # rmdir my_sub_cs |
| 422 | |
| 423 | This will fail if the cgroup is in use (has cgroups inside, or |
| 424 | has processes attached, or is held alive by other subsystem-specific |
| 425 | reference). |
| 426 | |
| 427 | 2.2 Attaching processes |
| 428 | ----------------------- |
| 429 | |
| 430 | # /bin/echo PID > tasks |
| 431 | |
| 432 | Note that it is PID, not PIDs. You can only attach ONE task at a time. |
| 433 | If 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 | |
Li Zefan | bef67c5 | 2008-07-04 09:59:55 -0700 | [diff] [blame] | 440 | You can attach the current shell task by echoing 0: |
| 441 | |
| 442 | # echo 0 > tasks |
| 443 | |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 444 | You can use the cgroup.procs file instead of the tasks file to move all |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 445 | threads in a threadgroup at once. Echoing the PID of any task in a |
Ben Blum | 74a1166 | 2011-05-26 16:25:20 -0700 | [diff] [blame] | 446 | threadgroup to cgroup.procs causes all tasks in that threadgroup to be |
| 447 | be attached to the cgroup. Writing 0 to cgroup.procs moves all tasks |
| 448 | in the writing task's threadgroup. |
| 449 | |
Eric B Munson | bb6405e | 2011-03-15 16:12:18 -0700 | [diff] [blame] | 450 | Note: Since every task is always a member of exactly one cgroup in each |
| 451 | mounted hierarchy, to remove a task from its current cgroup you must |
| 452 | move it into a new cgroup (possibly the root cgroup) by writing to the |
| 453 | new cgroup's tasks file. |
| 454 | |
Li Zefan | 5fe69d7 | 2011-11-04 11:22:05 -0700 | [diff] [blame] | 455 | Note: Due to some restrictions enforced by some cgroup subsystems, moving |
| 456 | a process to another cgroup can fail. |
Eric B Munson | bb6405e | 2011-03-15 16:12:18 -0700 | [diff] [blame] | 457 | |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 458 | 2.3 Mounting hierarchies by name |
| 459 | -------------------------------- |
| 460 | |
| 461 | Passing the name=<x> option when mounting a cgroups hierarchy |
| 462 | associates the given name with the hierarchy. This can be used when |
| 463 | mounting a pre-existing hierarchy, in order to refer to it by name |
| 464 | rather than by its set of active subsystems. Each hierarchy is either |
| 465 | nameless, or has a unique name. |
| 466 | |
| 467 | The name should match [\w.-]+ |
| 468 | |
| 469 | When passing a name=<x> option for a new hierarchy, you need to |
| 470 | specify subsystems manually; the legacy behaviour of mounting all |
| 471 | subsystems when none are explicitly specified is not supported when |
| 472 | you give a subsystem a name. |
| 473 | |
| 474 | The name of the subsystem appears as part of the hierarchy description |
| 475 | in /proc/mounts and /proc/<pid>/cgroups. |
| 476 | |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 477 | 2.4 Notification API |
| 478 | -------------------- |
| 479 | |
| 480 | There is mechanism which allows to get notifications about changing |
| 481 | status of a cgroup. |
| 482 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 483 | To register a new notification handler you need to: |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 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 | |
| 489 | eventfd will be woken up by control file implementation or when the |
| 490 | cgroup is removed. |
| 491 | |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 492 | To unregister a notification handler just close eventfd. |
Kirill A. Shutemov | 0dea116 | 2010-03-10 15:22:20 -0800 | [diff] [blame] | 493 | |
| 494 | NOTE: Support of notifications should be implemented for the control |
| 495 | file. See documentation for the subsystem. |
Paul Menage | c6d57f3 | 2009-09-23 15:56:19 -0700 | [diff] [blame] | 496 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 497 | 3. Kernel API |
| 498 | ============= |
| 499 | |
| 500 | 3.1 Overview |
| 501 | ------------ |
| 502 | |
| 503 | Each kernel subsystem that wants to hook into the generic cgroup |
| 504 | system needs to create a cgroup_subsys object. This contains |
| 505 | various methods, which are callbacks from the cgroup system, along |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 506 | with a subsystem ID which will be assigned by the cgroup system. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 507 | |
| 508 | Other fields in the cgroup_subsys object include: |
| 509 | |
| 510 | - subsys_id: a unique array index for the subsystem, indicating which |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 511 | entry in cgroup->subsys[] this subsystem should be managing. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 512 | |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 513 | - name: should be initialized to a unique subsystem name. Should be |
| 514 | no longer than MAX_CGROUP_TYPE_NAMELEN. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 515 | |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 516 | - early_init: indicate if the subsystem needs early initialization |
| 517 | at system boot. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 518 | |
| 519 | Each cgroup object created by the system has an array of pointers, |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 520 | indexed by subsystem ID; this pointer is entirely managed by the |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 521 | subsystem; the generic cgroup code will never touch this pointer. |
| 522 | |
| 523 | 3.2 Synchronization |
| 524 | ------------------- |
| 525 | |
| 526 | There is a global mutex, cgroup_mutex, used by the cgroup |
| 527 | system. This should be taken by anything that wants to modify a |
| 528 | cgroup. It may also be taken to prevent cgroups from being |
| 529 | modified, but more specific locks may be more appropriate in that |
| 530 | situation. |
| 531 | |
| 532 | See kernel/cgroup.c for more details. |
| 533 | |
| 534 | Subsystems can take/release the cgroup_mutex via the functions |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 535 | cgroup_lock()/cgroup_unlock(). |
| 536 | |
| 537 | Accessing 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 | |
| 542 | 3.3 Subsystem API |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 543 | ----------------- |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 544 | |
| 545 | Each subsystem should: |
| 546 | |
| 547 | - add an entry in linux/cgroup_subsys.h |
| 548 | - define a cgroup_subsys object called <name>_subsys |
| 549 | |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 550 | If a subsystem can be compiled as a module, it should also have in its |
Ben Blum | cf5d594 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 551 | module initcall a call to cgroup_load_subsys(), and in its exitcall a |
| 552 | call to cgroup_unload_subsys(). It should also set its_subsys.module = |
| 553 | THIS_MODULE in its .c file. |
Ben Blum | e6a1105 | 2010-03-10 15:22:09 -0800 | [diff] [blame] | 554 | |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 555 | Each subsystem may export the following methods. The only mandatory |
| 556 | methods are create/destroy. Any others that are null are presumed to |
| 557 | be successful no-ops. |
| 558 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 559 | struct cgroup_subsys_state *create(struct cgroup *cgrp) |
Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 560 | (cgroup_mutex held by caller) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 561 | |
| 562 | Called to create a subsystem state object for a cgroup. The |
| 563 | subsystem should allocate its subsystem state object for the passed |
| 564 | cgroup, returning a pointer to the new object on success or a |
| 565 | negative error code. On success, the subsystem pointer should point to |
| 566 | a structure of type cgroup_subsys_state (typically embedded in a |
| 567 | larger subsystem-specific object), which will be initialized by the |
| 568 | cgroup system. Note that this will be called at initialization to |
| 569 | create the root subsystem state for this subsystem; this case can be |
| 570 | identified by the passed cgroup object having a NULL parent (since |
| 571 | it's the root of the hierarchy) and may be an appropriate place for |
| 572 | initialization code. |
| 573 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 574 | void destroy(struct cgroup *cgrp) |
Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 575 | (cgroup_mutex held by caller) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 576 | |
Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 577 | The cgroup system is about to destroy the passed cgroup; the subsystem |
| 578 | should do any necessary cleanup and free its subsystem state |
| 579 | object. By the time this method is called, the cgroup has already been |
| 580 | unlinked from the file system and from the child list of its parent; |
| 581 | cgroup->parent is still valid. (Note - can also be called for a |
| 582 | newly-created cgroup if an error occurs after this subsystem's |
| 583 | create() method has been called for the new cgroup). |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 584 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 585 | int pre_destroy(struct cgroup *cgrp); |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 586 | |
| 587 | Called before checking the reference count on each subsystem. This may |
| 588 | be useful for subsystems which have some extra references even if |
KAMEZAWA Hiroyuki | ec64f51 | 2009-04-02 16:57:26 -0700 | [diff] [blame] | 589 | there are not tasks in the cgroup. If pre_destroy() returns error code, |
| 590 | rmdir() will fail with it. From this behavior, pre_destroy() can be |
| 591 | called multiple times against a cgroup. |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 592 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 593 | int can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset) |
Paul Menage | 8dc4f3e | 2008-02-07 00:13:45 -0800 | [diff] [blame] | 594 | (cgroup_mutex held by caller) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 595 | |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 596 | Called prior to moving one or more tasks into a cgroup; if the |
| 597 | subsystem returns an error, this will abort the attach operation. |
| 598 | @tset contains the tasks to be attached and is guaranteed to have at |
| 599 | least one task in it. |
| 600 | |
| 601 | If there are multiple tasks in the taskset, then: |
| 602 | - it's guaranteed that all are from the same thread group |
| 603 | - @tset contains all tasks from the thread group whether or not |
| 604 | they're switching cgroups |
| 605 | - the first task is the leader |
| 606 | |
| 607 | Each @tset entry also contains the task's old cgroup and tasks which |
| 608 | aren't switching cgroup can be skipped easily using the |
| 609 | cgroup_taskset_for_each() iterator. Note that this isn't called on a |
| 610 | fork. If this method returns 0 (success) then this should remain valid |
| 611 | while the caller holds cgroup_mutex and it is ensured that either |
Ben Blum | f780bdb | 2011-05-26 16:25:19 -0700 | [diff] [blame] | 612 | attach() or cancel_attach() will be called in future. |
| 613 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 614 | void cancel_attach(struct cgroup *cgrp, struct cgroup_taskset *tset) |
Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 615 | (cgroup_mutex held by caller) |
| 616 | |
| 617 | Called when a task attach operation has failed after can_attach() has succeeded. |
| 618 | A subsystem whose can_attach() has some side-effects should provide this |
Thomas Weber | 8839316 | 2010-03-16 11:47:56 +0100 | [diff] [blame] | 619 | function, so that the subsystem can implement a rollback. If not, not necessary. |
Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 620 | This will be called only about subsystems whose can_attach() operation have |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 621 | succeeded. The parameters are identical to can_attach(). |
Daisuke Nishimura | 2468c72 | 2010-03-10 15:22:03 -0800 | [diff] [blame] | 622 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 623 | void attach(struct cgroup *cgrp, struct cgroup_taskset *tset) |
Li Zefan | 18e7f1f | 2009-01-07 18:07:32 -0800 | [diff] [blame] | 624 | (cgroup_mutex held by caller) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 625 | |
| 626 | Called after the task has been attached to the cgroup, to allow any |
| 627 | post-attachment activity that requires memory allocations or blocking. |
Tejun Heo | 2f7ee56 | 2011-12-12 18:12:21 -0800 | [diff] [blame] | 628 | The parameters are identical to can_attach(). |
Ben Blum | f780bdb | 2011-05-26 16:25:19 -0700 | [diff] [blame] | 629 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 630 | void fork(struct task_struct *task) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 631 | |
Li Zefan | e8d55fd | 2008-04-29 01:00:13 -0700 | [diff] [blame] | 632 | Called when a task is forked into a cgroup. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 633 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 634 | void exit(struct task_struct *task) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 635 | |
Li Zefan | d19e058 | 2008-02-23 15:24:08 -0800 | [diff] [blame] | 636 | Called during task exit. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 637 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 638 | void post_clone(struct cgroup *cgrp) |
Li Zefan | 18e7f1f | 2009-01-07 18:07:32 -0800 | [diff] [blame] | 639 | (cgroup_mutex held by caller) |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 640 | |
Daniel Lezcano | a77aea9 | 2011-05-26 16:25:23 -0700 | [diff] [blame] | 641 | Called during cgroup_create() to do any parameter |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 642 | initialization which might be required before a task could attach. For |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 643 | example, in cpusets, no task may attach before 'cpus' and 'mems' are set |
Paul Menage | 697f416 | 2007-10-18 23:39:34 -0700 | [diff] [blame] | 644 | up. |
| 645 | |
Li Zefan | 761b3ef | 2012-01-31 13:47:36 +0800 | [diff] [blame] | 646 | void bind(struct cgroup *root) |
Li Zefan | 6be96a5 | 2012-06-06 19:12:30 -0700 | [diff] [blame] | 647 | (cgroup_mutex held by caller) |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 648 | |
| 649 | Called when a cgroup subsystem is rebound to a different hierarchy |
| 650 | and root cgroup. Currently this will only involve movement between |
| 651 | the default hierarchy (which never has sub-cgroups) and a hierarchy |
| 652 | that is being created/destroyed (and hence has no sub-cgroups). |
| 653 | |
Aristeu Rozanski | 19ec256 | 2012-09-11 16:28:10 -0400 | [diff] [blame] | 654 | 4. Extended attribute usage |
| 655 | =========================== |
| 656 | |
| 657 | cgroup filesystem supports certain types of extended attributes in its |
| 658 | directories and files. The current supported types are: |
| 659 | - Trusted (XATTR_TRUSTED) |
| 660 | - Security (XATTR_SECURITY) |
| 661 | |
| 662 | Both require CAP_SYS_ADMIN capability to set. |
| 663 | |
| 664 | Like in tmpfs, the extended attributes in cgroup filesystem are stored |
| 665 | using kernel memory and it's advised to keep the usage at minimum. This |
| 666 | is the reason why user defined extended attributes are not supported, since |
| 667 | any user can do it and there's no limit in the value size. |
| 668 | |
| 669 | The current known users for this feature are SELinux to limit cgroup usage |
| 670 | in containers and systemd for assorted meta data like main PID in a cgroup |
| 671 | (systemd creates a cgroup per service). |
| 672 | |
| 673 | 5. Questions |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 674 | ============ |
| 675 | |
| 676 | Q: what's up with this '/bin/echo' ? |
| 677 | A: bash's builtin 'echo' command does not check calls to write() against |
| 678 | errors. If you use it in the cgroup file system, you won't be |
| 679 | able to tell whether a command succeeded or failed. |
| 680 | |
| 681 | Q: When I attach processes, only the first of the line gets really attached ! |
| 682 | A: We can only return one error code per call to write(). So you should also |
Michael Kerrisk | 83b061f | 2012-09-11 13:20:20 +0200 | [diff] [blame] | 683 | put only ONE PID. |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 684 | |