4 * Userland daemon for idmap.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
9 * Marius Aamodt Eriksen <marius@umich.edu>
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
31 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include <sys/types.h>
40 #include <sys/socket.h>
44 #include "nfs_idmap.h"
66 #endif /* HAVE_CONFIG_H */
74 #define PIPEFS_DIR "/var/lib/nfs/rpc_pipefs/"
78 #define NFSD_DIR "/proc/net/rpc"
81 #ifndef CLIENT_CACHE_TIMEOUT_FILE
82 #define CLIENT_CACHE_TIMEOUT_FILE "/proc/sys/fs/nfs/idmap_cache_timeout"
85 #ifndef NFS4NOBODY_USER
86 #define NFS4NOBODY_USER "nobody"
89 #ifndef NFS4NOBODY_GROUP
90 #define NFS4NOBODY_GROUP "nobody"
94 #define CONF_SAVE(w, f) do { \
101 #define IC_IDNAME_CHAN NFSD_DIR "/nfs4.idtoname/channel"
102 #define IC_IDNAME_FLUSH NFSD_DIR "/nfs4.idtoname/flush"
105 #define IC_NAMEID_CHAN NFSD_DIR "/nfs4.nametoid/channel"
106 #define IC_NAMEID_FLUSH NFSD_DIR "/nfs4.nametoid/flush"
108 struct idmap_client {
112 char ic_path[PATH_MAX];
116 struct event ic_event;
117 TAILQ_ENTRY(idmap_client) ic_next;
119 static struct idmap_client nfsd_ic[2] = {
121 .ic_which = IC_IDNAME,
124 .ic_path = IC_IDNAME_CHAN,
130 .ic_which = IC_NAMEID,
133 .ic_path = IC_NAMEID_CHAN,
140 TAILQ_HEAD(idmap_clientq, idmap_client);
142 static void dirscancb(int, short, void *);
143 static void clntscancb(int, short, void *);
144 static void svrreopen(int, short, void *);
145 static int nfsopen(struct idmap_client *);
146 static void nfscb(int, short, void *);
147 static void nfsdcb(int, short, void *);
148 static int validateascii(char *, u_int32_t);
149 static int addfield(char **, ssize_t *, char *);
150 static int getfield(char **, char *, size_t);
152 static void imconv(struct idmap_client *, struct idmap_msg *);
153 static void idtonameres(struct idmap_msg *);
154 static void nametoidres(struct idmap_msg *);
156 static int nfsdopen(void);
157 static int nfsdopenone(struct idmap_client *);
158 static void nfsdreopen_one(struct idmap_client *);
159 static void nfsdreopen(void);
161 void mydaemon(int, int);
162 void release_parent(void);
164 static int verbose = 0;
165 #define DEFAULT_IDMAP_CACHE_EXPIRY 600 /* seconds */
166 static int cache_entry_expiration = 0;
167 static char pipefsdir[PATH_MAX];
168 static char *nobodyuser, *nobodygroup;
169 static uid_t nobodyuid;
170 static gid_t nobodygid;
172 /* Used by conffile.c in libnfs.a */
176 flush_nfsd_cache(char *path, time_t now)
181 sprintf(stime, "%ld\n", now);
182 fd = open(path, O_RDWR);
185 if (write(fd, stime, strlen(stime)) != (ssize_t)strlen(stime)) {
186 errx(1, "Flushing nfsd cache failed: errno %d (%s)",
187 errno, strerror(errno));
194 flush_nfsd_idmap_cache(void)
196 time_t now = time(NULL);
199 ret = flush_nfsd_cache(IC_IDNAME_FLUSH, now);
202 ret = flush_nfsd_cache(IC_NAMEID_FLUSH, now);
207 main(int argc, char **argv)
209 int fd = 0, opt, fg = 0, nfsdret = -1;
210 struct idmap_clientq icq;
211 struct event rootdirev, clntdirev, svrdirev;
212 struct event initialize;
216 char *xpipefsdir = NULL;
217 int serverstart = 1, clientstart = 1;
221 conf_path = _PATH_IDMAPDCONF;
222 nobodyuser = NFS4NOBODY_USER;
223 nobodygroup = NFS4NOBODY_GROUP;
224 strlcpy(pipefsdir, PIPEFS_DIR, sizeof(pipefsdir));
226 if ((progname = strrchr(argv[0], '/')))
232 #define GETOPTSTR "vfd:p:U:G:c:CS"
233 opterr=0; /* Turn off error messages */
234 while ((opt = getopt(argc, argv, GETOPTSTR)) != -1) {
238 if (strchr(GETOPTSTR, optopt))
239 errx(1, "'-%c' option requires an argument.", optopt);
241 errx(1, "'-%c' is an invalid argument.", optopt);
246 if (stat(conf_path, &sb) == -1 && (errno == ENOENT || errno == EACCES)) {
247 warn("Skipping configuration file \"%s\"", conf_path);
251 verbose = conf_get_num("General", "Verbosity", 0);
252 cache_entry_expiration = conf_get_num("General",
253 "Cache-Expiration", DEFAULT_IDMAP_CACHE_EXPIRY);
254 CONF_SAVE(xpipefsdir, conf_get_str("General", "Pipefs-Directory"));
255 if (xpipefsdir != NULL)
256 strlcpy(pipefsdir, xpipefsdir, sizeof(pipefsdir));
257 CONF_SAVE(nobodyuser, conf_get_str("Mapping", "Nobody-User"));
258 CONF_SAVE(nobodygroup, conf_get_str("Mapping", "Nobody-Group"));
261 while ((opt = getopt(argc, argv, GETOPTSTR)) != -1)
270 strlcpy(pipefsdir, optarg, sizeof(pipefsdir));
275 errx(1, "the -d, -U, and -G options have been removed;"
276 " please use the configuration file instead.");
287 if (!serverstart && !clientstart)
288 errx(1, "it is illegal to specify both -C and -S");
290 strncat(pipefsdir, "/nfs", sizeof(pipefsdir));
292 if ((pw = getpwnam(nobodyuser)) == NULL)
293 errx(1, "Could not find user \"%s\"", nobodyuser);
294 nobodyuid = pw->pw_uid;
296 if ((gr = getgrnam(nobodygroup)) == NULL)
297 errx(1, "Could not find group \"%s\"", nobodygroup);
298 nobodygid = gr->gr_gid;
300 #ifdef HAVE_NFS4_SET_DEBUG
301 nfs4_set_debug(verbose, xlog_warn);
303 if (conf_path == NULL)
304 conf_path = _PATH_IDMAPDCONF;
305 if (nfs4_init_name_mapping(conf_path))
306 errx(1, "Unable to create name to user id mappings.");
314 xlog_warn("Expiration time is %d seconds.",
315 cache_entry_expiration);
317 nfsdret = nfsdopen();
319 ret = flush_nfsd_idmap_cache();
321 xlog_err("main: Failed to flush nfsd idmap cache\n: %s", strerror(errno));
326 struct timeval now = {
331 if (cache_entry_expiration != DEFAULT_IDMAP_CACHE_EXPIRY) {
333 char timeout_buf[12];
334 if ((timeout_fd = open(CLIENT_CACHE_TIMEOUT_FILE,
336 xlog_warn("Unable to open '%s' to set "
337 "client cache expiration time "
339 CLIENT_CACHE_TIMEOUT_FILE,
340 cache_entry_expiration);
342 len = snprintf(timeout_buf, sizeof(timeout_buf),
343 "%d", cache_entry_expiration);
344 if ((write(timeout_fd, timeout_buf, len)) != len)
345 xlog_warn("Error writing '%s' to "
346 "'%s' to set client "
347 "cache expiration time\n",
349 CLIENT_CACHE_TIMEOUT_FILE);
354 if ((fd = open(pipefsdir, O_RDONLY)) == -1)
355 xlog_err("main: open(%s): %s", pipefsdir, strerror(errno));
357 if (fcntl(fd, F_SETSIG, SIGUSR1) == -1)
358 xlog_err("main: fcntl(%s): %s", pipefsdir, strerror(errno));
360 if (fcntl(fd, F_NOTIFY,
361 DN_CREATE | DN_DELETE | DN_MODIFY | DN_MULTISHOT) == -1) {
362 xlog_err("main: fcntl(%s): %s", pipefsdir, strerror(errno));
364 xlog_err("main: Possibly no Dnotify support in kernel.");
368 /* These events are persistent */
369 signal_set(&rootdirev, SIGUSR1, dirscancb, &icq);
370 signal_add(&rootdirev, NULL);
371 signal_set(&clntdirev, SIGUSR2, clntscancb, &icq);
372 signal_add(&clntdirev, NULL);
373 signal_set(&svrdirev, SIGHUP, svrreopen, NULL);
374 signal_add(&svrdirev, NULL);
376 /* Fetch current state */
377 /* (Delay till start of event_dispatch to avoid possibly losing
378 * a SIGUSR1 between here and the call to event_dispatch().) */
379 evtimer_set(&initialize, dirscancb, &icq);
380 evtimer_add(&initialize, &now);
383 if (nfsdret != 0 && fd == 0)
384 xlog_err("main: Neither NFS client nor NFSd found");
388 if (event_dispatch() < 0)
389 xlog_err("main: event_dispatch returns errno %d (%s)",
390 errno, strerror(errno));
396 dirscancb(int UNUSED(fd), short UNUSED(which), void *data)
399 struct dirent **ents;
400 struct idmap_client *ic, *nextic;
402 struct idmap_clientq *icq = data;
404 nent = scandir(pipefsdir, &ents, NULL, alphasort);
406 xlog_warn("dirscancb: scandir(%s): %s", pipefsdir, strerror(errno));
410 for (i = 0; i < nent; i++) {
411 if (ents[i]->d_reclen > 4 &&
412 strncmp(ents[i]->d_name, "clnt", 4) == 0) {
413 TAILQ_FOREACH(ic, icq, ic_next)
414 if (strcmp(ents[i]->d_name + 4, ic->ic_clid) == 0)
419 if ((ic = calloc(1, sizeof(*ic))) == NULL)
421 strlcpy(ic->ic_clid, ents[i]->d_name + 4,
422 sizeof(ic->ic_clid));
424 snprintf(path, sizeof(path), "%s/%s",
425 pipefsdir, ents[i]->d_name);
427 if ((ic->ic_dirfd = open(path, O_RDONLY, 0)) == -1) {
428 xlog_warn("dirscancb: open(%s): %s", path, strerror(errno));
433 strlcat(path, "/idmap", sizeof(path));
434 strlcpy(ic->ic_path, path, sizeof(ic->ic_path));
437 xlog_warn("New client: %s", ic->ic_clid);
439 if (nfsopen(ic) == -1) {
445 ic->ic_id = "Client";
447 TAILQ_INSERT_TAIL(icq, ic, ic_next);
454 ic = TAILQ_FIRST(icq);
456 nextic=TAILQ_NEXT(ic, ic_next);
457 if (!ic->ic_scanned) {
458 event_del(&ic->ic_event);
461 TAILQ_REMOVE(icq, ic, ic_next);
463 xlog_warn("Stale client: %s", ic->ic_clid);
464 xlog_warn("\t-> closed %s", ic->ic_path);
473 for (i = 0; i < nent; i++)
480 svrreopen(int UNUSED(fd), short UNUSED(which), void *UNUSED(data))
486 clntscancb(int UNUSED(fd), short UNUSED(which), void *data)
488 struct idmap_clientq *icq = data;
489 struct idmap_client *ic;
491 TAILQ_FOREACH(ic, icq, ic_next)
492 if (ic->ic_fd == -1 && nfsopen(ic) == -1) {
494 TAILQ_REMOVE(icq, ic, ic_next);
500 nfsdcb(int UNUSED(fd), short which, void *data)
502 struct idmap_client *ic = data;
504 u_char buf[IDMAP_MAXMSGSZ + 1];
507 char *bp, typebuf[IDMAP_MAXMSGSZ],
508 buf1[IDMAP_MAXMSGSZ], authbuf[IDMAP_MAXMSGSZ], *p;
511 if (which != EV_READ)
514 if ((len = read(ic->ic_fd, buf, sizeof(buf))) <= 0) {
515 xlog_warn("nfsdcb: read(%s) failed: errno %d (%s)",
516 ic->ic_path, len?errno:0,
517 len?strerror(errno):"End of File");
522 /* Get rid of newline and terminate buffer*/
526 memset(&im, 0, sizeof(im));
528 /* Authentication name -- ignored for now*/
529 if (getfield(&bp, authbuf, sizeof(authbuf)) == -1) {
530 xlog_warn("nfsdcb: bad authentication name in upcall\n");
533 if (getfield(&bp, typebuf, sizeof(typebuf)) == -1) {
534 xlog_warn("nfsdcb: bad type in upcall\n");
538 xlog_warn("nfsdcb: authbuf=%s authtype=%s",
541 im.im_type = strcmp(typebuf, "user") == 0 ?
542 IDMAP_TYPE_USER : IDMAP_TYPE_GROUP;
544 switch (ic->ic_which) {
546 im.im_conv = IDMAP_CONV_NAMETOID;
547 if (getfield(&bp, im.im_name, sizeof(im.im_name)) == -1) {
548 xlog_warn("nfsdcb: bad name in upcall\n");
553 im.im_conv = IDMAP_CONV_IDTONAME;
554 if (getfield(&bp, buf1, sizeof(buf1)) == -1) {
555 xlog_warn("nfsdcb: bad id in upcall\n");
558 tmp = strtoul(buf1, (char **)NULL, 10);
559 im.im_id = (u_int32_t)tmp;
560 if ((tmp == ULONG_MAX && errno == ERANGE)
561 || (unsigned long)im.im_id != tmp) {
562 xlog_warn("nfsdcb: id '%s' too big!\n", buf1);
567 xlog_warn("nfsdcb: Unknown which type %d", ic->ic_which);
577 /* Authentication name */
578 addfield(&bp, &bsiz, authbuf);
580 switch (ic->ic_which) {
583 p = im.im_type == IDMAP_TYPE_USER ? "user" : "group";
584 addfield(&bp, &bsiz, p);
586 addfield(&bp, &bsiz, im.im_name);
588 snprintf(buf1, sizeof(buf1), "%lu",
589 time(NULL) + cache_entry_expiration);
590 addfield(&bp, &bsiz, buf1);
591 /* Note that we don't want to write the id if the mapping
592 * failed; instead, by leaving it off, we write a negative
593 * cache entry which will result in an error returned to
594 * the client. We don't want a chown or setacl referring
595 * to an unknown user to result in giving permissions to
597 if (im.im_status == IDMAP_STATUS_SUCCESS) {
599 snprintf(buf1, sizeof(buf1), "%u", im.im_id);
600 addfield(&bp, &bsiz, buf1);
603 //if (bsiz == sizeof(buf)) /* XXX */
610 p = im.im_type == IDMAP_TYPE_USER ? "user" : "group";
611 addfield(&bp, &bsiz, p);
613 snprintf(buf1, sizeof(buf1), "%u", im.im_id);
614 addfield(&bp, &bsiz, buf1);
616 snprintf(buf1, sizeof(buf1), "%lu",
617 time(NULL) + cache_entry_expiration);
618 addfield(&bp, &bsiz, buf1);
619 /* Note we're ignoring the status field in this case; we'll
620 * just map to nobody instead. */
622 addfield(&bp, &bsiz, im.im_name);
628 xlog_warn("nfsdcb: Unknown which type %d", ic->ic_which);
632 bsiz = sizeof(buf) - bsiz;
634 if (atomicio((void*)write, ic->ic_fd, buf, bsiz) != bsiz)
635 xlog_warn("nfsdcb: write(%s) failed: errno %d (%s)",
636 ic->ic_path, errno, strerror(errno));
639 event_add(&ic->ic_event, NULL);
643 imconv(struct idmap_client *ic, struct idmap_msg *im)
645 switch (im->im_conv) {
646 case IDMAP_CONV_IDTONAME:
649 xlog_warn("%s %s: (%s) id \"%d\" -> name \"%s\"",
650 ic->ic_id, ic->ic_clid,
651 im->im_type == IDMAP_TYPE_USER ? "user" : "group",
652 im->im_id, im->im_name);
654 case IDMAP_CONV_NAMETOID:
655 if (validateascii(im->im_name, sizeof(im->im_name)) == -1) {
656 im->im_status |= IDMAP_STATUS_INVALIDMSG;
661 xlog_warn("%s %s: (%s) name \"%s\" -> id \"%d\"",
662 ic->ic_id, ic->ic_clid,
663 im->im_type == IDMAP_TYPE_USER ? "user" : "group",
664 im->im_name, im->im_id);
667 xlog_warn("imconv: Invalid conversion type (%d) in message",
669 im->im_status |= IDMAP_STATUS_INVALIDMSG;
675 nfscb(int UNUSED(fd), short which, void *data)
677 struct idmap_client *ic = data;
680 if (which != EV_READ)
683 if (atomicio(read, ic->ic_fd, &im, sizeof(im)) != sizeof(im)) {
685 xlog_warn("nfscb: read(%s): %s", ic->ic_path, strerror(errno));
693 /* XXX: I don't like ignoring this error in the id->name case,
694 * but we've never returned it, and I need to check that the client
695 * can handle it gracefully before starting to return it now. */
697 if (im.im_status == IDMAP_STATUS_LOOKUPFAIL)
698 im.im_status = IDMAP_STATUS_SUCCESS;
700 if (atomicio((void*)write, ic->ic_fd, &im, sizeof(im)) != sizeof(im))
701 xlog_warn("nfscb: write(%s): %s", ic->ic_path, strerror(errno));
703 event_add(&ic->ic_event, NULL);
707 nfsdreopen_one(struct idmap_client *ic)
712 xlog_warn("ReOpening %s", ic->ic_path);
714 if ((fd = open(ic->ic_path, O_RDWR, 0)) != -1) {
715 if ((ic->ic_event.ev_flags & EVLIST_INIT))
716 event_del(&ic->ic_event);
720 ic->ic_event.ev_fd = ic->ic_fd = fd;
721 event_set(&ic->ic_event, ic->ic_fd, EV_READ, nfsdcb, ic);
722 event_add(&ic->ic_event, NULL);
724 xlog_warn("nfsdreopen: Opening '%s' failed: errno %d (%s)",
725 ic->ic_path, errno, strerror(errno));
732 nfsdreopen_one(&nfsd_ic[IC_NAMEID]);
733 nfsdreopen_one(&nfsd_ic[IC_IDNAME]);
740 return ((nfsdopenone(&nfsd_ic[IC_NAMEID]) == 0 &&
741 nfsdopenone(&nfsd_ic[IC_IDNAME]) == 0) ? 0 : -1);
745 nfsdopenone(struct idmap_client *ic)
747 if ((ic->ic_fd = open(ic->ic_path, O_RDWR, 0)) == -1) {
749 xlog_warn("nfsdopenone: Opening %s failed: "
751 ic->ic_path, errno, strerror(errno));
755 event_set(&ic->ic_event, ic->ic_fd, EV_READ, nfsdcb, ic);
756 event_add(&ic->ic_event, NULL);
759 xlog_warn("Opened %s", ic->ic_path);
765 nfsopen(struct idmap_client *ic)
767 if ((ic->ic_fd = open(ic->ic_path, O_RDWR, 0)) == -1) {
770 fcntl(ic->ic_dirfd, F_SETSIG, SIGUSR2);
771 fcntl(ic->ic_dirfd, F_NOTIFY,
772 DN_CREATE | DN_DELETE | DN_MULTISHOT);
775 xlog_warn("nfsopen: open(%s): %s", ic->ic_path, strerror(errno));
779 event_set(&ic->ic_event, ic->ic_fd, EV_READ, nfscb, ic);
780 event_add(&ic->ic_event, NULL);
781 fcntl(ic->ic_dirfd, F_SETSIG, 0);
782 fcntl(ic->ic_dirfd, F_NOTIFY, 0);
784 xlog_warn("Opened %s", ic->ic_path);
791 idtonameres(struct idmap_msg *im)
793 char domain[NFS4_MAX_DOMAIN_LEN];
796 ret = nfs4_get_default_domain(NULL, domain, sizeof(domain));
797 switch (im->im_type) {
798 case IDMAP_TYPE_USER:
799 ret = nfs4_uid_to_name(im->im_id, domain, im->im_name,
800 sizeof(im->im_name));
802 if (strlen(nobodyuser) < sizeof(im->im_name))
803 strcpy(im->im_name, nobodyuser);
805 strcpy(im->im_name, NFS4NOBODY_USER);
808 case IDMAP_TYPE_GROUP:
809 ret = nfs4_gid_to_name(im->im_id, domain, im->im_name,
810 sizeof(im->im_name));
812 if (strlen(nobodygroup) < sizeof(im->im_name))
813 strcpy(im->im_name, nobodygroup);
815 strcpy(im->im_name, NFS4NOBODY_GROUP);
820 im->im_status = IDMAP_STATUS_LOOKUPFAIL;
822 im->im_status = IDMAP_STATUS_SUCCESS;
826 nametoidres(struct idmap_msg *im)
832 /* XXX: move nobody stuff to library calls
833 * (nfs4_get_nobody_user(domain), nfs4_get_nobody_group(domain)) */
835 im->im_status = IDMAP_STATUS_SUCCESS;
837 switch (im->im_type) {
838 case IDMAP_TYPE_USER:
839 ret = nfs4_name_to_uid(im->im_name, &uid);
840 im->im_id = (u_int32_t) uid;
842 im->im_status = IDMAP_STATUS_LOOKUPFAIL;
843 im->im_id = nobodyuid;
846 case IDMAP_TYPE_GROUP:
847 ret = nfs4_name_to_gid(im->im_name, &gid);
848 im->im_id = (u_int32_t) gid;
850 im->im_status = IDMAP_STATUS_LOOKUPFAIL;
851 im->im_id = nobodygid;
858 validateascii(char *string, u_int32_t len)
862 for (i = 0; i < len; i++) {
863 if (string[i] == '\0')
866 if (string[i] & 0x80)
870 if ((i >= len) || string[i] != '\0')
877 addfield(char **bpp, ssize_t *bsizp, char *fld)
880 ssize_t bsiz = *bsizp;
882 while ((ch = *fld++) != '\0' && bsiz > 0) {
889 bp += snprintf(bp, bsiz, "\\%03o", ch);
900 if (bsiz < 1 || ch != '\0')
913 getfield(char **bpp, char *fld, size_t fldsz)
918 while ((bp = strsep(bpp, " ")) != NULL && bp[0] == '\0')
921 if (bp == NULL || bp[0] == '\0' || bp[0] == '\n')
924 while (*bp != '\0' && fldsz > 1) {
926 if ((n = sscanf(bp, "\\%03o", &val)) != 1)
946 * mydaemon creates a pipe between the partent and child
947 * process. The parent process will wait until the
948 * child dies or writes a '1' on the pipe signaling
949 * that it started successfully.
951 int pipefds[2] = { -1, -1};
954 mydaemon(int nochdir, int noclose)
956 int pid, status, tempfd;
958 if (pipe(pipefds) < 0)
959 err(1, "mydaemon: pipe() failed: errno %d", errno);
961 if ((pid = fork ()) < 0)
962 err(1, "mydaemon: fork() failed: errno %d", errno);
966 * Parent. Wait for status from child.
969 if (read(pipefds[0], &status, 1) != 1)
977 if (chdir ("/") == -1)
978 err(1, "mydaemon: chdir() failed: errno %d", errno);
981 while (pipefds[1] <= 2) {
982 pipefds[1] = dup(pipefds[1]);
984 err(1, "mydaemon: dup() failed: errno %d", errno);
988 tempfd = open("/dev/null", O_RDWR);
990 tempfd = open("/", O_RDONLY);
997 err(1, "mydaemon: can't open /dev/null: errno %d",
1006 release_parent(void)
1010 if (pipefds[1] > 0) {
1011 if (write(pipefds[1], &status, 1) != 1) {
1012 err(1, "Writing to parent pipe failed: errno %d (%s)\n",
1013 errno, strerror(errno));