summary refs log tree commit diff
path: root/src/minutils/s6ps_statparse.c
blob: d8bc39e7e1aafb6a57964b92fab1ff85bb271e18 (plain) (blame)
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
/* ISC license. */

#include <errno.h>
#include <skalibs/uint32.h>
#include <skalibs/uint64.h>
#include <skalibs/fmtscan.h>
#include <skalibs/stralloc.h>
#include <skalibs/tai.h>
#include "s6-ps.h"

 /*
    going to great lengths to avoid scanf(), but all this code
    is still smaller than scanf (no floating point parsing etc.)
 */

#define STATVARS 41

typedef unsigned int scanfunc_t (char const *, void *) ;
typedef scanfunc_t *scanfunc_t_ref ;

static unsigned int f32 (char const *s, void *u32)
{
  uint32 *u = u32 ;
  return uint32_scan(s, u) ;
}

static unsigned int f64 (char const *s, void *u64)
{
  uint64 *u = u64 ;
  return uint64_scan(s, u) ;
}

static unsigned int fint (char const *s, void *i)
{
  int *d = i ;
  return int_scan(s, d) ;
}

static scanfunc_t_ref scanfuncs[STATVARS] =
{
  &f32, /* ppid */
  &f32, /* pgrp */
  &f32, /* session */
  &f32, /* tty_nr */
  &fint, /* tpgid */
  &f32, /* flags */
  &f32, /* minflt */
  &f32, /* cminflt */
  &f32, /* majflt */
  &f32, /* cmajflt */
  &f64, /* utime */
  &f64, /* stime */
  &f64, /* cutime */
  &f64, /* cstime */
  &fint, /* priority */
  &fint, /* nice */
  &f32, /* num_threads */
  &f32, /* itrealvalue */
  &f64, /* starttime */
  &f64, /* vsize */
  &f64, /* rss */
  &f64, /* rsslim */
  &f64, /* startcode */
  &f64, /* endcode */
  &f64, /* startstack */
  &f64, /* kstkesp */
  &f64, /* kstkeip */
  &f32, /* signal */
  &f32, /* blocked */
  &f32, /* sigignore */
  &f32, /* sigcatch */
  &f64, /* wchan */
  &f32, /* nswap */
  &f32, /* cnswap */
  &f32, /* exit_signal */
  &f32, /* processor */
  &f32, /* rt_priority */
  &f32, /* policy */
  &f64, /* delayacct_blkio_ticks */
  &f32, /* guest_time */
  &f32 /* cguest_time */
} ;

int s6ps_statparse (pscan_t *p)
{
  uint64 dummy64 ;
  uint32 dummy32 ;
  unsigned int pos = 0 ;
  void *scanresults[STATVARS] =
  {
    &p->ppid,
    &p->pgrp,
    &p->session,
    &p->ttynr,
    &p->tpgid,
    &dummy32,
    &dummy32,
    &dummy32,
    &dummy32,
    &dummy32,
    &p->utime,
    &p->stime,
    &p->cutime,
    &p->cstime,
    &p->prio,
    &p->nice,
    &p->threads,
    &dummy32,
    &p->start,
    &p->vsize,
    &p->rss,
    &p->rsslim,
    &dummy64,
    &dummy64,
    &dummy64,
    &dummy64,
    &dummy64,
    &dummy32,
    &dummy32,
    &dummy32,
    &dummy32,
    &p->wchan,
    &dummy32,
    &dummy32,
    &dummy32,
    &p->cpuno,
    &p->rtprio,
    &p->policy,
    &dummy64,
    &dummy32,
    &dummy32
  } ;
  register unsigned int i = 0 ;

  if (!p->statlen) return 0 ;
  pos = uint32_scan(p->data.s, &dummy32) ;
  if (!pos) return 0 ;
  if (dummy32 != p->pid) return 0 ;
  if (pos + 5 + p->commlen > p->statlen) return 0 ;
  if (p->data.s[pos++] != ' ') return 0 ;
  if (p->data.s[pos++] != '(') return 0 ;
  pos += p->commlen ;
  if (p->data.s[pos++] != ')') return 0 ;
  if (p->data.s[pos++] != ' ') return 0 ;
  p->state = pos++ ;
  for (; i < STATVARS ; i++)
  {
    unsigned int w ;
    if (pos + 1 > p->statlen) return 0 ;
    if (p->data.s[pos++] != ' ') return 0 ;
    w = (*scanfuncs[i])(p->data.s + pos, scanresults[i]) ;
    if (!w) return 0 ;
    pos += w ;
  }
  return 1 ;
}