1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
*
* Copyright (C) 2006 William Jon McCann <mccann@jhu.edu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#define DEV_ENCODE(M,m) ( \
( (M&0xfff) << 8) | ( (m&0xfff00) << 12) | (m&0xff) \
)
#include <sys/int_types.h>
#include <sys/mkdev.h>
#define _STRUCTURED_PROC 1
#include <sys/procfs.h>
#define NO_TTY_VALUE DEV_ENCODE(-1,-1)
#include "ck-sysdeps.h"
#ifndef ERROR
#define ERROR -1
#endif
/* adapted from procps */
struct _CkProcessStat
{
int pid;
int ppid; /* stat,status pid of parent process */
char state; /* stat,status single-char code for process state (S=sleeping) */
char cmd[16]; /* stat,status basename of executable file in call to exec(2) */
unsigned long long utime; /* stat user-mode CPU time accumulated by process */
unsigned long long stime; /* stat kernel-mode CPU time accumulated by process */
unsigned long long cutime; /* stat cumulative utime of process and reaped children */
unsigned long long cstime; /* stat cumulative stime of process and reaped children */
unsigned long long start_time; /* stat start time of process -- seconds since 1-1-70 */
unsigned long start_code; /* stat address of beginning of code segment */
unsigned long end_code; /* stat address of end of code segment */
unsigned long start_stack; /* stat address of the bottom of stack for the process */
unsigned long kstk_esp; /* stat kernel stack pointer */
unsigned long kstk_eip; /* stat kernel instruction pointer */
unsigned long wchan; /* stat (special) address of kernel wait channel proc is sleeping in */
long priority; /* stat kernel scheduling priority */
long nice; /* stat standard unix nice level of process */
long rss; /* stat resident set size from /proc/#/stat (pages) */
long alarm; /* stat ? */
unsigned long rtprio; /* stat real-time priority */
unsigned long sched; /* stat scheduling class */
unsigned long vsize; /* stat number of pages of virtual memory ... */
unsigned long rss_rlim; /* stat resident set size limit? */
unsigned long flags; /* stat kernel flags for the process */
unsigned long min_flt; /* stat number of minor page faults since process start */
unsigned long maj_flt; /* stat number of major page faults since process start */
unsigned long cmin_flt; /* stat cumulative min_flt of process and child processes */
unsigned long cmaj_flt; /* stat cumulative maj_flt of process and child processes */
int pgrp; /* stat process group id */
int session; /* stat session id */
int nlwp; /* stat number of threads, or 0 if no clue */
int tty; /* stat full device number of controlling terminal */
int tpgid; /* stat terminal process group id */
int exit_signal; /* stat might not be SIGCHLD */
int processor; /* stat current (or most recent?) CPU */
uintptr_t penv; /* stat address of initial environment vector */
char tty_text[16]; /* stat device name */
};
pid_t
ck_process_stat_get_ppid (CkProcessStat *stat)
{
g_return_val_if_fail (stat != NULL, -1);
return stat->ppid;
}
char *
ck_process_stat_get_cmd (CkProcessStat *stat)
{
g_return_val_if_fail (stat != NULL, NULL);
return g_strdup (stat->cmd);
}
/* adapted from procps */
char *
ck_process_stat_get_tty (CkProcessStat *stat)
{
guint dev;
char *tty;
guint dev_maj;
guint dev_min;
pid_t pid;
g_return_val_if_fail (stat != NULL, NULL);
return g_strdup (stat->tty_text);
}
/* return 1 if it works, or 0 for failure */
static gboolean
stat2proc (pid_t pid,
CkProcessStat *P)
{
struct psinfo p;
char buf[32];
int num;
int fd;
int tty_maj;
int tty_min;
snprintf (buf, sizeof buf, "/proc/%d/psinfo", pid);
if ((fd = open (buf, O_RDONLY, 0) ) == -1 ) {
return FALSE;
}
num = read (fd, &p, sizeof p);
close (fd);
if (num != sizeof p) {
return FALSE;
}
num = PRFNSZ;
if (num >= sizeof P->cmd) {
num = sizeof P->cmd - 1;
}
memcpy (P->cmd, p.pr_fname, num); /* p.pr_fname or p.pr_lwp.pr_name */
P->cmd[num] = '\0';
P->pid = p.pr_pid;
P->ppid = p.pr_ppid;
P->pgrp = p.pr_pgid;
P->session = p.pr_sid;
P->rss = p.pr_rssize;
P->vsize = p.pr_size;
P->start_time = p.pr_start.tv_sec;
P->wchan = p.pr_lwp.pr_wchan;
P->state = p.pr_lwp.pr_sname;
P->nice = p.pr_lwp.pr_nice;
P->priority = p.pr_lwp.pr_pri; /* or pr_oldpri */
P->penv = p.pr_envp;
/* we like it Linux-encoded :-) */
tty_maj = major (p.pr_ttydev);
tty_min = minor (p.pr_ttydev);
P->tty = DEV_ENCODE (tty_maj,tty_min);
snprintf (P->tty_text, sizeof P->tty_text, "%3d,%-3d", tty_maj, tty_min);
if (tty_maj == 24) {
snprintf (P->tty_text, sizeof P->tty_text, "pts/%-3u", tty_min);
}
if (P->tty == NO_TTY_VALUE) {
memcpy (P->tty_text, " ? ", 8);
}
if (P->tty == DEV_ENCODE(0,0)) {
memcpy (P->tty_text, "console", 8);
}
if (P->pid != pid) {
return FALSE;
}
return TRUE;
}
gboolean
ck_process_stat_new_for_unix_pid (pid_t pid,
CkProcessStat **stat,
GError **error)
{
char *path;
char *contents;
gsize length;
gboolean res;
GError *local_error;
CkProcessStat *proc;
g_return_val_if_fail (pid > 1, FALSE);
if (stat == NULL) {
return FALSE;
}
proc = g_new0 (CkProcessStat, 1);
proc->pid = pid;
res = stat2proc (pid, proc);
if (res) {
*stat = proc;
} else {
g_propagate_error (error, local_error);
*stat = NULL;
}
return res;
}
void
ck_process_stat_free (CkProcessStat *stat)
{
g_free (stat);
}
GHashTable *
ck_unix_pid_get_env_hash (pid_t pid)
{
GHashTable *hash;
char *cmd;
char buf[BUFSIZ];
FILE *fp;
int i;
hash = g_hash_table_new_full (g_str_hash,
g_str_equal,
g_free,
g_free);
cmd = g_strdup_printf ("pargs -e %d", pid);
fp = popen (cmd, "r");
g_free (cmd);
while (fgets (buf, BUFSIZ, fp) != NULL) {
g_strchomp (buf);
if (g_str_has_prefix (buf, "envp[")) {
char *skip_prefix;
skip_prefix = strstr (buf, " ");
if (skip_prefix != NULL) {
char **vals;
vals = g_strsplit (buf, "=", 2);
if (vals != NULL) {
g_hash_table_insert (hash,
g_strdup (vals[0]),
g_strdup (vals[1]));
g_strfreev (vals);
}
}
}
}
out:
return hash;
}
char *
ck_unix_pid_get_env (pid_t pid,
const char *var)
{
GHashTable *hash;
char *val;
/*
* Would probably be more efficient to just loop through the
* environment and return the value, avoiding building the hash
* table, but this works for now.
*/
hash = ck_unix_pid_get_env_hash (pid);
val = g_strdup (g_hash_table_lookup (hash, var));
g_hash_table_destroy (hash);
return val;
}
uid_t
ck_unix_pid_get_uid (pid_t pid)
{
struct stat st;
char *path;
int uid;
int res;
g_return_val_if_fail (pid > 1, 0);
uid = -1;
path = g_strdup_printf ("/proc/%u", (guint)pid);
res = stat (path, &st);
g_free (path);
if (res == 0) {
uid = st.st_uid;
}
return uid;
}
pid_t
ck_unix_pid_get_ppid (pid_t pid)
{
int ppid;
gboolean res;
CkProcessStat *stat;
g_return_val_if_fail (pid > 1, 0);
ppid = -1;
res = ck_process_stat_new_for_unix_pid (pid, &stat, NULL);
if (! res) {
goto out;
}
ppid = ck_process_stat_get_ppid (stat);
ck_process_stat_free (stat);
out:
return ppid;
}
gboolean
ck_get_max_num_consoles (guint *num)
{
GError *error;
char *svcprop_stdout;
int status;
int max_consoles;
gboolean res;
gboolean ret;
ret = FALSE;
/*
* On Solaris, the default number of VT's is determined by
* resources and is stored in the vtdaemon SVC property
* options/vtnodecount. If the svcprop command fails, then it can
* be safely assumed that VT is not supported on this release of
* Solaris.
*/
error = NULL;
svcprop_stdout = NULL;
status = 0;
res = g_spawn_command_line_sync ("/usr/bin/svcprop -p options/vtnodecount vtdaemon",
&svcprop_stdout,
NULL,
&status,
&error);
if (res) {
if (error == NULL && svcprop_stdout != NULL) {
char *end;
end = NULL;
errno = 0;
max_consoles = strtol (svcprop_stdout, &end, 0);
if (end == NULL || end == svcprop_stdout || errno != 0) {
max_consoles = 0;
} else {
ret = TRUE;
}
}
}
if (num != NULL) {
*num = max_consoles;
}
g_free (svcprop_stdout);
return ret;
}
char *
ck_get_console_device_for_num (guint num)
{
char *device;
device = g_strdup_printf ("/dev/vt/%u", num);
return device;
}
gboolean
ck_get_console_num_from_device (const char *device,
guint *num)
{
guint n;
gboolean ret;
n = 0;
ret = FALSE;
if (device == NULL) {
return FALSE;
}
if (sscanf (device, "/dev/vt/%u", &n) == 1) {
ret = TRUE;
}
if (num != NULL) {
*num = n;
}
return ret;
}
gboolean
ck_get_active_console_num (int console_fd,
guint *num)
{
gboolean ret;
int res;
guint active;
struct vt_stat stat;
g_assert (console_fd != -1);
active = 0;
ret = FALSE;
res = ioctl (console_fd, VT_GETSTATE, &stat);
if (res == ERROR) {
perror ("ioctl VT_GETSTATE");
goto out;
}
{
int i;
g_debug ("Current VT: tty%d", stat.v_active);
for (i = 1; i <= 16; i++) {
gboolean is_on;
is_on = stat.v_state & (1 << i);
g_debug ("VT %d:%s", i, is_on ? "on" : "off");
}
}
active = stat.v_active;
ret = TRUE;
out:
if (num != NULL) {
*num = active;
}
return ret;
}
|