summaryrefslogtreecommitdiff
path: root/libps/procstat.c
blob: 9997fc3a460edff8dcbb3a5ebaefadb0612c8d6b (plain)
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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
/* The type proc_stat_t, which holds information about a hurd process.

   Copyright (C) 1995 Free Software Foundation, Inc.

   Written by Miles Bader <miles@gnu.ai.mit.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, 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., 675 Mass Ave, Cambridge, MA 02139, USA. */

#include <hurd.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>

#include "ps.h"
#include "common.h"

/* ---------------------------------------------------------------- */

/* These directly correspond to the bits in a state, starting from 0.  See
   ps.h for an explanation of what each of these means.  */
char *proc_stat_state_tags = "TZRHDSIN<u+sfmpox";

/* ---------------------------------------------------------------- */

/* Return the PSTAT_STATE_ bits describing the state of an individual thread,
   from that thread's thread_basic_info_t struct */
static int 
thread_state(thread_basic_info_t bi)
{
  int state = 0;

  switch (bi->run_state)
    {
    case TH_STATE_RUNNING:
      state |= PSTAT_STATE_T_RUN;
      break;
    case TH_STATE_UNINTERRUPTIBLE:
      state |= PSTAT_STATE_T_WAIT;
      break;
    case TH_STATE_HALTED:
      state |= PSTAT_STATE_T_HALT;
      break;
    case TH_STATE_STOPPED:
      state |= PSTAT_STATE_T_HALT | PSTAT_STATE_T_UNCLEAN;
      break;
    case TH_STATE_WAITING:
      /* Act like unix: waits of less than 20 seconds means a process is
	 `sleeping' and >= 20 seconds means it's `idle' */
      state |= bi->sleep_time < 20 ? PSTAT_STATE_T_SLEEP : PSTAT_STATE_T_IDLE;
      break;
    }

  if (bi->base_priority < 12)
    state |= PSTAT_STATE_T_NASTY;
  else if (bi->base_priority > 12)
    state |= PSTAT_STATE_T_NICE;

  return state;
}

/* ---------------------------------------------------------------- */

/* Returns FLAGS augmented with any other flags that are necessary
   preconditions to setting them.  */
static ps_flags_t 
add_preconditions (ps_flags_t flags)
{
  /* Implement any inter-flag dependencies: if the new flags in FLAGS depend
     on some other set of flags to be set, make sure those are also in
     FLAGS. */
  if (flags & PSTAT_TTY)
    flags |= PSTAT_CTTYID;
  if (flags & PSTAT_STATE)
    flags |= PSTAT_EXEC_FLAGS;	/* For the traced bit.  */
  if (flags & PSTAT_SUSPEND_COUNT)
    /* We just request the resources require for both the thread and task
       versions, as the extraneous info won't be possible to aquire anyway. */
    flags |= PSTAT_INFO | PSTAT_THREAD_INFO;
  if (flags & (PSTAT_CTTYID | PSTAT_CWDIR | PSTAT_AUTH | PSTAT_UMASK
	       | PSTAT_EXEC_FLAGS)
      && !(flags & PSTAT_NO_MSGPORT))
    {
      flags |= PSTAT_MSGPORT;
      flags |= PSTAT_TASK;	/* for authentication */
    }
  if (flags & (PSTAT_THREAD_INFO | PSTAT_STATE | PSTAT_OWNER))
    flags |= PSTAT_INFO;
  if (flags & PSTAT_TASK_EVENTS_INFO)
    flags |= PSTAT_TASK;

  return flags;
}

/* Those flags that should be set before calling should_suppress_msgport.  */
#define SHOULD_SUPPRESS_MSGPORT_FLAGS (PSTAT_INFO | PSTAT_THREAD_INFO)

/* Return true when there's some condition indicating that we shouldn't use
   PS's msg port.  For this routine to work correctly, PS's flags should
   contain as many flags in SHOULD_SUPPRESS_MSGPORT_FLAGS as possible.  */
