cgroups.txt 26 KB

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