-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathpids.c
More file actions
286 lines (243 loc) · 6.14 KB
/
pids.c
File metadata and controls
286 lines (243 loc) · 6.14 KB
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
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <signal.h>
#include <unistd.h>
#include "params.h" // dangerous
#include "pids.h"
#include "random.h"
#include "sanitise.h"
#include "shm.h"
#include <debug.h>
pid_t *pids;
/* Per-child cache: set once in init_child(), avoids O(n) scans. */
static int cached_childno = CHILD_NOT_FOUND;
static pid_t cached_pid = EMPTY_PIDSLOT;
static struct childdata *cached_child = NULL;
void set_child_cache(int childno, pid_t pid, struct childdata *child)
{
cached_childno = childno;
cached_pid = pid;
cached_child = child;
}
/*
* Returns true if the process exists in the kernel's task table AND is
* actually runnable. Zombies (state Z) and dying tasks (state X) are
* counted as NOT alive — they can't release locks, can't write to shm,
* can't do anything except wait to be reaped. Treating a zombie as
* "alive" deadlocks any path that's waiting for the holder to do
* something (notably check_lock() in locks.c).
*/
bool pid_alive(pid_t pid)
{
char path[64];
char state = '?';
FILE *f;
if (pid < -1) {
syslogf("kill_pid tried to kill %d!\n", pid);
show_backtrace();
return true;
}
if (pid == -1) {
syslogf("kill_pid tried to kill -1!\n");
show_backtrace();
return true;
}
if (pid == 0) {
syslogf("tried to kill_pid 0!\n");
show_backtrace();
return true;
}
if (kill(pid, 0) != 0)
return false;
/* kill() returned 0, so the task struct exists. Check whether
* it's a zombie via /proc/<pid>/stat — third whitespace-separated
* field is a single-char state. */
snprintf(path, sizeof(path), "/proc/%d/stat", pid);
f = fopen(path, "r");
if (f == NULL) {
/* Race: process exited between kill() and fopen. Treat as
* not alive — caller will recover. */
errno = ESRCH;
return false;
}
/* Format: pid (comm with possible spaces) state ppid ...
* The comm may contain ')' so look for the LAST ')' then read
* the next whitespace token. */
{
char buf[512];
size_t n = fread(buf, 1, sizeof(buf) - 1, f);
buf[n] = '\0';
char *rparen = strrchr(buf, ')');
if (rparen != NULL && rparen[1] == ' ' && rparen[2] != '\0')
state = rparen[2];
}
fclose(f);
if (state == 'Z' || state == 'X') {
/* Set errno so callers (notably check_lock) treat this
* the same as a fully-dead pid and release the lock
* instead of bailing on the EPERM-style guard. */
errno = ESRCH;
return false;
}
return true;
}
struct childdata * this_child(void)
{
if (cached_childno != CHILD_NOT_FOUND && cached_pid == getpid())
return cached_child;
/* Fallback for main process or before cache is set */
pid_t mypid = getpid();
unsigned int i;
for_each_child(i) {
if (__atomic_load_n(&pids[i], __ATOMIC_RELAXED) == mypid)
return children[i];
}
return NULL;
}
int find_childno(pid_t mypid)
{
if (cached_childno != CHILD_NOT_FOUND && cached_pid == mypid)
return cached_childno;
unsigned int i;
for_each_child(i) {
if (__atomic_load_n(&pids[i], __ATOMIC_RELAXED) == mypid)
return i;
}
return CHILD_NOT_FOUND;
}
bool pidmap_empty(void)
{
unsigned int i;
for_each_child(i) {
if (__atomic_load_n(&pids[i], __ATOMIC_RELAXED) != EMPTY_PIDSLOT)
return false;
}
return true;
}
void dump_childnos(void)
{
unsigned int i, j = 0;
char string[512], *sptr = string;
char *end = string + sizeof(string);
int n;
n = snprintf(sptr, end - sptr, "## pids: (%u active)\n",
__atomic_load_n(&shm->running_childs, __ATOMIC_RELAXED));
if (n > 0 && n < end - sptr)
sptr += n;
for (i = 0; i < max_children; i += 8) {
n = snprintf(sptr, end - sptr, "%u-%u: ", i, i + 7);
if (n > 0 && n < end - sptr)
sptr += n;
for (j = 0; j < 8; j++) {
if (i + j >= max_children)
break;
if (__atomic_load_n(&pids[i + j], __ATOMIC_RELAXED) == EMPTY_PIDSLOT) {
n = snprintf(sptr, end - sptr, "[empty] ");
} else {
pid_t pid = __atomic_load_n(&pids[i + j], __ATOMIC_RELAXED);
n = snprintf(sptr, end - sptr, "%u ", pid);
}
if (n > 0 && n < end - sptr)
sptr += n;
}
n = snprintf(sptr, end - sptr, "\n");
if (n > 0 && n < end - sptr)
sptr += n;
*sptr = '\0';
outputerr("%s", string);
sptr = string;
}
}
static pid_t pidmax;
static int read_pid_max(void)
{
unsigned long result;
char *end, buf[32];
FILE *fp;
int rc;
fp = fopen("/proc/sys/kernel/pid_max", "r");
if (!fp) {
perror("fopen");
return -1;
}
rc = -1;
if (!fgets(buf, sizeof(buf), fp))
goto out;
errno = 0;
result = strtoul(buf, &end, 10);
if (end == buf)
goto out;
if (errno == ERANGE)
goto out;
pidmax = result;
rc = 0;
out:
fclose(fp);
return rc;
}
void pids_init(void)
{
unsigned int i;
if (read_pid_max()) {
#ifdef __x86_64__
pidmax = 4194304;
#else
pidmax = 32768;
#endif
outputerr("Couldn't read pid_max from proc\n");
}
output(0, "Using pid_max = %d\n", pidmax);
pids = alloc_shared(max_children * sizeof(pid_t));
for_each_child(i)
__atomic_store_n(&pids[i], EMPTY_PIDSLOT, __ATOMIC_RELAXED);
}
int pid_is_valid(pid_t pid)
{
if ((pid > pidmax) || (pid < 1))
return false;
return true;
}
unsigned int get_pid(void)
{
unsigned int i;
pid_t pid = 0;
unsigned int dice;
/* If we get called from the parent, and there are no
* children around yet, we need to not look at the pidmap. */
if (__atomic_load_n(&shm->running_childs, __ATOMIC_RELAXED) == 0)
return 0;
/*
* Bias heavily toward real live child PIDs so that process-targeting
* syscalls (kill, ptrace, waitpid, etc.) actually reach running
* processes rather than failing with ESRCH.
*
* 70%: a real child from pids[]
* 15%: our own PID (valid, exercises self-targeting)
* 10%: 0 (process group semantics)
* 5%: 1 (init; only when dangerous flag set)
*/
dice = rand() % 100;
if (dice < 70) {
pid_t ppid = getppid();
unsigned int retries = 0;
retry: i = rand() % max_children;
pid = __atomic_load_n(&pids[i], __ATOMIC_RELAXED);
if (pid == EMPTY_PIDSLOT || pid == ppid) {
if (++retries >= 100)
return getpid();
goto retry;
}
return pid;
}
if (dice < 85)
return getpid();
if (dice < 95)
return 0;
/* dice 95-99: return 1 only when dangerous is set */
if (dangerous)
return 1;
return getpid();
}