static int
should_suppress_msgport (proc_stat_t ps)
{
  ps_flags_t have = ps->flags;

  if ((have & PSTAT_INFO) && ps->info->taskinfo.suspend_count != 0)
    /* Task is suspended.  */
    return TRUE;

  if ((have & PSTAT_THREAD_INFO) && ps->thread_basic_info.suspend_count != 0)
    /* All threads are suspended.  */
    return TRUE;

  if ((have & PSTAT_INFO) && ps->info->nthreads == 0)
    /* No threads (some bug could cause the procserver still to think there's
       a msgport).  */
    return TRUE;

  return FALSE;
}

/* Returns FLAGS with PSTAT_MSGPORT turned off and PSTAT_NO_MSGPORT on.  */
#define SUPPRESS_MSGPORT_FLAGS(flags) \
   (((flags) & ~PSTAT_MSGPORT) | PSTAT_NO_MSGPORT)

/* ---------------------------------------------------------------- */

/* Add FLAGS to PS's flags, fetching information as necessary to validate
   the corresponding fields in PS.  Afterwards you must still check the flags
   field before using new fields, as something might have failed.  Returns
   a system error code if a fatal error occurred, or 0 if none.  */
error_t
proc_stat_set_flags (proc_stat_t ps, ps_flags_t flags)
{
  ps_flags_t have = ps->flags;	/* flags set in ps */
  ps_flags_t need;		/* flags not set in ps, but desired to be */
  ps_flags_t no_msgport_flags;	/* a version of FLAGS for use when we can't
				   use the msg port.  */
  process_t server = ps_context_server(ps->context);

  /* Turn off use of the msg port if we decide somewhere along the way that
     it's hosed.  */
  void suppress_msgport ()
    {
      /* Turn off those things that were only good given the msg port.  */
      need &= ~(flags & ~no_msgport_flags);
      have = SUPPRESS_MSGPORT_FLAGS (have);
    }

  /* Propagate PSTAT_NO_MSGPORT.  */
  if (flags & PSTAT_NO_MSGPORT)
    have = SUPPRESS_MSGPORT_FLAGS (have);
  if (have & PSTAT_NO_MSGPORT)
    flags = SUPPRESS_MSGPORT_FLAGS (flags);

  no_msgport_flags = add_preconditions (SUPPRESS_MSGPORT_FLAGS (flags));
  flags = add_preconditions (flags);

  if (flags & PSTAT_MSGPORT)
    /* Add in some values that we can use to determine whether the msgport
       shouldn't be used.  */
    flags |= add_preconditions (SHOULD_SUPPRESS_MSGPORT_FLAGS);

  need = flags & ~have;

  /* MGET: If we're trying to set FLAG, and the preconditions PRECOND are set
     in the flags already, then eval CALL and set ERR to the result.
     If the resulting ERR is 0 add FLAG to the set of valid flags.  ERR is
     returned.  */
#define MGET(_flag, _precond, call) \
  ({ ps_flags_t flag = (_flag), precond = (_precond); \
     error_t err; \
     if (!(need & (flag)) || (have & (precond)) != (precond)) \
       err = 0; \
     else \
       { \
	 err = (call); \
	 if (!err) \
	   have |= flag; \
       } \
     err; \
   })

  /* A version of MGET specifically for the msg port, that turns off the msg
     port if a call to it times out.  It also implies a precondition of
     PSTAT_MSGPORT.  */
#define MP_MGET(flag, precond, call) \
  ({ error_t err = MGET(flag, (precond) | PSTAT_MSGPORT, call); \
     if (err) suppress_msgport (); \
     err; \
   })

  /* the process's struct procinfo as returned by proc_getprocinfo.  */
  if ((need & PSTAT_INFO) && (have & PSTAT_PID))
    {
      ps->info_size = 0;
      if (proc_getprocinfo(server, ps->pid, (int **)&ps->info, &ps->info_size)
	  == 0)
	have |= PSTAT_INFO;
    }

  /* A summary of the proc's thread_{basic,sched}_info_t structures: sizes
     and cumulative times are summed, prioritys and delta time are
     averaged.  The run_states are added by having running thread take
     precedence over waiting ones, and if there are any other incompatible
     states, simply using a bogus value of -1 */
  if ((need & PSTAT_THREAD_INFO) && (have & PSTAT_INFO))
    {
      int i;
      struct procinfo *pi = ps->info;
      thread_sched_info_t tsi = &ps->thread_sched_info;
      thread_basic_info_t tbi = &ps->thread_basic_info;

      bzero(tbi, sizeof *tbi);
      bzero(tsi, sizeof *tsi);

      for (i = 0; i < pi->nthreads; i++)
	{
	  thread_basic_info_t bi = &pi->threadinfos[i].pis_bi;
	  thread_sched_info_t si = &pi->threadinfos[i].pis_si;
	  int thread_run_state = bi->run_state;

	  /* Construct some aggregate run-state for the process:  besides the
	     defined thread run_states, we use 0 to mean no threads, and -1
	     to mean two threads have conflicting run_stats.  */

	  if (tbi->run_state == 0)
	    /* No prior state, just copy this thread's.  */
	    tbi->run_state = thread_run_state;
	  else if (tbi->run_state == TH_STATE_RUNNING
		   || thread_run_state == TH_STATE_RUNNING)
	    /* If any thread is running, mark the process as running.  */
	    tbi->run_state = TH_STATE_RUNNING;
	  else if (tbi->run_state != bi->run_state)
	    /* Otherwise there are two conflicting non-running states, so
	       just give up and say we don't know.  */
	    tbi->run_state = -1;

	  tsi->base_priority += si->base_priority;
	  tsi->cur_priority += si->cur_priority;

	  tbi->cpu_usage += bi->cpu_usage;
	  tbi->sleep_time += bi->sleep_time;

	  /* The aggregate suspend count is the minimum of all threads.  */
	  if (i == 0 || tbi->suspend_count > bi->suspend_count)
	    tbi->suspend_count = bi->suspend_count;

	  tbi->user_time.seconds += bi->user_time.seconds;
	  tbi->user_time.microseconds += bi->user_time.microseconds;
	  tbi->system_time.seconds += bi->system_time.seconds;
	  tbi->system_time.microseconds += bi->system_time.microseconds;
	}

      if (pi->nthreads > 0)
	{
	  tsi->base_priority /= pi->nthreads;
	  tsi->cur_priority /= pi->nthreads;
	  tbi->sleep_time /= pi->nthreads;
	}

      tbi->user_time.seconds += tbi->user_time.microseconds / 1000000;
      tbi->user_time.microseconds %= 1000000;
      tbi->system_time.seconds += tbi->system_time.microseconds / 1000000;
      tbi->system_time.microseconds %= 1000000;

      have |= PSTAT_THREAD_INFO;
    }

  if ((need & PSTAT_SUSPEND_COUNT)
      &&
      ((have & PSTAT_PID) ? (have & PSTAT_INFO) : (have & PSTAT_THREAD_INFO)))
    {
      if (have & PSTAT_PID)
	ps->suspend_count = ps->info->taskinfo.suspend_count;
      else
	ps->suspend_count = ps->thread_basic_info.suspend_count;
      have |= PSTAT_SUSPEND_COUNT;
    }

  ps->flags = have;		/* should_suppress_msgport looks at them.  */
  if (should_suppress_msgport (ps))
    suppress_msgport ();

  /* The process's libc msg port (see <hurd/msg.defs>).  */
  MGET(PSTAT_MSGPORT, PSTAT_PID, proc_getmsgport(server, ps->pid, &ps->msgport));
  /* The process's process port.  */
  MGET(PSTAT_PROCESS, PSTAT_PID, proc_pid2proc(server, ps->pid, &ps->process));
  /* The process's task port.  */
  MGET(PSTAT_TASK, PSTAT_PID, proc_pid2task(server, ps->pid, &ps->task));

  /* VM statistics for the task.  See <mach/task_info.h>.  */
  if ((need & PSTAT_TASK_EVENTS_INFO) && (have & PSTAT_TASK))
    {
      ps->task_events_info = &ps->task_events_info_buf;
      ps->task_events_info_size = TASK_EVENTS_INFO_COUNT;
      if (task_info(ps->task, TASK_EVENTS_INFO,
		    (task_info_t)&ps->task_events_info,
		    &ps->task_events_info_size)
	  == 0)
	have |= PSTAT_TASK_EVENTS_INFO;
    }

  /* Get the process's exec flags (see <hurd/hurd_types.h>).  */
  MP_MGET(PSTAT_EXEC_FLAGS, PSTAT_TASK,
	  msg_get_exec_flags(ps->msgport, ps->task, &ps->exec_flags));

  /* PSTAT_STATE_ bits for the process and all its threads.  */
  if ((need & PSTAT_STATE) && (have & PSTAT_INFO))
    {
      int i;
      int state = 0;
      struct procinfo *pi = ps->info;
      int pi_flags = pi->state;

      /* The union of all thread state bits...  */
      for (i = 0; i < pi->nthreads; i++)
	state |= thread_state(&pi->threadinfos[i].pis_bi);

      /* ... and process-only state bits.  */
      if (pi_flags & PI_STOPPED)
	state |= PSTAT_STATE_P_STOP;
      if (pi_flags & PI_ZOMBIE)
	state |= PSTAT_STATE_P_ZOMBIE;
      if (pi_flags & PI_SESSLD)
	state |= PSTAT_STATE_P_SESSLDR;
      if (!(pi_flags & PI_EXECED))
	state |= PSTAT_STATE_P_FORKED;
      if (pi_flags & PI_NOMSG)
	state |= PSTAT_STATE_P_NOMSG;
      if (pi_flags & PI_NOPARENT)
	state |= PSTAT_STATE_P_NOPARENT;
      if (pi_flags & PI_ORPHAN)
	state |= PSTAT_STATE_P_ORPHAN;

      if ((have & PSTAT_EXEC_FLAGS) & (ps->exec_flags & EXEC_TRACED))
	state |= PSTAT_STATE_P_TRACE;

      ps->state = state;
      have |= PSTAT_STATE;
    }

  /* The process's exec arguments */
  if ((need & PSTAT_ARGS) && (have & PSTAT_PID))
    {
      ps->args_len = 0;
      if (proc_getprocargs(server, ps->pid, &ps->args, &ps->args_len))
	ps->args_len = 0;
      else
	have |= PSTAT_ARGS;
    }

  /* The ctty id port; note that this is just a magic cookie;
     we use it to fetch a port to the actual terminal -- it's not useful for
     much else.  */
  MP_MGET(PSTAT_CTTYID, PSTAT_TASK,
	  msg_get_init_port(ps->msgport, ps->task,
			    INIT_PORT_CTTYID, &ps->cttyid));

  /* A port to the process's current working directory.  */
  MP_MGET(PSTAT_CWDIR, PSTAT_TASK,
	  msg_get_init_port(ps->msgport, ps->task,
			    INIT_PORT_CWDIR, &ps->cwdir));

  /* The process's auth port, which we can use to determine who the process
     is authenticated as.  */
  MP_MGET(PSTAT_AUTH, PSTAT_TASK,
	  msg_get_init_port(ps->msgport, ps->task, INIT_PORT_AUTH, &ps->auth));

  /* The process's umask, which controls which protection bits won't be set
     when creating a file.  */
  MP_MGET(PSTAT_UMASK, PSTAT_TASK,
	  msg_get_init_int(ps->msgport, ps->task, INIT_UMASK, &ps->umask));

  /* A ps_user_t object for the process's owner.  */
  if ((need & PSTAT_OWNER) && (have & PSTAT_INFO))
    if (ps_context_find_user(ps->context, ps->info->owner, &ps->owner) == 0)
      have |= PSTAT_OWNER;

  /* A ps_tty_t for the process's controlling terminal, or NULL if it
     doesn't have one.  */
  if ((need & PSTAT_TTY) && (have & PSTAT_CTTYID))
    if (ps_context_find_tty_by_cttyid(ps->context, ps->cttyid, &ps->tty) == 0)
      have |= PSTAT_TTY;

  ps->flags = have;

  return 0;
}

