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
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdarg.h>
#include <fcntl.h>
#include <signal.h>
#include <pwd.h>
#include <grp.h>
#include <sys/types.h>
#include <sys/sysmacros.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/prctl.h>
#include <sys/mount.h>
#include <linux/limits.h>
#include <assert.h>
#include "utils.h"
#include "log.h"
#define _POSIX_PATH_MAX 256
char *arg0 = NULL;
static int null_fd = -1;
static void sighandler_child(int signo)
{
switch (signo) {
case SIGHUP:
if (getppid() == 1) {
N("Master process %d died, exiting", getpgrp());
exit(EXIT_SUCCESS);
}
break;
}
}
int set_child_sighandler(void)
{
if (prctl(PR_SET_PDEATHSIG, SIGHUP) != 0)
return 1;
assert( signal(SIGCHLD, SIG_IGN) != SIG_ERR );
assert( signal(SIGPIPE, SIG_IGN) != SIG_ERR );
return signal(SIGHUP, sighandler_child) == SIG_ERR;
}
void set_procname(const char *new_arg0)
{
assert(arg0);
memset(arg0, 0, _POSIX_PATH_MAX);
strncpy(arg0, new_arg0, _POSIX_PATH_MAX);
}
pid_t daemonize(int stay_foreground)
{
int status = -1;
pid_t pid;
/* Fork off the parent process */
pid = fork();
/* An error occurred */
if (pid < 0)
return pid;
/* Success: Let the parent terminate */
if (pid > 0) {
if (!stay_foreground)
exit(EXIT_SUCCESS);
waitpid(-1, &status, 0);
exit(EXIT_SUCCESS);
}
/* On success: The child process becomes session leader */
if (!stay_foreground && setsid() < 0) {
E_STRERR("%s", "setsid");
exit(EXIT_FAILURE);
}
/* Fork off for the second time*/
if (!stay_foreground) {
pid = fork();
/* An error occurred */
if (pid < 0)
exit(EXIT_FAILURE);
/* Success: Let the parent terminate */
if (pid > 0)
exit(EXIT_SUCCESS);
}
if (!stay_foreground && setpgrp()) {
E_STRERR("%s", "setpgrp");
exit(EXIT_FAILURE);
}
/* Set new file permissions */
umask(0);
if (!stay_foreground) {
/* Change the working directory to the root directory */
/* or another appropriated directory */
chdir("/");
/* Close all open file descriptors */
assert( close_fds_except(-1) == 0 );
assert( redirect_devnull_to(0, 1, 2, -1) == 0 );
} else {
assert( close_fds_except(0, 1, 2, -1) == 0 );
}
return pid;
}
int close_fds_except(int fds, ...)
{
int fd;
long max_fd;
size_t i, except_count, found;
va_list ap;
max_fd = sysconf(_SC_OPEN_MAX) - 1;
if (max_fd <= 0)
return 1;
if (fds < 0)
return 1;
va_start(ap, fds);
{
int *all_fds = (int *) malloc((max_fd+1) * sizeof(*all_fds));
assert(all_fds);
memset(all_fds, -1, max_fd * sizeof(*all_fds));
except_count = 0;
while ( (fd = va_arg(ap, int)) >= 0 ) {
all_fds[except_count++] = fd;
}
all_fds[except_count++] = fds;
for (fd = max_fd; fd >= 0; --fd) {
found = 0;
for (i = 0; i < except_count; ++i) {
if (fd == all_fds[i])
found++;
}
if (!found) {
close(fd);
}
}
free(all_fds);
}
va_end(ap);
return 0;
}
int redirect_devnull_to(int fds, ...)
{
int fd, rc = 0;
va_list ap;
if (null_fd < 0)
null_fd = open("/dev/null", O_RDWR);
if (null_fd < 0)
return -1;
if (fds < -1)
return -1;
va_start(ap, fds);
{
while ( (fd = va_arg(ap, int)) >= 0 ) {
if ( dup2(null_fd, fd) < 0 )
rc++;
}
}
va_end(ap);
return rc;
}
int change_user_group(const char *user, const char *group)
{
struct passwd *pwd = NULL;
struct group *grp = NULL;
gid_t gid;
pwd = getpwnam(user);
if (!pwd)
return 1;
if (!group) {
gid = pwd->pw_gid;
} else {
grp = getgrnam(group);
if (!grp)
return 1;
gid = grp->gr_gid;
}
if (setregid(gid, gid))
return 1;
if (setreuid(pwd->pw_uid, pwd->pw_uid))
return 1;
return 0;
}
int safe_chroot(const char *newroot)
{
int s;
s = chdir(newroot);
if (s) {
E_STRERR("Change directory to '%s'", newroot);
return 1;
}
s = chroot(".");
if (s) {
E_STRERR("Change root directory to '%s'", ".");
return 1;
}
s = chdir("/");
if (s) {
E_STRERR("Change directory inside new root to '%s'", "/");
return 1;
}
return 0;
}
int dir_is_mountpoint(const char *path)
{
struct stat current = {0}, parent = {0};
size_t plen = strlen(path);
char parent_path[plen + 4];
if (stat(path, ¤t))
goto error;
strncpy(parent_path, path, plen);
parent_path[plen] = '/';
parent_path[plen+1] = '.';
parent_path[plen+2] = '.';
parent_path[plen+3] = 0;
if (stat(parent_path, &parent))
goto error;
return current.st_dev != parent.st_dev;
error:
W_STRERR("Mountpoint check for '%s'", path);
return -1;
}
void chk_chroot(void)
{
struct stat s = {0};
if (stat("/", &s) == 0) {
if (s.st_ino != 2)
return;
}
E("%s", "Can not mount filesystem as slave");
exit(EXIT_FAILURE);
}
void mount_root(void)
{
int s;
s = mount(NULL, "/", "auto", MS_SLAVE|MS_REC, NULL);
if (s)
chk_chroot();
}
int mount_dev(const char *mount_path)
{
int s;
s = mount("tmpfs", mount_path, "tmpfs",
MS_NOSUID|MS_STRICTATIME|
MS_NOEXEC|MS_REC,
"size=4k,mode=755,gid=0");
if (s) {
E_STRERR("Mount devtmpfs filesystem to %s", mount_path);
return 1;
}
return 0;
}
int mount_pts(const char *mount_path)
{
int s;
s = mount("devpts", mount_path, "devpts",
MS_MGC_VAL,
"newinstance,gid=5,mode=620,ptmxmode=0666");
if (s) {
E_STRERR("Mount devpts filesystem to %s", mount_path);
return 1;
}
return 0;
}
int create_device_file_checked(const char *mount_path, const char *device_file,
mode_t mode, int add_mode, dev_t dev)
{
int s;
mode_t defmode = S_IRUSR|S_IWUSR|
S_IRGRP|S_IWGRP|
S_IROTH;
size_t plen = strnlen(mount_path, PATH_MAX);
size_t dlen = strnlen(device_file, PATH_MAX);
struct stat devbuf = {0};
char devpath[plen+dlen+1];
snprintf(devpath, plen+dlen+1, "%s/%s", mount_path, device_file);
s = stat(devpath, &devbuf);
if (s && errno != EEXIST) {
return 1;
} else if (s && errno == EEXIST) {
}
D2("Create device file: %s", devpath);
if (!add_mode)
defmode = 0;
s = mknod(devpath, defmode|mode, dev);
if (s) {
E_STRERR("Device creation '%s'", devpath);
return 1;
}
return 0;
}
int create_device_files(const char *mount_path)
{
create_device_file_checked(mount_path, "ptmx", 0, 1, makedev(5,2));
return 0;
}
|