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
|
--- src/daemon.c.orig 2003-10-26 22:10:19 UTC
+++ src/daemon.c
@@ -33,6 +33,7 @@
#include <signal.h>
#include <sys/wait.h>
#include <pwd.h>
+#include <err.h>
#include <sys/types.h>
#include <sys/stat.h>
@@ -51,20 +52,35 @@
int acceptloop(int sock)
{
- int connect, pid, len;
+ int connect, pid, otherpid;
+ socklen_t len;
struct sockaddr_in client;
/*
* Go into background.
*/
- if (debug != 0)
- ; /* Do not fork in debug mode */
+ pfh = NULL;
- else if ((pid = fork()) > 0)
- exit (0);
+ if (debug == 0) {
+ pfh = pidfile_open(pidfile, 0600, &otherpid);
+ if (pfh == NULL) {
+ if (errno == EEXIST) {
+ errx(EXIT_FAILURE, "ftp.proxy already running, pid %jd.",
+ (intmax_t)otherpid);
+ }
+ warnx("Cannot open or create pid file %s", pidfile);
+ }
+ if (daemon(0, 0) == -1) {
+ warnx("Cannot daemonize");
+ pidfile_remove(pfh);
+ exit(EXIT_FAILURE);
+ }
+ pidfile_write(pfh);
+ }
fprintf (stderr, "\nstarting ftp.proxy %s in daemon mode ...\n", VERSION);
+
while (1) {
/*
@@ -82,7 +98,7 @@ int acceptloop(int sock)
if ((pid = fork()) < 0) {
fprintf (stderr, "%04X: can't fork process: %s\n", getpid(), strerror(errno));
- exit (1);
+ exit(EXIT_FAILURE);
}
else if (pid == 0) {
int optlen;
@@ -112,7 +128,9 @@ int acceptloop(int sock)
close (1);
fprintf (stderr, "%04X: terminating\n", getpid());
-
- exit (0);
+ if (pfh != NULL) {
+ pidfile_remove(pfh);
+ }
+ exit (EXIT_SUCCESS);
}
|