cgroups.txt 20 KB

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