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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <ctype.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);
static void sighandler_master(int signo);
static inline void bin2hex_char(unsigned char c, char hexc[5]);
int set_fd_nonblock(int fd)
{
int flags;
flags = fcntl(fd, F_GETFL, 0);
if (flags < 0)
return 1;
flags |= O_NONBLOCK;
if (fcntl(fd, F_SETFL, flags) == -1)
return 1;
return 0;
}
static void sighandler_child(int signo)
{
switch (signo) {
case SIGHUP:
if (getppid() == 1) {
N("Master process %d died, exiting", getpgrp());
exit(EXIT_SUCCESS);
}
break;
case SIGSEGV:
E("%s", "Got a SIGSEGV signal, abort ..");
exit(EXIT_FAILURE);
}
}
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 );
assert( signal(SIGSEGV, sighandler_child) != SIG_ERR );
return signal(SIGHUP, sighandler_child) == SIG_ERR;
}
static void sighandler_master(int signo)
{
static int exiting = 0;
switch (signo) {
case SIGINT:
case SIGTERM:
case SIGABRT:
if (exiting)
break;
exiting = 1;
W("Got signal %d, exiting", signo);
kill(0, SIGTERM);
exit(EXIT_FAILURE);
}
}
int set_master_sighandler(void)
{
int s = 0;
s |= signal(SIGINT, sighandler_master) == SIG_ERR;
s |= signal(SIGTERM, sighandler_master) == SIG_ERR;
s |= signal(SIGABRT, sighandler_master) == SIG_ERR;
return s;
}
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 change_default_user_group(void)
{
return change_user_group("nobody", NULL);
}
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 = strnlen(path, PATH_MAX);
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("none", "/", "", 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 mount_proc(const char *mount_path)
{
int s;
umount(mount_path);
s = mount("proc", mount_path, "proc",
MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_REC, NULL);
if (s) {
E_STRERR("Mount proc 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+2];
snprintf(devpath, plen+dlen+2, "%s/%s", mount_path, device_file);
s = stat(devpath, &devbuf);
if (s && errno != EEXIST && errno != ENOENT) {
return 1;
}
if (errno == EEXIST) {
if (unlink(devpath))
return 1;
}
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)
{
int s = 0;
s |= create_device_file_checked(mount_path, "ptmx", S_IFCHR, 1, makedev(5,2));
s |= create_device_file_checked(mount_path, "tty", S_IFCHR, 1, makedev(5,0));
return s;
}
#if 0
int update_guid_map(pid_t pid, unsigned int map[3], int update_uidmap)
{
int s, fd;
ssize_t written;
const char path_pid[] = "/proc/%d/%s";
const char path_self[] = "/proc/self/%s";
char buf[64];
if (pid < 0) {
s = snprintf(buf, sizeof buf, path_self,
(update_uidmap ? "uid_map" : "gid_map"));
} else {
s = snprintf(buf, sizeof buf, path_pid, pid,
(update_uidmap ? "uid_map" : "gid_map"));
}
if (s <= 0)
return 1;
fd = open(buf, O_WRONLY);
if (fd < 0)
return 1;
s = snprintf(buf, sizeof buf, "%u %u %u\n", map[0], map[1], map[2]);
written = write(fd, buf, s);
if (written <= 0)
return 1;
return 0;
}
int update_setgroups_self(int allow)
{
int fd;
ssize_t written;
const char path_self[] = "/proc/self/setgroups";
const char str_allow[] = "allow";
const char str_deny[] = "deny";
fd = open(path_self, O_WRONLY);
if (fd < 0)
return 1;
if (allow) {
written = write(fd, str_allow, sizeof(str_allow) - 1);
} else {
written = write(fd, str_deny, sizeof(str_deny) - 1);
}
if (written <= 0)
return 1;
return 0;
}
#endif
static inline void bin2hex_char(unsigned char c, char hexc[5])
{
static const char hexalnum[] = "0123456789ABCDEF";
hexc[0] = '\\';
hexc[1] = 'x';
hexc[2] = hexalnum[ (c >> 4)%16 ];
hexc[3] = hexalnum[ (c & 0x0F)%16 ];
hexc[4] = 0;
}
void escape_ascii_string(const char ascii[], size_t siz, char **dest, size_t *newsiz)
{
char hexbyte[5];
const size_t binsiz = 4;
size_t i, j, ns;
assert(ascii && dest && newsiz);
ns = 0;
for (i = 0; i < siz; ++i) {
if (isprint(ascii[i]))
ns++;
else
ns += binsiz;
}
if (ns > *newsiz) {
if (*dest)
free(*dest);
*dest = (char *) malloc(sizeof(char) * (ns+1));
assert(*dest);
(*newsiz) = ns;
}
for (i = 0, j = 0; i < siz && j < ns; ++i) {
if (isprint(ascii[i])) {
(*dest)[j] = ascii[i];
j++;
} else {
bin2hex_char(ascii[i], hexbyte);
snprintf((*dest)+j, binsiz+1, "%s", hexbyte);
j += binsiz;
}
}
(*dest)[ns] = 0;
}
|