-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdaemonize.c
58 lines (53 loc) · 1.65 KB
/
daemonize.c
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
/**
* ratched - TLS connection router that performs a man-in-the-middle attack
* Copyright (C) 2017-2017 Johannes Bauer
*
* This file is part of ratched.
*
* ratched is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; this program is ONLY licensed under
* version 3 of the License, later versions are explicitly excluded.
*
* ratched is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ratched; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Johannes Bauer <[email protected]>
**/
#include <stdbool.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include "daemonize.h"
#include "logging.h"
bool daemonize(void) {
pid_t pid = fork();
if (pid == -1) {
logmsg(LLVL_FATAL, "First fork(3) failed: %s", strerror(errno));
return false;
} else if (pid != 0) {
/* Parent process, exit. */
exit(EXIT_SUCCESS);
}
/* Child process survives */
pid = fork();
if (pid == -1) {
logmsg(LLVL_FATAL, "Second fork(3) failed: %s", strerror(errno));
return false;
} else if (pid != 0) {
/* Parent process, exit. */
exit(EXIT_SUCCESS);
}
/* Again, child process survives */
if (chdir("/") == -1) {
logmsg(LLVL_FATAL, "chdir(3) to root directory failed: %s", strerror(errno));
return false;
}
return true;
}