chiark / gitweb /
dbus: expose cgroup properties in introspection everywhere
[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 "list.h"
25
26 typedef struct CGroupContext CGroupContext;
27 typedef struct CGroupDeviceAllow CGroupDeviceAllow;
28 typedef struct CGroupBlockIODeviceWeight CGroupBlockIODeviceWeight;
29 typedef struct CGroupBlockIODeviceBandwidth CGroupBlockIODeviceBandwidth;
30
31 typedef enum CGroupDevicePolicy {
32
33         /* When devices listed, will allow those, plus built-in ones,
34         if none are listed will allow everything. */
35         CGROUP_AUTO,
36
37         /* Everything forbidden, except built-in ones and listed ones. */
38         CGROUP_CLOSED,
39
40         /* Everythings forbidden, except for the listed devices */
41         CGROUP_STRICT,
42
43         _CGROUP_DEVICE_POLICY_MAX,
44         _CGROUP_DEVICE_POLICY_INVALID = -1
45 } CGroupDevicePolicy;
46
47 struct CGroupDeviceAllow {
48         LIST_FIELDS(CGroupDeviceAllow, device_allow);
49         char *path;
50         bool r:1;
51         bool w:1;
52         bool m:1;
53 };
54
55 struct CGroupBlockIODeviceWeight {
56         LIST_FIELDS(CGroupBlockIODeviceWeight, device_weights);
57         char *path;
58         unsigned long weight;
59 };
60
61 struct CGroupBlockIODeviceBandwidth {
62         LIST_FIELDS(CGroupBlockIODeviceBandwidth, device_bandwidths);
63         char *path;
64         uint64_t bandwidth;
65         bool read;
66 };
67
68 struct CGroupContext {
69         bool cpu_accounting;
70         bool blockio_accounting;
71         bool memory_accounting;
72
73         unsigned long cpu_shares;
74
75         unsigned long blockio_weight;
76         LIST_HEAD(CGroupBlockIODeviceWeight, blockio_device_weights);
77         LIST_HEAD(CGroupBlockIODeviceBandwidth, blockio_device_bandwidths);
78
79         uint64_t memory_limit;
80         uint64_t memory_soft_limit;
81
82         CGroupDevicePolicy device_policy;
83         LIST_HEAD(CGroupDeviceAllow, device_allow);
84 };
85
86 #include "unit.h"
87 #include "manager.h"
88 #include "cgroup-util.h"
89
90 void cgroup_context_init(CGroupContext *c);
91 void cgroup_context_done(CGroupContext *c);
92 void cgroup_context_dump(CGroupContext *c, FILE* f, const char *prefix);
93 void cgroup_context_apply(CGroupContext *c, CGroupControllerMask mask, const char *path);
94 CGroupControllerMask cgroup_context_get_mask(CGroupContext *c);
95
96 void cgroup_context_free_device_allow(CGroupContext *c, CGroupDeviceAllow *a);
97 void cgroup_context_free_blockio_device_weight(CGroupContext *c, CGroupBlockIODeviceWeight *w);
98 void cgroup_context_free_blockio_device_bandwidth(CGroupContext *c, CGroupBlockIODeviceBandwidth *b);
99
100 int unit_realize_cgroup(Unit *u);
101 void unit_destroy_cgroup(Unit *u);
102
103 int manager_setup_cgroup(Manager *m);
104 void manager_shutdown_cgroup(Manager *m, bool delete);
105
106 unsigned manager_dispatch_cgroup_queue(Manager *m);
107
108 Unit *manager_get_unit_by_cgroup(Manager *m, const char *cgroup);
109 Unit* manager_get_unit_by_pid(Manager *m, pid_t pid);
110
111 pid_t unit_search_main_pid(Unit *u);
112
113 int manager_notify_cgroup_empty(Manager *m, const char *group);
114
115 const char* cgroup_device_policy_to_string(CGroupDevicePolicy i) _const_;
116 CGroupDevicePolicy cgroup_device_policy_from_string(const char *s) _pure_;