summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/019-pid-before-fork.patch
blob: 1b9c06a8e7e3e02c3303ba49165c8bab9c850a92 (plain)
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
Upstream-Status: Inappropriate [other]
Upstream is not making further releases of this software.

Signed-off-by: Scott Garman <scott.a.garman@intel.com>

# Write a pid file before forking
# Patch origin: Wind River

Index: nfs-server-2.2beta47/daemon.c
===================================================================
--- nfs-server-2.2beta47.orig/daemon.c
+++ nfs-server-2.2beta47/daemon.c
@@ -15,6 +15,19 @@
 static const char *	pidfilename = 0;
 static const char *	get_signame(int signo);
 
+void
+writepid(pid_t pid, int clear)
+{
+	FILE	*fp;
+
+	fp = fopen(pidfilename, clear? "w" : "a");
+	if (fp == NULL)
+		Dprintf(L_FATAL, "Unable to open %s: %m", pidfilename);
+	fprintf(fp, "%d\n", pid);
+	fclose(fp);
+	return;
+}
+
 /*
  * Do the Crawley Thing
  */
@@ -33,8 +46,10 @@ daemonize(void)
 		Dprintf(L_FATAL, "unable to fork: %s", strerror(errno));
 
 	/* Parent process: exit */
-	if (c > 0)
+	if (c > 0) {
+		writepid(c, 1);
 		exit(0);
+	}
 
 	/* Do the session stuff */
 	close(0);
@@ -60,19 +75,6 @@ setpidpath(const char *filename)
 }
 
 void
-writepid(pid_t pid, int clear)
-{
-	FILE	*fp;
-
-	fp = fopen(pidfilename, clear? "w" : "a");
-	if (fp == NULL)
-		Dprintf(L_FATAL, "Unable to open %s: %m", pidfilename);
-	fprintf(fp, "%d\n", pid);
-	fclose(fp);
-	return;
-}
-
-void
 failsafe(int level, int ncopies)
 {
 	int	*servers, running, child, i;
Index: nfs-server-2.2beta47/mountd.c
===================================================================
--- nfs-server-2.2beta47.orig/mountd.c
+++ nfs-server-2.2beta47/mountd.c
@@ -425,9 +425,6 @@ main(int argc, char **argv)
 		background_logging();
 	}
 
-	/* Become a daemon */
-	if (!foreground)
-		daemonize();
 
 	/* Initialize the FH module. */
 	fh_init();
@@ -435,11 +432,15 @@ main(int argc, char **argv)
 	/* Initialize the AUTH module. */
 	auth_init(auth_file);
 
-	/* Write pidfile */
     if (mount_pid_file == 0)
         mount_pid_file = _PATH_MOUNTD_PIDFILE;
     setpidpath(mount_pid_file);
-	writepid(getpid(), 1);
+
+	/* Become a daemon */
+	if (!foreground)
+		daemonize();
+	else
+		writepid(getpid(), 1);
 
 	/* Failsafe mode */
 	if (failsafe_level)
Index: nfs-server-2.2beta47/nfsd.c
===================================================================
--- nfs-server-2.2beta47.orig/nfsd.c
+++ nfs-server-2.2beta47/nfsd.c
@@ -1147,11 +1147,6 @@ main(int argc, char **argv)
 	/* if (ncopies > 1)
 		read_only = 1; */
 
-	/*
-	 * We first fork off a child and detach from tty
-	 */
-	if (!foreground)
-		daemonize();
 
 	/* Initialize the AUTH module. */
 	auth_init(auth_file);
@@ -1160,9 +1155,16 @@ main(int argc, char **argv)
         nfs_pid_file = _PATH_NFSD_PIDFILE;
     setpidpath(nfs_pid_file);
 
+	/*
+	 * We first fork off a child and detach from tty
+	 */
+	if (!foreground)
+		daemonize();
+	else
+		writepid(getpid(), 1);
+
 	if (failsafe_level == 0) {
 		/* Start multiple copies of the server */
-		writepid(getpid(), 1);
 		for (i = 1; i < ncopies; i++) {
 			pid_t	pid;