]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/cgroup-util.h
hashmap.h: fix coding style issue
[thirdparty/systemd.git] / src / shared / cgroup-util.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
8c6db833 2
c2f1db8f 3#pragma once
8c6db833
LP
4
5/***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
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
8c6db833
LP
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
5430f7f2 18 Lesser General Public License for more details.
8c6db833 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
8c6db833
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
24#include <sys/types.h>
c6c18be3 25#include <stdio.h>
35d2e7ec 26#include <dirent.h>
c6c18be3
LP
27
28#include "set.h"
f6a6225e 29#include "def.h"
8c6db833 30
5954c074
LP
31/*
32 * General rules:
33 *
34 * We accept named hierarchies in the syntax "foo" and "name=foo".
35 *
36 * We expect that named hierarchies do not conflict in name with a
37 * kernel hierarchy, modulo the "name=" prefix.
38 *
39 * We always generate "normalized" controller names, i.e. without the
40 * "name=" prefix.
41 *
42 * We require absolute cgroup paths. When returning, we will always
43 * generate paths with multiple adjacent / removed.
44 */
45
c6c18be3
LP
46int cg_enumerate_processes(const char *controller, const char *path, FILE **_f);
47int cg_enumerate_tasks(const char *controller, const char *path, FILE **_f);
c6c18be3
LP
48int cg_read_pid(FILE *f, pid_t *_pid);
49
35d2e7ec
LP
50int cg_enumerate_subgroups(const char *controller, const char *path, DIR **_d);
51int cg_read_subgroup(DIR *d, char **fn);
52
430c18ed
LP
53int cg_kill(const char *controller, const char *path, int sig, bool sigcont, bool ignore_self, Set *s);
54int cg_kill_recursive(const char *controller, const char *path, int sig, bool sigcont, bool ignore_self, bool remove, Set *s);
35d2e7ec 55int cg_kill_recursive_and_wait(const char *controller, const char *path, bool remove);
8c6db833 56
246aa6dd
LP
57int cg_migrate(const char *cfrom, const char *pfrom, const char *cto, const char *pto, bool ignore_self);
58int cg_migrate_recursive(const char *cfrom, const char *pfrom, const char *cto, const char *pto, bool ignore_self, bool remove);
35d2e7ec
LP
59
60int cg_split_spec(const char *spec, char **controller, char **path);
61int cg_join_spec(const char *controller, const char *path, char **spec);
7027ff61 62int cg_mangle_path(const char *path, char **result);
8c6db833
LP
63
64int cg_get_path(const char *controller, const char *path, const char *suffix, char **fs);
3474ae3c 65int cg_get_path_and_check(const char *controller, const char *path, const char *suffix, char **fs);
7027ff61
LP
66
67int cg_pid_get_path(const char *controller, pid_t pid, char **path);
8c6db833
LP
68
69int cg_trim(const char *controller, const char *path, bool delete_root);
35d2e7ec 70
ad293f5a 71int cg_rmdir(const char *controller, const char *path, bool honour_sticky);
8c6db833
LP
72int cg_delete(const char *controller, const char *path);
73
a32360f1 74int cg_create(const char *controller, const char *path, const char *suffix);
8c6db833
LP
75int cg_attach(const char *controller, const char *path, pid_t pid);
76int cg_create_and_attach(const char *controller, const char *path, pid_t pid);
77
78int cg_set_group_access(const char *controller, const char *path, mode_t mode, uid_t uid, gid_t gid);
8d53b453 79int cg_set_task_access(const char *controller, const char *path, mode_t mode, uid_t uid, gid_t gid, int sticky);
8c6db833
LP
80
81int cg_install_release_agent(const char *controller, const char *agent);
82
83int cg_is_empty(const char *controller, const char *path, bool ignore_self);
b08121d0 84int cg_is_empty_by_spec(const char *spec, bool ignore_self);
8c6db833
LP
85int cg_is_empty_recursive(const char *controller, const char *path, bool ignore_self);
86
7027ff61
LP
87int cg_get_root_path(char **path);
88int cg_get_system_path(char **path);
1f73f0f1 89int cg_get_user_path(char **path);
38158b92 90int cg_get_machine_path(const char *machine, char **path);
6c03089c 91
7027ff61 92int cg_path_get_session(const char *path, char **session);
ae018d9b 93int cg_path_get_owner_uid(const char *path, uid_t *uid);
6c03089c
LP
94int cg_path_get_unit(const char *path, char **unit);
95int cg_path_get_user_unit(const char *path, char **unit);
7027ff61
LP
96int cg_path_get_machine_name(const char *path, char **machine);
97
98int cg_pid_get_path_shifted(pid_t pid, char **root, char **cgroup);
6c03089c 99
7027ff61 100int cg_pid_get_session(pid_t pid, char **session);
ae018d9b 101int cg_pid_get_owner_uid(pid_t pid, uid_t *uid);
ba1261bc 102int cg_pid_get_unit(pid_t pid, char **unit);
ef1673d1 103int cg_pid_get_user_unit(pid_t pid, char **unit);
7027ff61 104int cg_pid_get_machine_name(pid_t pid, char **machine);
1f73f0f1 105
7027ff61 106int cg_path_decode_unit(const char *cgroup, char **unit);
96cde13a 107
b59e2465 108char **cg_shorten_controllers(char **controllers);
e884315e
LP
109
110int cg_controller_from_attr(const char *attr, char **controller);
ae018d9b
LP
111
112char *cg_escape(const char *p);
113char *cg_unescape(const char *p);
78edb35a
LP
114
115bool cg_controller_is_valid(const char *p, bool allow_named);