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/>.
28 #include "formats-util.h"
29 #include "process-util.h"
31 #include "path-util.h"
32 #include "cgroup-util.h"
33 #include "cgroup-show.h"
34 #include "terminal-util.h"
36 static int compare(const void *a, const void *b) {
37 const pid_t *p = a, *q = b;
46 static void show_pid_array(pid_t pids[], unsigned n_pids, const char *prefix, unsigned n_columns, bool extra, bool more, bool kernel_threads, OutputFlags flags) {
47 unsigned i, j, pid_width;
52 qsort(pids, n_pids, sizeof(pid_t), compare);
54 /* Filter duplicates */
55 for (j = 0, i = 1; i < n_pids; i++) {
56 if (pids[i] == pids[j])
61 pid_width = DECIMAL_STR_WIDTH(pids[j]);
63 if (flags & OUTPUT_FULL_WIDTH)
66 if (n_columns > pid_width+2)
67 n_columns -= pid_width+2;
71 for (i = 0; i < n_pids; i++) {
72 _cleanup_free_ char *t = NULL;
74 get_process_cmdline(pids[i], n_columns, true, &t);
77 printf("%s%s ", prefix, draw_special_char(DRAW_TRIANGULAR_BULLET));
79 printf("%s%s", prefix, draw_special_char(((more || i < n_pids-1) ? DRAW_TREE_BRANCH : DRAW_TREE_RIGHT)));
81 printf("%*"PID_PRI" %s\n", pid_width, pids[i], strna(t));
86 static int show_cgroup_one_by_path(const char *path, const char *prefix, unsigned n_columns, bool more, bool kernel_threads, OutputFlags flags) {
88 _cleanup_fclose_ FILE *f = NULL;
89 size_t n = 0, n_allocated = 0;
90 _cleanup_free_ pid_t *pids = NULL;
91 _cleanup_free_ char *p = NULL;
95 r = cg_mangle_path(path, &p);
99 fn = strjoina(p, "/cgroup.procs");
104 while ((r = cg_read_pid(f, &pid)) > 0) {
106 if (!kernel_threads && is_kernel_thread(pid) > 0)
109 if (!GREEDY_REALLOC(pids, n_allocated, n + 1))
112 assert(n < n_allocated);
119 show_pid_array(pids, n, prefix, n_columns, false, more, kernel_threads, flags);
124 int show_cgroup_by_path(const char *path, const char *prefix, unsigned n_columns, bool kernel_threads, OutputFlags flags) {
125 _cleanup_free_ char *fn = NULL, *p1 = NULL, *last = NULL, *p2 = NULL;
126 _cleanup_closedir_ DIR *d = NULL;
128 bool shown_pids = false;
134 n_columns = columns();
139 r = cg_mangle_path(path, &fn);
147 while ((r = cg_read_subgroup(d, &gn)) > 0) {
148 _cleanup_free_ char *k = NULL;
150 k = strjoin(fn, "/", gn, NULL);
155 if (!(flags & OUTPUT_SHOW_ALL) && cg_is_empty_recursive(NULL, k) > 0)
159 show_cgroup_one_by_path(path, prefix, n_columns, true, kernel_threads, flags);
164 printf("%s%s%s\n", prefix, draw_special_char(DRAW_TREE_BRANCH), cg_unescape(basename(last)));
167 p1 = strappend(prefix, draw_special_char(DRAW_TREE_VERTICAL));
172 show_cgroup_by_path(last, p1, n_columns-2, kernel_threads, flags);
184 show_cgroup_one_by_path(path, prefix, n_columns, !!last, kernel_threads, flags);
187 printf("%s%s%s\n", prefix, draw_special_char(DRAW_TREE_RIGHT), cg_unescape(basename(last)));
190 p2 = strappend(prefix, " ");
195 show_cgroup_by_path(last, p2, n_columns-2, kernel_threads, flags);
201 int show_cgroup(const char *controller, const char *path, const char *prefix, unsigned n_columns, bool kernel_threads, OutputFlags flags) {
202 _cleanup_free_ char *p = NULL;
207 r = cg_get_path(controller, path, NULL, &p);
211 return show_cgroup_by_path(p, prefix, n_columns, kernel_threads, flags);
214 static int show_extra_pids(const char *controller, const char *path, const char *prefix, unsigned n_columns, const pid_t pids[], unsigned n_pids, OutputFlags flags) {
215 _cleanup_free_ pid_t *copy = NULL;
225 n_columns = columns();
227 prefix = strempty(prefix);
229 copy = new(pid_t, n_pids);
233 for (i = 0, j = 0; i < n_pids; i++) {
234 _cleanup_free_ char *k = NULL;
236 r = cg_pid_get_path(controller, pids[i], &k);
240 if (path_startswith(k, path))
246 show_pid_array(copy, j, prefix, n_columns, true, false, false, flags);
251 int show_cgroup_and_extra(const char *controller, const char *path, const char *prefix, unsigned n_columns, bool kernel_threads, const pid_t extra_pids[], unsigned n_extra_pids, OutputFlags flags) {
256 r = show_cgroup(controller, path, prefix, n_columns, kernel_threads, flags);
260 return show_extra_pids(controller, path, prefix, n_columns, extra_pids, n_extra_pids, flags);
263 /// UNNEEDED by elogind
265 int show_cgroup_and_extra_by_spec(const char *spec, const char *prefix, unsigned n_columns, bool kernel_threads, const pid_t extra_pids[], unsigned n_extra_pids, OutputFlags flags) {
266 _cleanup_free_ char *controller = NULL, *path = NULL;
271 r = cg_split_spec(spec, &controller, &path);
275 return show_cgroup_and_extra(controller, path, prefix, n_columns, kernel_threads, extra_pids, n_extra_pids, flags);