chiark / gitweb /
767eea2fb5aec2509ad71aa1b41ff66f82c6e145
[elogind.git] / src / core / cgroup.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2013 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #include <stdbool.h>
25
26 #include "list.h"
27 #include "time-util.h"
28 #include "logind.h"
29
30 typedef struct CGroupContext CGroupContext;
31 typedef struct CGroupDeviceAllow CGroupDeviceAllow;
32 typedef struct CGroupBlockIODeviceWeight CGroupBlockIODeviceWeight;
33 typedef struct CGroupBlockIODeviceBandwidth CGroupBlockIODeviceBandwidth;
34
35 typedef enum CGroupDevicePolicy {
36
37         /* When devices listed, will allow those, plus built-in ones,
38         if none are listed will allow everything. */
39         CGROUP_AUTO,
40
41         /* Everything forbidden, except built-in ones and listed ones. */
42         CGROUP_CLOSED,
43
44         /* Everythings forbidden, except for the listed devices */
45         CGROUP_STRICT,
46
47         _CGROUP_DEVICE_POLICY_MAX,
48         _CGROUP_DEVICE_POLICY_INVALID = -1
49 } CGroupDevicePolicy;
50
51 struct CGroupDeviceAllow {
52         LIST_FIELDS(CGroupDeviceAllow, device_allow);
53         char *path;
54         bool r:1;
55         bool w:1;
56         bool m:1;
57 };
58
59 struct CGroupBlockIODeviceWeight {
60         LIST_FIELDS(CGroupBlockIODeviceWeight, device_weights);
61         char *path;
62         unsigned long weight;
63 };
64
65 struct CGroupBlockIODeviceBandwidth {
66         LIST_FIELDS(CGroupBlockIODeviceBandwidth, device_bandwidths);
67         char *path;
68         uint64_t bandwidth;
69         bool read;
70 };
71
72 struct CGroupContext {
73         bool cpu_accounting;
74         bool blockio_accounting;
75         bool memory_accounting;
76
77         unsigned long cpu_shares;
78         unsigned long startup_cpu_shares;
79         usec_t cpu_quota_per_sec_usec;
80
81         unsigned long blockio_weight;
82         unsigned long startup_blockio_weight;
83         LIST_HEAD(CGroupBlockIODeviceWeight, blockio_device_weights);
84         LIST_HEAD(CGroupBlockIODeviceBandwidth, blockio_device_bandwidths);
85
86         uint64_t memory_limit;
87
88         CGroupDevicePolicy device_policy;
89         LIST_HEAD(CGroupDeviceAllow, device_allow);
90
91         bool delegate;
92 };
93
94 // #include "unit.h"
95 #include "cgroup-util.h"
96
97 void cgroup_context_init(CGroupContext *c);
98 void cgroup_context_done(CGroupContext *c);
99 // UNNEEDED void cgroup_context_dump(CGroupContext *c, FILE* f, const char *prefix);
100 // UNNEEDED void cgroup_context_apply(CGroupContext *c, CGroupMask mask, const char *path, ManagerState state);
101
102 CGroupMask cgroup_context_get_mask(CGroupContext *c);
103
104 void cgroup_context_free_device_allow(CGroupContext *c, CGroupDeviceAllow *a);
105 void cgroup_context_free_blockio_device_weight(CGroupContext *c, CGroupBlockIODeviceWeight *w);
106 void cgroup_context_free_blockio_device_bandwidth(CGroupContext *c, CGroupBlockIODeviceBandwidth *b);
107
108 // UNNEEDED CGroupMask unit_get_own_mask(Unit *u);
109 // UNNEEDED CGroupMask unit_get_siblings_mask(Unit *u);
110 // UNNEEDED CGroupMask unit_get_members_mask(Unit *u);
111 // UNNEEDED CGroupMask unit_get_subtree_mask(Unit *u);
112
113 // UNNEEDED vCGroupMask unit_get_target_mask(Unit *u);
114 // UNNEEDED CGroupMask unit_get_enable_mask(Unit *u);
115
116 // UNNEEDED void unit_update_cgroup_members_masks(Unit *u);
117
118 // UNNEEDED har *unit_default_cgroup_path(Unit *u);
119 // UNNEEDED int unit_set_cgroup_path(Unit *u, const char *path);
120
121 // UNNEEDED int unit_realize_cgroup(Unit *u);
122 // UNNEEDED void unit_release_cgroup(Unit *u);
123 // UNNEEDED void unit_prune_cgroup(Unit *u);
124 // UNNEEDED int unit_watch_cgroup(Unit *u);
125
126 // UNNEEDED int unit_attach_pids_to_cgroup(Unit *u);
127
128 int manager_setup_cgroup(Manager *m);
129 void manager_shutdown_cgroup(Manager *m, bool delete);
130
131 // UNNEEDED unsigned manager_dispatch_cgroup_queue(Manager *m);
132
133 // UNNEEDED Unit *manager_get_unit_by_cgroup(Manager *m, const char *cgroup);
134 // UNNEEDED Unit *manager_get_unit_by_pid_cgroup(Manager *m, pid_t pid);
135 // UNNEEDED Unit* manager_get_unit_by_pid(Manager *m, pid_t pid);
136
137 // UNNEEDED int unit_search_main_pid(Unit *u, pid_t *ret);
138 // UNNEEDED int unit_watch_all_pids(Unit *u);
139
140 // UNNEEDED int unit_get_memory_current(Unit *u, uint64_t *ret);
141 // UNNEEDED int unit_get_cpu_usage(Unit *u, nsec_t *ret);
142 // UNNEEDED int unit_reset_cpu_usage(Unit *u);
143
144 // UNNEEDED bool unit_cgroup_delegate(Unit *u);
145
146 // UNNEEDED int unit_notify_cgroup_empty(Unit *u);
147 // UNNEEDED int manager_notify_cgroup_empty(Manager *m, const char *group);
148
149 const char* cgroup_device_policy_to_string(CGroupDevicePolicy i) _const_;
150 CGroupDevicePolicy cgroup_device_policy_from_string(const char *s) _pure_;