-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpwait.cpp
269 lines (210 loc) · 6.75 KB
/
pwait.cpp
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
#define _POSIX_C_SOURCE 200112L
#include <iostream>
#include <fstream>
#include <vector>
#include <cstdlib>
#include <cctype>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <signal.h>
#include <errno.h>
#include <string.h>
#include <getopt.h>
#include <time.h>
#define TIMEOUT_SIGNAL SIGUSR1
#define USEC 1e8
static const struct option long_options[] = {
{"timeout", required_argument, NULL, 't'},
{"interval", required_argument, NULL, 'n'},
{"help", no_argument, NULL, 'h'},
};
struct process {
std::string name;
pid_t pid;
};
bool isNumber(const char*);
bool checkPid(pid_t);
std::vector<process> buildProcessVec(void);
void timerExpire(int);
static volatile sig_atomic_t timer_done = 0;
static const char* prog_short_name = "pwait";
void usage(void) {
std::cerr <<
"Usage:\n" << prog_short_name << " [options] <PID..> <PROG NAME..>\n\n"
"\t-n, --interval NUMBER\tsleep for NUMBER seconds after each check\n" <<
"\t-t, --timeout NUMBER\texit with 1 after NUMBER seconds have passed\n" <<
prog_short_name << '\n';
}
void timerExpire(int signo) {
(void) signo;
timer_done = 1;
}
bool checkPid(pid_t pid) {
int saved_errno = errno;
int rc = kill(pid, 0);
bool rt = rc == -1 && errno == ESRCH;
errno = saved_errno;
return !rt;
}
bool isNumber(const char *arg) {
while(*arg) {
if(!isdigit(*arg++)) return false;
}
return true;
}
std::vector<process> buildProcessVec(void) {
static const std::string proc_path = "/proc";
std::vector<process> processes;
DIR* procd = opendir(proc_path.c_str());
if(!procd) return processes;
int procd_fd = dirfd(procd);
struct dirent* proc_entry;
struct stat entry_info;
while((proc_entry = readdir(procd))) {
// Use stat to determine filetype since d_type is not portable, see readdir(3)
if(fstatat(procd_fd, proc_entry->d_name, &entry_info, 0) == -1) {
std::cerr << "Failed to open " << proc_entry->d_name << '\n';
continue;
}
if(!S_ISDIR(entry_info.st_mode) ||
(!strcmp(proc_entry->d_name, "..") ||
!strcmp(proc_entry->d_name, ".")) ||
!isNumber(proc_entry->d_name)) {
continue;
}
std::string status_path = proc_path + "/" + proc_entry->d_name + "/status";
std::ifstream status_file;
status_file.open(status_path.c_str());
if(!status_file) {
std::cerr << "warn: Failed to open " << status_path << '\n';
continue;
}
std::string line;
while(std::getline(status_file, line)) {
if(line.find("Name") == 0) {
// Copy everything after Name:\t for process name
process p;
p.name = line.substr(6);
p.pid = std::atoi(proc_entry->d_name);
processes.push_back(p);
break;
}
}
}
closedir(procd);
return processes;
}
int main(int argc, char** argv) {
bool gathered_proc_info = false;
std::vector<process> processes;
double timeout = -1;
double sleep_interval = -1;
// TODO:
// add support for options to these arguments like 10s 3m, 1d
int opt;
while((opt = getopt_long(argc, argv, "t:n:h", long_options, NULL)) != -1) {
switch(opt) {
char* end;
case 't': {
end = NULL;
double temp = strtod(optarg, &end);
if(*end != '\0' || temp < 0) {
std::cerr << "Invalid argument " << optarg << '\n';
return 1;
}
timeout = temp > 0.1 ? temp : 0.1;
break;
}
case 'n': {
end = NULL;
double temp = strtod(optarg, &end);
if(*end != '\0' || temp < 0) {
std::cerr << "Invalid argument " << optarg << '\n';
return 1;
}
sleep_interval = temp > 0.1 ? temp : 0.1;
break;
}
case 'h':
usage();
return 0;
default:
std::cerr << "Invalid argument\n";
return 1;
}
}
if(argc == optind) {
//std::cerr << program_invocation_short_name << ": No pids given\n";
usage();
return 1;
}
std::vector<pid_t> target_pids;
for(int idx = optind; idx < argc; idx++) {
if(isNumber(argv[idx]))
target_pids.push_back(std::atoi(argv[idx]));
else {
if(!gathered_proc_info) {
processes = buildProcessVec();
gathered_proc_info = true;
}
for(size_t i = 0; i < processes.size(); i++) {
if(processes[i].name.find(argv[idx]) != std::string::npos) {
target_pids.push_back(processes[i].pid);
}
}
}
}
if(target_pids.size() == 0) return 1;
if(timeout != -1) {
struct sigaction action;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
action.sa_handler = timerExpire;
if(sigaction(TIMEOUT_SIGNAL, &action, NULL) == -1) {
std::cerr << "Failed to establish signal handler\n";
return 1;
}
struct sigevent event;
event.sigev_notify = SIGEV_SIGNAL;
event.sigev_signo = TIMEOUT_SIGNAL;
timer_t t_id;
if(timer_create(CLOCK_REALTIME, &event, &t_id) == -1) {
std::cerr << "Failed to create timer\n";
return 1;
}
struct itimerspec req;
req.it_interval.tv_sec = 0;
req.it_interval.tv_nsec = 0;
req.it_value.tv_sec = (long) timeout;
req.it_value.tv_nsec = (long) ((timeout - (long) timeout) / 0.1) * USEC;
if(timer_settime(t_id, 0, &req, NULL) == -1) {
std::cerr << "Failed to set timer\n";
return 1;
}
}
struct timespec req;
if(sleep_interval != -1) {
req.tv_sec = (long) sleep_interval;
req.tv_nsec = (long) ((sleep_interval - (long) sleep_interval) / 0.1) * USEC;
} else {
req.tv_sec = 1;
req.tv_nsec = 0;
}
size_t count_done = 0;
const size_t num_pids = target_pids.size();
while(!timer_done) {
for(size_t idx = 0; idx < target_pids.size(); idx++) {
if(target_pids[idx] == 0 || checkPid(target_pids[idx])) continue;
target_pids[idx] = 0;
if(++count_done == num_pids) {
goto out;
}
}
clock_nanosleep(CLOCK_REALTIME, 0, &req, NULL);
}
out:
int rv = !(count_done == num_pids);
return rv;
}