]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
cgroups: remove unused helpers
authorChristian Brauner <christian.brauner@ubuntu.com>
Sun, 21 Feb 2021 00:25:49 +0000 (01:25 +0100)
committerChristian Brauner <christian.brauner@ubuntu.com>
Sun, 21 Feb 2021 00:25:49 +0000 (01:25 +0100)
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
src/lxc/cgroups/cgroup_utils.c
src/lxc/cgroups/cgroup_utils.h

index 6beb570678b5d1648a66adefefc5237834603087..78bd9ecb092ca5caf8e4aa8d62cd14b5a35393fd 100644 (file)
 
 lxc_log_define(cgroup_utils, lxc);
 
-int get_cgroup_version(char *line)
-{
-       if (is_cgroupfs_v1(line))
-               return CGROUP_SUPER_MAGIC;
-
-       if (is_cgroupfs_v2(line))
-               return CGROUP2_SUPER_MAGIC;
-
-       return 0;
-}
-
-bool is_cgroupfs_v1(char *line)
-{
-       char *p = strstr(line, " - ");
-       if (!p)
-               return false;
-       return strnequal(p, " - cgroup ", 10);
-}
-
-bool is_cgroupfs_v2(char *line)
-{
-       char *p = strstr(line, " - ");
-       if (!p)
-               return false;
-
-       return strnequal(p, " - cgroup2 ", 11);
-}
-
-bool test_writeable_v1(char *mountpoint, char *path)
-{
-       __do_free char *fullpath = must_make_path(mountpoint, path, NULL);
-       return (access(fullpath, W_OK) == 0);
-}
-
-bool test_writeable_v2(char *mountpoint, char *path)
-{
-       /* In order to move ourselves into an appropriate sub-cgroup we need to
-        * have write access to the parent cgroup's "cgroup.procs" file, i.e. we
-        * need to have write access to the our current cgroups's "cgroup.procs"
-        * file.
-        */
-       int ret;
-       __do_free char *cgroup_path = NULL, *cgroup_procs_file = NULL,
-                      *cgroup_threads_file = NULL;
-
-       cgroup_path = must_make_path(mountpoint, path, NULL);
-       cgroup_procs_file = must_make_path(cgroup_path, "cgroup.procs", NULL);
-
-       ret = access(cgroup_path, W_OK);
-       if (ret < 0)
-               return false;
-
-       ret = access(cgroup_procs_file, W_OK);
-       if (ret < 0)
-               return false;
-
-       /* Newer versions of cgroup2 now also require write access to the
-        * "cgroup.threads" file.
-        */
-       cgroup_threads_file = must_make_path(cgroup_path, "cgroup.threads", NULL);
-       if (!file_exists(cgroup_threads_file))
-               return true;
-
-       return (access(cgroup_threads_file, W_OK) == 0);
-}
-
 bool unified_cgroup_fd(int fd)
 {
 
index 41a8a2199921d7d3a61f41a0d2bc44be62d34f79..b18621d30f2e4eb8db75efe3de8d496527989eb2 100644 (file)
@@ -9,26 +9,6 @@
 #include "compiler.h"
 #include "file_utils.h"
 
-/* Retrieve the cgroup version of a given entry from /proc/<pid>/mountinfo. */
-__hidden extern int get_cgroup_version(char *line);
-
-/* Check if given entry from /proc/<pid>/mountinfo is a cgroupfs v1 mount. */
-__hidden extern bool is_cgroupfs_v1(char *line);
-
-/* Check if given entry from /proc/<pid>/mountinfo is a cgroupfs v2 mount. */
-__hidden extern bool is_cgroupfs_v2(char *line);
-
-/* Given a v1 hierarchy @mountpoint and base @path, verify that we can create
- * directories underneath it.
- */
-__hidden extern bool test_writeable_v1(char *mountpoint, char *path);
-
-/* Given a v2 hierarchy @mountpoint and base @path, verify that we can create
- * directories underneath it and that we have write access to the cgroup's
- * "cgroup.procs" file.
- */
-__hidden extern bool test_writeable_v2(char *mountpoint, char *path);
-
 __hidden extern bool unified_cgroup_fd(int fd);
 
 static inline bool cgns_supported(void)