1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
29 #include "cgroup-show.h"
30 #include "cgroup-util.h"
32 #include "path-util.h"
36 #include "output-mode.h"
38 static bool arg_no_pager = false;
39 static bool arg_kernel_threads = false;
40 static bool arg_all = false;
41 static int arg_full = -1;
42 static char* arg_machine = NULL;
44 static void help(void) {
46 printf("%s [OPTIONS...] [CGROUP...]\n\n"
47 "Recursively show control group contents.\n\n"
48 " -h --help Show this help\n"
49 " --version Show package version\n"
50 " --no-pager Do not pipe output into a pager\n"
51 " -a --all Show all groups, including empty\n"
52 " --full Do not ellipsize output\n"
53 " -k Include kernel threads in output\n"
54 " -M --machine Show container\n",
55 program_invocation_short_name);
58 static int parse_argv(int argc, char *argv[]) {
66 static const struct option options[] = {
67 { "help", no_argument, NULL, 'h' },
68 { "version", no_argument, NULL, ARG_VERSION },
69 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
70 { "all", no_argument, NULL, 'a' },
71 { "full", no_argument, NULL, ARG_FULL },
72 { "machine", required_argument, NULL, 'M' },
81 while ((c = getopt_long(argc, argv, "hkaM:", options, NULL)) >= 0) {
91 puts(SYSTEMD_FEATURES);
107 arg_kernel_threads = true;
111 arg_machine = optarg;
118 log_error("Unknown option code %c", c);
126 int main(int argc, char *argv[]) {
127 int r = 0, retval = EXIT_FAILURE;
129 char _cleanup_free_ *root = NULL;
131 log_parse_environment();
134 r = parse_argv(argc, argv);
138 retval = EXIT_SUCCESS;
143 r = pager_open(false);
151 arg_all * OUTPUT_SHOW_ALL |
152 (arg_full > 0) * OUTPUT_FULL_WIDTH;
157 for (i = optind; i < argc; i++) {
159 printf("%s:\n", argv[i]);
162 root = strjoin("machine/", arg_machine, "/", argv[i], NULL);
164 root = strdup(argv[i]);
168 q = show_cgroup_by_path(root, NULL, 0,
169 arg_kernel_threads, output_flags);
175 _cleanup_free_ char *p;
177 p = get_current_dir_name();
179 log_error("Cannot determine current working directory: %m");
183 if (path_startswith(p, "/sys/fs/cgroup") && !arg_machine) {
184 printf("Working Directory %s:\n", p);
185 r = show_cgroup_by_path(p, NULL, 0,
186 arg_kernel_threads, output_flags);
189 r = cg_get_machine_path(arg_machine, &root);
191 r = cg_get_root_path(&root);
193 log_error("Failed to get %s path: %s",
194 arg_machine ? "machine" : "root", strerror(-r));
198 r = show_cgroup(SYSTEMD_CGROUP_CONTROLLER, root, NULL, 0,
199 arg_kernel_threads, output_flags);
204 log_error("Failed to list cgroup tree %s: %s", root, strerror(-r));
205 retval = EXIT_FAILURE;
207 retval = EXIT_SUCCESS;