summaryrefslogtreecommitdiffstats
path: root/meta/packages/unfs-server/unfs-server-2.2beta47/022-add-close-on-exec-descriptors.patch
blob: 011ae74cde637b48de1849904985a565008ceb44 (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
# Force socket fds to close on exec when used in conjunction with pseudo
# Patch origin: Wind River

---
 nfsd.c    |    8 ++++++++
 rpcmisc.c |    9 +++++++++
 ugidd.c   |    8 ++++++++
 3 files changed, 25 insertions(+)

--- a/nfsd.c
+++ b/nfsd.c
@@ -630,6 +630,14 @@ nfsd_nfsproc_create_2(createargs *argp, 
 			if (S_ISSOCK(argp->attributes.mode)) {
 			  if ((s = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
 			          return(nfs_errno());
+			  /* if there is a pseudo exec mark the socket to be
+			   * closed automatically
+			   */
+			  {
+				  long f_flags;
+				  f_flags = fcntl(s, F_GETFD);
+				  f_flags = fcntl(s, F_SETFD, f_flags | FD_CLOEXEC);
+			  }
 			  sa.sun_family = AF_UNIX;
 			  strncpy(sa.sun_path, pathbuf, sizeof(sa.sun_path));
 			  sa.sun_path[sizeof(sa.sun_path)-1] = '\0';
--- a/rpcmisc.c
+++ b/rpcmisc.c
@@ -197,6 +197,15 @@ makesock(int port, int proto, int socksz
 		Dprintf(L_FATAL, "Could not make a %s socket: %s\n",
 					prot_name, strerror(errno));
 
+	/* if there is a pseudo exec mark the socket to be
+	 * closed automatically
+	 */
+	{
+		long f_flags;
+		f_flags = fcntl(s, F_GETFD);
+		f_flags = fcntl(s, F_SETFD, f_flags | FD_CLOEXEC);
+	}
+	fcntl(s, FD_CLOEXEC, 1);
 	memset((char *) &sin, 0, sizeof(sin));
 	sin.sin_family = AF_INET;
 	sin.sin_addr.s_addr = INADDR_ANY;
--- a/ugidd.c
+++ b/ugidd.c
@@ -195,6 +195,14 @@ authenticate_1_svc(argp, rqstp)
 	destaddr.sin_port = htons(*argp);
 	if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
 		goto bad;
+	/* if there is a pseudo exec mark the socket to be
+	 * closed automatically
+	 */
+	{
+		long f_flags;
+		f_flags = fcntl(s, F_GETFD);
+		f_flags = fcntl(s, F_SETFD, f_flags | FD_CLOEXEC);
+	}
 	setsockopt(s, SOL_SOCKET, SO_LINGER, 0, 0);
 	bzero((char *) &sendaddr, sizeof sendaddr);
 	/* find a reserved port */