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
|
#include "../include/Process.hpp"
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <unistd.h>
#include <sys/wait.h>
#include <limits.h>
#include <fcntl.h>
#include <dirent.h>
#include <stdlib.h>
#define PIPE_READ 0
#define PIPE_WRITE 1
namespace gsr {
static void debug_print_args(const char **args) {
fprintf(stderr, "gsr-ui info: running command:");
while(*args) {
fprintf(stderr, " %s", *args);
++args;
}
fprintf(stderr, "\n");
}
bool exec_program_daemonized(const char **args) {
/* 1 argument */
if(args[0] == nullptr)
return false;
debug_print_args(args);
const pid_t pid = vfork();
if(pid == -1) {
perror("Failed to vfork");
return false;
} else if(pid == 0) { /* child */
setsid();
signal(SIGHUP, SIG_IGN);
// Daemonize child to make the parent the init process which will reap the zombie child
const pid_t second_child = vfork();
if(second_child == 0) { // child
execvp(args[0], (char* const*)args);
perror("execvp");
_exit(127);
} else if(second_child != -1) {
// TODO:
_exit(0);
}
} else { /* parent */
waitpid(pid, nullptr, 0);
}
return true;
}
pid_t exec_program(const char **args, int *read_fd) {
if(read_fd)
*read_fd = -1;
/* 1 argument */
if(args[0] == nullptr)
return -1;
int fds[2] = {-1, -1};
if(pipe(fds) == -1)
return -1;
debug_print_args(args);
const pid_t pid = vfork();
if(pid == -1) {
close(fds[PIPE_READ]);
close(fds[PIPE_WRITE]);
perror("Failed to vfork");
return -1;
} else if(pid == 0) { /* child */
dup2(fds[PIPE_WRITE], STDOUT_FILENO);
close(fds[PIPE_READ]);
close(fds[PIPE_WRITE]);
execvp(args[0], (char* const*)args);
perror("execvp");
_exit(127);
} else { /* parent */
close(fds[PIPE_WRITE]);
if(read_fd)
*read_fd = fds[PIPE_READ];
else
close(fds[PIPE_READ]);
return pid;
}
}
int exec_program_get_stdout(const char **args, std::string &result) {
result.clear();
int read_fd = -1;
const pid_t process_id = exec_program(args, &read_fd);
if(process_id == -1)
return -1;
int exit_status = 0;
char buffer[8192];
for(;;) {
ssize_t bytes_read = read(read_fd, buffer, sizeof(buffer));
if(bytes_read == 0) {
break;
} else if(bytes_read == -1) {
fprintf(stderr, "Failed to read from pipe to program %s, error: %s\n", args[0], strerror(errno));
exit_status = -1;
break;
}
buffer[bytes_read] = '\0';
result.append(buffer, bytes_read);
}
if(exit_status != 0)
kill(process_id, SIGKILL);
int status = 0;
if(waitpid(process_id, &status, 0) == -1) {
perror("waitpid failed");
exit_status = -1;
}
if(!WIFEXITED(status))
exit_status = -1;
if(exit_status == 0)
exit_status = WEXITSTATUS(status);
close(read_fd);
return exit_status;
}
bool read_cmdline_arg0(const char *filepath, char *output_buffer) {
output_buffer[0] = '\0';
const char *arg0_end = NULL;
int fd = open(filepath, O_RDONLY);
if(fd == -1)
return false;
char buffer[PATH_MAX];
ssize_t bytes_read = read(fd, buffer, sizeof(buffer));
if(bytes_read == -1)
goto err;
arg0_end = (const char*)memchr(buffer, '\0', bytes_read);
if(!arg0_end)
goto err;
memcpy(output_buffer, buffer, arg0_end - buffer);
output_buffer[arg0_end - buffer] = '\0';
close(fd);
return true;
err:
close(fd);
return false;
}
}
|