test: code size saving, no logic changes
[platform/upstream/busybox.git] / procps / ps.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini ps implementation(s) for busybox
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  *
7  * Licensed under the GPL version 2, see the file LICENSE in this tarball.
8  */
9
10 #include "busybox.h"
11
12 #if ENABLE_DESKTOP
13
14 /* Print value to buf, max size+1 chars (including trailing '\0') */
15
16 static void func_user(char *buf, int size, const procps_status_t *ps)
17 {
18         safe_strncpy(buf, get_cached_username(ps->uid), size+1);
19 }
20
21 static void func_comm(char *buf, int size, const procps_status_t *ps)
22 {
23         safe_strncpy(buf, ps->comm, size+1);
24 }
25
26 static void func_args(char *buf, int size, const procps_status_t *ps)
27 {
28         buf[0] = '\0';
29         if (ps->cmd)
30                 safe_strncpy(buf, ps->cmd, size+1);
31         else if (size >= 2)
32                 sprintf(buf, "[%.*s]", size-2, ps->comm);
33 }
34
35 static void func_pid(char *buf, int size, const procps_status_t *ps)
36 {
37         sprintf(buf, "%*u", size, ps->pid);
38 }
39
40 static void func_ppid(char *buf, int size, const procps_status_t *ps)
41 {
42         sprintf(buf, "%*u", size, ps->ppid);
43 }
44
45 static void func_pgid(char *buf, int size, const procps_status_t *ps)
46 {
47         sprintf(buf, "%*u", size, ps->pgid);
48 }
49
50 static void put_u(char *buf, int size, unsigned u)
51 {
52         char buf5[5];
53         smart_ulltoa5( ((unsigned long long)u) << 10, buf5);
54         sprintf(buf, "%.*s", size, buf5);
55 }
56
57 static void func_vsz(char *buf, int size, const procps_status_t *ps)
58 {
59         put_u(buf, size, ps->vsz);
60 }
61
62 static void func_rss(char *buf, int size, const procps_status_t *ps)
63 {
64         put_u(buf, size, ps->rss);
65 }
66
67 static void func_tty(char *buf, int size, const procps_status_t *ps)
68 {
69         safe_strncpy(buf, ps->tty_str, size+1);
70 }
71 /*
72 static void func_nice(char *buf, int size, const procps_status_t *ps)
73 {
74         ps->???
75 }
76
77 static void func_etime(char *buf, int size, const procps_status_t *ps)
78 {
79         elapled time [[dd-]hh:]mm:ss
80 }
81
82 static void func_time(char *buf, int size, const procps_status_t *ps)
83 {
84         cumulative time [[dd-]hh:]mm:ss
85 }
86
87 static void func_pcpu(char *buf, int size, const procps_status_t *ps)
88 {
89 }
90 */
91
92 typedef struct {
93         uint16_t width;
94         char name[6];
95         const char *header;
96         void (*f)(char *buf, int size, const procps_status_t *ps);
97         int ps_flags;
98 } ps_out_t;
99
100 static const ps_out_t out_spec[] = {
101 // Mandated by POSIX:
102         { 8                  , "user"  ,"USER"   ,func_user  ,PSSCAN_UIDGID          },
103         { 16                 , "comm"  ,"COMMAND",func_comm  ,PSSCAN_COMM            },
104         { 256                , "args"  ,"COMMAND",func_args  ,PSSCAN_CMD|PSSCAN_COMM },
105         { 5                  , "pid"   ,"PID"    ,func_pid   ,PSSCAN_PID             },
106         { 5                  , "ppid"  ,"PPID"   ,func_ppid  ,PSSCAN_PPID            },
107         { 5                  , "pgid"  ,"PGID"   ,func_pgid  ,PSSCAN_PGID            },
108 //      { sizeof("ELAPSED")-1, "etime" ,"ELAPSED",func_etime ,PSSCAN_                },
109 //      { sizeof("GROUP"  )-1, "group" ,"GROUP"  ,func_group ,PSSCAN_UIDGID          },
110 //      { sizeof("NI"     )-1, "nice"  ,"NI"     ,func_nice  ,PSSCAN_                },
111 //      { sizeof("%CPU"   )-1, "pcpu"  ,"%CPU"   ,func_pcpu  ,PSSCAN_                },
112 //      { sizeof("RGROUP" )-1, "rgroup","RGROUP" ,func_rgroup,PSSCAN_UIDGID          },
113 //      { sizeof("RUSER"  )-1, "ruser" ,"RUSER"  ,func_ruser ,PSSCAN_UIDGID          },
114 //      { sizeof("TIME"   )-1, "time"  ,"TIME"   ,func_time  ,PSSCAN_                },
115         { 6                  , "tty"   ,"TT"     ,func_tty   ,PSSCAN_TTY             },
116         { 4                  , "vsz"   ,"VSZ"    ,func_vsz   ,PSSCAN_VSZ             },
117 // Not mandated by POSIX, but useful:
118         { 4                  , "rss"   ,"RSS"    ,func_rss   ,PSSCAN_RSS             },
119 };
120
121 #define VEC_SIZE(v) ( sizeof(v) / sizeof((v)[0]) )
122
123 #define DEFAULT_O_STR "pid,user" /* TODO: ,vsz,stat */ ",args"
124
125 struct globals {
126         ps_out_t* out;
127         int out_cnt;
128         int print_header;
129         int need_flags;
130         char *buffer;
131         unsigned terminal_width;
132         char default_o[sizeof(DEFAULT_O_STR)];
133 };
134 #define G (*(struct globals*)&bb_common_bufsiz1)
135 #define out            (G.out           )
136 #define out_cnt        (G.out_cnt       )
137 #define print_header   (G.print_header  )
138 #define need_flags     (G.need_flags    )
139 #define buffer         (G.buffer        )
140 #define terminal_width (G.terminal_width)
141 #define default_o      (G.default_o     )
142
143 static ps_out_t* new_out_t(void)
144 {
145         int i = out_cnt++;
146         out = xrealloc(out, out_cnt * sizeof(*out));
147         return &out[i];
148 }
149
150 static const ps_out_t* find_out_spec(const char *name)
151 {
152         int i;
153         for (i = 0; i < VEC_SIZE(out_spec); i++) {
154                 if (!strcmp(name, out_spec[i].name))
155                         return &out_spec[i];
156         }
157         bb_error_msg_and_die("bad -o argument '%s'", name);
158 }
159
160 static void parse_o(char* opt)
161 {
162         ps_out_t* new;
163         // POSIX: "-o is blank- or comma-separated list" (FIXME)
164         char *comma, *equal;
165         while (1) {
166                 comma = strchr(opt, ',');
167                 equal = strchr(opt, '=');
168                 if (comma && (!equal || equal > comma)) {
169                         *comma = '\0';
170                         *new_out_t() = *find_out_spec(opt);
171                         *comma = ',';
172                         opt = comma + 1;
173                         continue;
174                 }
175                 break;
176         }
177         // opt points to last spec in comma separated list.
178         // This one can have =HEADER part.
179         new = new_out_t();
180         if (equal)
181                 *equal = '\0';
182         *new = *find_out_spec(opt);
183         if (equal) {
184                 *equal = '=';
185                 new->header = equal + 1;
186                 // POSIX: the field widths shall be ... at least as wide as
187                 // the header text (default or overridden value).
188                 // If the header text is null, such as -o user=,
189                 // the field width shall be at least as wide as the
190                 // default header text
191                 if (new->header[0]) {
192                         new->width = strlen(new->header);
193                         print_header = 1;
194                 }
195         } else
196                 print_header = 1;
197 }
198
199 static void post_process(void)
200 {
201         int i;
202         int width = 0;
203         for (i = 0; i < out_cnt; i++) {
204                 need_flags |= out[i].ps_flags;
205                 if (out[i].header[0]) {
206                         print_header = 1;
207                 }
208                 width += out[i].width + 1; /* "FIELD " */
209         }
210         buffer = xmalloc(width + 1); /* for trailing \0 */
211 }
212
213 static void format_header(void)
214 {
215         int i;
216         ps_out_t* op;
217         char *p;
218
219         if (!print_header)
220                 return;
221         p = buffer;
222         i = 0;
223         if (out_cnt) {
224                 while (1) {
225                         op = &out[i];
226                         if (++i == out_cnt) /* do not pad last field */
227                                 break;
228                         p += sprintf(p, "%-*s ", op->width, op->header);
229                 }
230                 strcpy(p, op->header);
231         }
232         printf("%.*s\n", terminal_width, buffer);
233 }
234
235 static void format_process(const procps_status_t *ps)
236 {
237         int i, len;
238         char *p = buffer;
239         i = 0;
240         if (out_cnt) while (1) {
241                 out[i].f(p, out[i].width, ps);
242                 // POSIX: Any field need not be meaningful in all
243                 // implementations. In such a case a hyphen ( '-' )
244                 // should be output in place of the field value.
245                 if (!p[0]) {
246                         p[0] = '-';
247                         p[1] = '\0';
248                 }
249                 len = strlen(p);
250                 p += len;
251                 len = out[i].width - len + 1;
252                 if (++i == out_cnt) /* do not pad last field */
253                         break;
254                 p += sprintf(p, "%*s", len, "");
255         }
256         printf("%.*s\n", terminal_width, buffer);
257 }
258
259 int ps_main(int argc, char **argv);
260 int ps_main(int argc, char **argv)
261 {
262         procps_status_t *p;
263         llist_t* opt_o = NULL;
264
265         /* Cannot be const: parse_o() will choke */
266         strcpy(default_o, DEFAULT_O_STR);
267
268         // POSIX:
269         // -a  Write information for all processes associated with terminals
270         //     Implementations may omit session leaders from this list
271         // -A  Write information for all processes
272         // -d  Write information for all processes, except session leaders
273         // -e  Write information for all processes (equivalent to -A.)
274         // -f  Generate a full listing
275         // -l  Generate a long listing
276         // -o col1,col2,col3=header
277         //     Select which columns to display
278         /* We allow (and ignore) most of the above. FIXME */
279         opt_complementary = "o::";
280         getopt32(argc, argv, "o:aAdefl", &opt_o);
281         if (opt_o) {
282                 do {
283                         parse_o(opt_o->data);
284                         opt_o = opt_o->link;
285                 } while (opt_o);
286         } else
287                 parse_o(default_o);
288         post_process();
289
290         /* Was INT_MAX, but some libc's go belly up with printf("%.*s")
291          * and such large widths */
292         terminal_width = 30000;
293         if (isatty(1)) {
294                 get_terminal_width_height(1, &terminal_width, NULL);
295                 terminal_width--;
296         }
297         format_header();
298
299         p = NULL;
300         while ((p = procps_scan(p, need_flags))) {
301                 format_process(p);
302         }
303
304         return EXIT_SUCCESS;
305 }
306
307
308 #else /* !ENABLE_DESKTOP */
309
310
311 int ps_main(int argc, char **argv);
312 int ps_main(int argc, char **argv)
313 {
314         procps_status_t *p = NULL;
315         int i, len;
316         SKIP_SELINUX(const) int use_selinux = 0;
317         USE_SELINUX(security_context_t sid = NULL;)
318 #if !ENABLE_FEATURE_PS_WIDE
319         enum { terminal_width = 79 };
320 #else
321         int terminal_width;
322         int w_count = 0;
323 #endif
324
325 #if ENABLE_FEATURE_PS_WIDE || ENABLE_SELINUX
326 #if ENABLE_FEATURE_PS_WIDE
327         opt_complementary = "-:ww";
328         USE_SELINUX(i =) getopt32(argc, argv, USE_SELINUX("Z") "w", &w_count);
329         /* if w is given once, GNU ps sets the width to 132,
330          * if w is given more than once, it is "unlimited"
331          */
332         if (w_count) {
333                 terminal_width = (w_count==1) ? 132 : INT_MAX;
334         } else {
335                 get_terminal_width_height(1, &terminal_width, NULL);
336                 /* Go one less... */
337                 terminal_width--;
338         }
339 #else /* only ENABLE_SELINUX */
340         i = getopt32(argc, argv, "Z");
341 #endif
342 #if ENABLE_SELINUX
343         if ((i & 1) && is_selinux_enabled())
344                 use_selinux = 1;
345 #endif
346 #endif /* ENABLE_FEATURE_PS_WIDE || ENABLE_SELINUX */
347
348         if (use_selinux)
349                 puts("  PID Context                          Stat Command");
350         else
351                 puts("  PID  Uid        VSZ Stat Command");
352
353         while ((p = procps_scan(p, 0
354                         | PSSCAN_PID
355                         | PSSCAN_UIDGID
356                         | PSSCAN_STATE
357                         | PSSCAN_VSZ
358                         | PSSCAN_CMD
359         ))) {
360                 char *namecmd = p->cmd;
361 #if ENABLE_SELINUX
362                 if (use_selinux) {
363                         char sbuf[128];
364                         len = sizeof(sbuf);
365
366                         if (is_selinux_enabled()) {
367                                 if (getpidcon(p->pid, &sid) < 0)
368                                         sid = NULL;
369                         }
370
371                         if (sid) {
372                                 /* I assume sid initialized with NULL */
373                                 len = strlen(sid) + 1;
374                                 safe_strncpy(sbuf, sid, len);
375                                 freecon(sid);
376                                 sid = NULL;
377                         } else {
378                                 safe_strncpy(sbuf, "unknown", 7);
379                         }
380                         len = printf("%5u %-32s %s ", p->pid, sbuf, p->state);
381                 } else
382 #endif
383                 {
384                         const char *user = get_cached_username(p->uid);
385                         if (p->vsz == 0)
386                                 len = printf("%5u %-8s        %s ",
387                                         p->pid, user, p->state);
388                         else
389                                 len = printf("%5u %-8s %6u %s ",
390                                         p->pid, user, p->vsz, p->state);
391                 }
392
393                 i = terminal_width-len;
394
395                 if (namecmd && namecmd[0]) {
396                         if (i < 0)
397                                 i = 0;
398                         if (strlen(namecmd) > (size_t)i)
399                                 namecmd[i] = 0;
400                         puts(namecmd);
401                 } else {
402                         namecmd = p->comm;
403                         if (i < 2)
404                                 i = 2;
405                         if (strlen(namecmd) > ((size_t)i-2))
406                                 namecmd[i-2] = 0;
407                         printf("[%s]\n", namecmd);
408                 }
409         }
410         if (ENABLE_FEATURE_CLEAN_UP)
411                 clear_username_cache();
412         return EXIT_SUCCESS;
413 }
414
415 #endif /* ENABLE_DESKTOP */