/* ---------------------------------------------------------------- */
/* Discard PS and any resources it holds.  */
void 
_proc_stat_free(ps)
     proc_stat_t ps;
{
  /* Free the mach port PORT if FLAG is set in PS's flags.  */
#define MFREEPORT(flag, port) \
    ((ps->flags & (flag)) \
     ? mach_port_deallocate(mach_task_self(), (ps->port)) : 0)

  /* If FLAG is set in PS's flags, vm_deallocate MEM, consisting of SIZE 
     elements of type ELTYPE, *unless* MEM == SBUF, which usually means
     that MEM points to a static buffer somewhere instead of vm_alloc'd
     memory.  */
#define MFREEVM(flag, mem, size, sbuf, eltype) \
    (((ps->flags & (flag)) && ps->mem != sbuf) \
     ? (VMFREE(ps->mem, ps->size * sizeof(eltype))) : 0)

  /* free PS's ports */
  MFREEPORT(PSTAT_PROCESS, process);
  MFREEPORT(PSTAT_TASK, task);
  MFREEPORT(PSTAT_MSGPORT, msgport);
  MFREEPORT(PSTAT_CTTYID, cttyid);
  MFREEPORT(PSTAT_CWDIR, cwdir);
  MFREEPORT(PSTAT_AUTH, auth);

  /* free any allocated memory pointed to by PS */
  MFREEVM(PSTAT_INFO, info, info_size, 0, char);
  MFREEVM(PSTAT_ARGS, args, args_len, 0, char);
  MFREEVM(PSTAT_TASK_EVENTS_INFO,
	  task_events_info, task_events_info_size,
	  &ps->task_events_info_buf, char);

  FREE(ps);
}

