]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/mount_portalfs/mount_portalfs.c
This commit was generated by cvs2svn to compensate for changes in r135768,
[FreeBSD/FreeBSD.git] / usr.sbin / mount_portalfs / mount_portalfs.c
1 /*
2  * Copyright (c) 1992, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software donated to Berkeley by
6  * Jan-Simon Pendry.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 4. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32
33 #ifndef lint
34 char copyright[] =
35 "@(#) Copyright (c) 1992, 1993, 1994\n\
36         The Regents of the University of California.  All rights reserved.\n";
37 #endif /* not lint */
38
39 #if 0
40 static char sccsid[] = "@(#)mount_portal.c      8.6 (Berkeley) 4/26/95";
41 #endif
42
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD$");
45
46 #include <sys/param.h>
47 #include <sys/wait.h>
48 #include <sys/socket.h>
49 #include <sys/un.h>
50 #include <sys/stat.h>
51 #include <sys/syslog.h>
52 #include <sys/mount.h>
53
54 #include <err.h>
55 #include <errno.h>
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <sysexits.h>
60 #include <unistd.h>
61
62 #include "mntopts.h"
63 #include "pathnames.h"
64 #include "portald.h"
65
66 struct mntopt mopts[] = {
67         MOPT_STDOPTS,
68         { NULL }
69 };
70
71 static void usage(void) __dead2;
72
73 static sig_atomic_t readcf;     /* Set when SIGHUP received */
74
75 static void sighup(sig)
76 int sig;
77 {
78         readcf ++;
79 }
80
81 static void sigchld(sig)
82 int sig;
83 {
84         pid_t pid;
85
86         while ((pid = waitpid((pid_t) -1, (int *) 0, WNOHANG)) > 0)
87                 ;
88         /* wrtp - waitpid _doesn't_ return 0 when no children! */
89 #ifdef notdef
90         if (pid < 0 && errno != ECHILD)
91                 syslog(LOG_WARNING, "waitpid: %s", strerror(errno));
92 #endif
93 }
94
95 int
96 main(argc, argv)
97         int argc;
98         char *argv[];
99 {
100         struct portal_args args;
101         struct sockaddr_un un;
102         char *conf;
103         char mountpt[MAXPATHLEN];
104         int mntflags = 0;
105         char tag[32];
106         mode_t um;
107
108         qelem q;
109         int rc;
110         int so;
111         int error = 0;
112
113         /*
114          * Crack command line args
115          */
116         int ch;
117
118         while ((ch = getopt(argc, argv, "o:")) != -1) {
119                 switch (ch) {
120                 case 'o':
121                         getmntopts(optarg, mopts, &mntflags, 0);
122                         break;
123                 default:
124                         error = 1;
125                         break;
126                 }
127         }
128
129         if (optind != (argc - 2))
130                 error = 1;
131
132         if (error)
133                 usage();
134
135         /*
136          * Get config file and mount point
137          */
138         conf = argv[optind];
139
140         /* resolve the mountpoint with realpath(3) */
141         (void)checkpath(argv[optind+1], mountpt);
142
143         /*
144          * Construct the listening socket
145          */
146         un.sun_family = AF_UNIX;
147         if (sizeof(_PATH_TMPPORTAL) >= sizeof(un.sun_path)) {
148                 errx(EX_SOFTWARE, "portal socket name too long");
149         }
150         strcpy(un.sun_path, _PATH_TMPPORTAL);
151         mktemp(un.sun_path);
152         un.sun_len = strlen(un.sun_path);
153
154         so = socket(AF_UNIX, SOCK_STREAM, 0);
155         if (so < 0) {
156                 err(EX_OSERR, "socket");
157         }
158         um = umask(077);
159         (void) unlink(un.sun_path);
160         if (bind(so, (struct sockaddr *) &un, sizeof(un)) < 0)
161                 err(1, NULL);
162
163         (void) unlink(un.sun_path);
164         (void) umask(um);
165
166         (void) listen(so, 5);
167
168         args.pa_socket = so;
169         sprintf(tag, "portal:%d", getpid());
170         args.pa_config = tag;
171
172         rc = mount("portalfs", mountpt, mntflags, &args);
173         if (rc < 0)
174                 err(1, NULL);
175
176         /*
177          * Everything is ready to go - now is a good time to fork
178          */
179 #ifndef DEBUG
180         daemon(0, 0);
181 #endif
182
183         /*
184          * Start logging (and change name)
185          */
186         openlog("portald", LOG_CONS|LOG_PID, LOG_DAEMON);
187
188         q.q_forw = q.q_back = &q;
189         readcf = 1;
190
191         signal(SIGCHLD, sigchld);
192         signal(SIGHUP, sighup);
193
194         /*
195          * Just loop waiting for new connections and activating them
196          */
197         for (;;) {
198                 struct sockaddr_un un2;
199                 int len2 = sizeof(un2);
200                 int so2;
201                 pid_t pid;
202                 fd_set fdset;
203                 int rc;
204
205                 /*
206                  * Check whether we need to re-read the configuration file
207                  */
208                 if (readcf) {
209 #ifdef DEBUG
210                         printf ("re-reading configuration file\n");
211 #endif
212                         readcf = 0;
213                         conf_read(&q, conf);
214                         continue;
215                 }
216
217                 /*
218                  * Accept a new connection
219                  * Will get EINTR if a signal has arrived, so just
220                  * ignore that error code
221                  */
222                 FD_ZERO(&fdset);
223                 FD_SET(so, &fdset);
224                 rc = select(so+1, &fdset, (fd_set *) 0, (fd_set *) 0, (struct timeval *) 0);
225                 if (rc < 0) {
226                         if (errno == EINTR)
227                                 continue;
228                         syslog(LOG_ERR, "select: %s", strerror(errno));
229                         exit(EX_OSERR);
230                 }
231                 if (rc == 0)
232                         break;
233                 so2 = accept(so, (struct sockaddr *) &un2, &len2);
234                 if (so2 < 0) {
235                         /*
236                          * The unmount function does a shutdown on the socket
237                          * which will generated ECONNABORTED on the accept.
238                          */
239                         if (errno == ECONNABORTED)
240                                 break;
241                         if (errno != EINTR) {
242                                 syslog(LOG_ERR, "accept: %s", strerror(errno));
243                                 exit(EX_OSERR);
244                         }
245                         continue;
246                 }
247
248                 /*
249                  * Now fork a new child to deal with the connection
250                  */
251         eagain:;
252                 switch (pid = fork()) {
253                 case -1:
254                         if (errno == EAGAIN) {
255                                 sleep(1);
256                                 goto eagain;
257                         }
258                         syslog(LOG_ERR, "fork: %s", strerror(errno));
259                         break;
260                 case 0:
261                         (void) close(so);
262                         activate(&q, so2);
263                         exit(0);
264                 default:
265                         (void) close(so2);
266                         break;
267                 }
268         }
269         syslog(LOG_INFO, "%s unmounted", mountpt);
270         exit(0);
271 }
272
273 static void
274 usage()
275 {
276         (void)fprintf(stderr,
277                 "usage: mount_portalfs [-o options] config mount-point\n");
278         exit(EX_USAGE);
279 }