config.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. #ifndef _LIBCGROUP_CONFIG_H
  2. #define _LIBCGROUP_CONFIG_H
  3. #ifndef _LIBCGROUP_H_INSIDE
  4. #error "Only <libcgroup.h> should be included directly."
  5. #endif
  6. #ifndef SWIG
  7. #include <features.h>
  8. #endif
  9. __BEGIN_DECLS
  10. /**
  11. * @defgroup group_config 5. Configuration
  12. * @{
  13. *
  14. * @name Configuration file
  15. * @{
  16. *
  17. * @c libcgroup can mount and create control groups and set their parameters as
  18. * specified in a configuration file.
  19. *
  20. * @todo add this description?: These functions are mostly intended
  21. * to be used by internal @c libcgroup tools, however they are fully supported
  22. * and applications can benefit from them.
  23. */
  24. /**
  25. * Load configuration file and mount and create control groups described there.
  26. * See cgconfig.conf man page for format of the file.
  27. * @param pathname Name of the configuration file to load.
  28. */
  29. int cgroup_config_load_config(const char *pathname);
  30. /**
  31. * Delete all control groups and unmount all hierarchies.
  32. */
  33. int cgroup_unload_cgroups(void);
  34. /**
  35. * Delete all cgroups and unmount all mount points defined in specified config
  36. * file.
  37. *
  38. * The groups are either removed recursively or only the empty ones, based
  39. * on given flags. Mount point are always umounted only if they are empty,
  40. * regardless of any flags.
  41. *
  42. * The groups are sorted before they are removed, so the removal of empty ones
  43. * actually works (i.e. subgroups are removed first).
  44. *
  45. * @param pathname Name of the configuration file to unload.
  46. * @param flags Combination of CGFLAG_DELETE_* flags, which indicate what and
  47. * how to delete.
  48. */
  49. int cgroup_config_unload_config(const char *pathname, int flags);
  50. /**
  51. * Sets default permissions of groups created by subsequent
  52. * cgroup_config_load_config() calls. If a config file contains a 'default {}'
  53. * section, the default permissions from the config file is then used.
  54. *
  55. * Use cgroup_new_cgroup() to create a dummy group and cgroup_set_uid_gid() and
  56. * cgroup_set_permissions() to set its permissions. Use NO_UID_GID instead of
  57. * GID/UID and NO_PERMS instead of file/directory permissions to let kernel
  58. * decide the default permissions where you don't want specific user and/or
  59. * permissions. Kernel then uses current user/group and permissions from umask
  60. * then.
  61. *
  62. * @param new_default New default permissions from this group are copied to
  63. * libcgroup internal structures. I.e., this group can be freed immediatelly
  64. * after this function returns.
  65. */
  66. int cgroup_config_set_default(struct cgroup *new_default);
  67. /**
  68. * Initializes the templates cache and load it from file pathname.
  69. */
  70. int cgroup_init_templates_cache(char *pathname);
  71. /**
  72. * Reloads the templates list from file pathname.
  73. */
  74. int cgroup_reload_cached_templates(char *pathname);
  75. /**
  76. * Physically create a new control group in kernel, based on given control
  77. * group template and configuration file. If given template is not set in
  78. * configuration file, then the procedure works create the control group
  79. * using cgroup_create_cgroup() function
  80. *
  81. * The flags can alter the behavior of this function:
  82. * CGFLAG_USE_TEMPLATE_CACHE: Use cached templates instead of
  83. * parsing the config file
  84. *
  85. * @param pathname Name of the configuration file with template definitions
  86. * @param cgroup Wanted control group - contains substitute name and wanted
  87. * controllers.
  88. * @param template_name Template name used for cgroup setting
  89. * @param flags Bit flags to change the behavior
  90. */
  91. int cgroup_config_create_template_group(
  92. struct cgroup *cgroup, char *template_name,
  93. int flags);
  94. /**
  95. * @}
  96. * @}
  97. */
  98. __END_DECLS
  99. #endif /*_LIBCGROUP_CONFIG_H*/