/* Returns in PS a new proc_stat_t for the process PID at the process context
   CONTEXT.  If a memory allocation error occurs, ENOMEM is returned,
   otherwise 0.  */
error_t
_proc_stat_create(pid_t pid, ps_context_t context, proc_stat_t *ps)
{
  *ps = NEW(struct proc_stat);
  if (*ps == NULL)
    return ENOMEM;

  (*ps)->pid = pid;
  (*ps)->flags = PSTAT_PID;
  (*ps)->context = context;

  return 0;
}

/* ---------------------------------------------------------------- */

/* Returns in THREAD_PS a proc_stat_t for the Nth thread in the proc_stat_t
   PS (N should be between 0 and the number of threads in the process).  The
   resulting proc_stat_t isn't fully functional -- most flags can't be set in
   it.  It also contains a pointer to PS, so PS shouldn't be freed without
   also freeing THREAD_PS.  If N was out of range, EINVAL is returned.  If a
   memory allocation error occured, ENOMEM is returned.  Otherwise, 0 is
   returned.  */
error_t
proc_stat_thread_create(proc_stat_t ps, unsigned index, proc_stat_t *thread_ps)
{
  error_t err = proc_stat_set_flags(ps, PSTAT_THREAD_INFO);
  if (err)
    return err;
  else if (index >= ps->info->nthreads)
    return EINVAL;
  else
    {
      proc_stat_t tps = NEW(struct proc_stat);

      if (tps == NULL)
	return ENOMEM;

      /* A value of -1 for the PID indicates that this is a thread.  */
      tps->pid = -1;

      /* TPS is initialized with these values; any attempts to set other
	 flags will fail because PSTAT_PID isn't one of them.  */
      tps->flags = PSTAT_THREAD | PSTAT_THREAD_INFO | PSTAT_STATE;

      bcopy(&ps->info->threadinfos[index].pis_bi,
	    &tps->thread_basic_info,
	    sizeof(thread_basic_info_data_t));
      bcopy(&ps->info->threadinfos[index].pis_si,
	    &tps->thread_sched_info,
	    sizeof(thread_sched_info_data_t));

      /* Construct the state with only the per-thread bits.  */
      tps->state = thread_state(&tps->thread_basic_info);

      tps->thread_origin = ps;
      tps->thread_index = index;

      tps->context = ps->context;

      *thread_ps = tps;

      return 0;
    }
}