NetBSD/usr.bin/mail/popen.c

371 lines
7.6 KiB
C
Raw Normal View History

2002-03-02 17:59:35 +03:00
/* $NetBSD: popen.c,v 1.10 2002/03/02 14:59:37 wiz Exp $ */
1993-03-21 12:45:37 +03:00
/*
1994-06-29 09:09:04 +04:00
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
#if 0
static char sccsid[] = "@(#)popen.c 8.1 (Berkeley) 6/6/93";
#else
2002-03-02 17:59:35 +03:00
__RCSID("$NetBSD: popen.c,v 1.10 2002/03/02 14:59:37 wiz Exp $");
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include "rcv.h"
1994-06-29 09:09:04 +04:00
#include "extern.h"
1993-03-21 12:45:37 +03:00
#define READ 0
#define WRITE 1
struct fp {
FILE *fp;
int pipe;
1994-06-29 09:09:04 +04:00
int pid;
1993-03-21 12:45:37 +03:00
struct fp *link;
};
static struct fp *fp_head;
1994-06-29 09:09:04 +04:00
struct child {
int pid;
char done;
char free;
1998-12-19 19:34:04 +03:00
int status;
1994-06-29 09:09:04 +04:00
struct child *link;
};
static struct child *child;
2002-03-02 17:59:35 +03:00
static struct child *findchild(int);
static void delchild(struct child *);
static int file_pid(FILE *);
1994-06-29 09:09:04 +04:00
1993-03-21 12:45:37 +03:00
FILE *
2002-03-02 17:59:35 +03:00
Fopen(char *file, char *mode)
1993-03-21 12:45:37 +03:00
{
FILE *fp;
1994-06-29 09:09:04 +04:00
if ((fp = fopen(file, mode)) != NULL) {
register_file(fp, 0, 0);
(void) fcntl(fileno(fp), F_SETFD, 1);
}
1993-03-21 12:45:37 +03:00
return fp;
}
FILE *
2002-03-02 17:59:35 +03:00
Fdopen(int fd, char *mode)
1993-03-21 12:45:37 +03:00
{
FILE *fp;
1994-06-29 09:09:04 +04:00
if ((fp = fdopen(fd, mode)) != NULL) {
register_file(fp, 0, 0);
(void) fcntl(fileno(fp), F_SETFD, 1);
}
1993-03-21 12:45:37 +03:00
return fp;
}
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
Fclose(FILE *fp)
1993-03-21 12:45:37 +03:00
{
unregister_file(fp);
return fclose(fp);
}
FILE *
2002-03-02 17:59:35 +03:00
Popen(char *cmd, char *mode)
1993-03-21 12:45:37 +03:00
{
int p[2];
int myside, hisside, fd0, fd1;
1994-06-29 09:09:04 +04:00
int pid;
sigset_t nset;
1993-03-21 12:45:37 +03:00
FILE *fp;
if (pipe(p) < 0)
return NULL;
1994-06-29 09:09:04 +04:00
(void) fcntl(p[READ], F_SETFD, 1);
(void) fcntl(p[WRITE], F_SETFD, 1);
1993-03-21 12:45:37 +03:00
if (*mode == 'r') {
myside = p[READ];
fd0 = -1;
hisside = fd1 = p[WRITE];
} else {
myside = p[WRITE];
hisside = fd0 = p[READ];
fd1 = -1;
}
sigemptyset(&nset);
if ((pid = start_command(cmd, &nset, fd0, fd1, NOSTR, NOSTR, NOSTR)) < 0) {
1993-03-21 12:45:37 +03:00
close(p[READ]);
close(p[WRITE]);
return NULL;
}
(void) close(hisside);
if ((fp = fdopen(myside, mode)) != NULL)
1994-06-29 09:09:04 +04:00
register_file(fp, 1, pid);
1993-03-21 12:45:37 +03:00
return fp;
}
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
Pclose(FILE *ptr)
1993-03-21 12:45:37 +03:00
{
int i;
sigset_t nset, oset;
1993-03-21 12:45:37 +03:00
1994-06-29 09:09:04 +04:00
i = file_pid(ptr);
1993-03-21 12:45:37 +03:00
unregister_file(ptr);
(void) fclose(ptr);
sigemptyset(&nset);
sigaddset(&nset, SIGINT);
sigaddset(&nset, SIGHUP);
sigprocmask(SIG_BLOCK, &nset, &oset);
1994-06-29 09:09:04 +04:00
i = wait_child(i);
sigprocmask(SIG_SETMASK, &oset, NULL);
1993-03-21 12:45:37 +03:00
return i;
}
1994-06-29 09:09:04 +04:00
void
2002-03-02 17:59:35 +03:00
close_all_files(void)
1993-03-21 12:45:37 +03:00
{
while (fp_head)
if (fp_head->pipe)
(void) Pclose(fp_head->fp);
else
(void) Fclose(fp_head->fp);
}
1994-06-29 09:09:04 +04:00
void
2002-03-02 17:59:35 +03:00
register_file(FILE *fp, int pipe, int pid)
1993-03-21 12:45:37 +03:00
{
struct fp *fpp;
if ((fpp = (struct fp *) malloc(sizeof *fpp)) == NULL)
errx(1, "Out of memory");
1993-03-21 12:45:37 +03:00
fpp->fp = fp;
fpp->pipe = pipe;
1994-06-29 09:09:04 +04:00
fpp->pid = pid;
1993-03-21 12:45:37 +03:00
fpp->link = fp_head;
fp_head = fpp;
}
1994-06-29 09:09:04 +04:00
void
2002-03-02 17:59:35 +03:00
unregister_file(FILE *fp)
1993-03-21 12:45:37 +03:00
{
struct fp **pp, *p;
for (pp = &fp_head; (p = *pp) != NULL; pp = &p->link)
1993-03-21 12:45:37 +03:00
if (p->fp == fp) {
*pp = p->link;
free((char *) p);
return;
}
errx(1, "Invalid file pointer");
1994-06-29 09:09:04 +04:00
}
static int
2002-03-02 17:59:35 +03:00
file_pid(FILE *fp)
1994-06-29 09:09:04 +04:00
{
struct fp *p;
for (p = fp_head; p; p = p->link)
if (p->fp == fp)
return (p->pid);
errx(1, "Invalid file pointer");
1994-06-29 09:09:04 +04:00
/*NOTREACHED*/
1993-03-21 12:45:37 +03:00
}
/*
* Run a command without a shell, with optional arguments and splicing
* of stdin and stdout. The command name can be a sequence of words.
* Signals must be handled by the caller.
* "Mask" contains the signals to ignore in the new process.
* SIGINT is enabled unless it's in the mask.
*/
/*VARARGS4*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
run_command(char *cmd, sigset_t *mask, int infd, int outfd, char *a0,
char *a1, char *a2)
1993-03-21 12:45:37 +03:00
{
int pid;
if ((pid = start_command(cmd, mask, infd, outfd, a0, a1, a2)) < 0)
return -1;
return wait_command(pid);
}
/*VARARGS4*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
start_command(char *cmd, sigset_t *mask, int infd, int outfd,
char *a0, char *a1, char *a2)
1993-03-21 12:45:37 +03:00
{
int pid;
if ((pid = vfork()) < 0) {
perror("fork");
return -1;
}
if (pid == 0) {
char *argv[100];
int i = getrawlist(cmd, argv, sizeof argv / sizeof *argv);
if ((argv[i++] = a0) != NOSTR &&
(argv[i++] = a1) != NOSTR &&
(argv[i++] = a2) != NOSTR)
argv[i] = NOSTR;
prepare_child(mask, infd, outfd);
execvp(argv[0], argv);
perror(argv[0]);
_exit(1);
}
return pid;
}
1994-06-29 09:09:04 +04:00
void
2002-03-02 17:59:35 +03:00
prepare_child(sigset_t *nset, int infd, int outfd)
1993-03-21 12:45:37 +03:00
{
int i;
sigset_t eset;
1993-03-21 12:45:37 +03:00
1994-06-29 09:09:04 +04:00
/*
* All file descriptors other than 0, 1, and 2 are supposed to be
* close-on-exec.
*/
1993-03-21 12:45:37 +03:00
if (infd >= 0)
dup2(infd, 0);
if (outfd >= 0)
dup2(outfd, 1);
for (i = 1; i < NSIG; i++)
if (nset != NULL && sigismember(nset, i))
(void) signal(i, SIG_IGN);
if (nset == NULL || !sigismember(nset, SIGINT))
1993-03-21 12:45:37 +03:00
(void) signal(SIGINT, SIG_DFL);
sigemptyset(&eset);
(void) sigprocmask(SIG_SETMASK, &eset, NULL);
1993-03-21 12:45:37 +03:00
}
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
wait_command(int pid)
1993-03-21 12:45:37 +03:00
{
if (wait_child(pid) < 0) {
printf("Fatal error in process.\n");
return -1;
}
return 0;
}
1994-06-29 09:09:04 +04:00
static struct child *
2002-03-02 17:59:35 +03:00
findchild(int pid)
1993-03-21 12:45:37 +03:00
{
struct child **cpp;
1993-03-21 12:45:37 +03:00
for (cpp = &child; *cpp != NULL && (*cpp)->pid != pid;
cpp = &(*cpp)->link)
;
if (*cpp == NULL) {
*cpp = (struct child *) malloc(sizeof (struct child));
(*cpp)->pid = pid;
(*cpp)->done = (*cpp)->free = 0;
(*cpp)->link = NULL;
}
return *cpp;
}
1994-06-29 09:09:04 +04:00
static void
2002-03-02 17:59:35 +03:00
delchild(struct child *cp)
1993-03-21 12:45:37 +03:00
{
struct child **cpp;
1993-03-21 12:45:37 +03:00
for (cpp = &child; *cpp != cp; cpp = &(*cpp)->link)
;
*cpp = cp->link;
free((char *) cp);
}
void
2002-03-02 17:59:35 +03:00
sigchild(int signo)
1993-03-21 12:45:37 +03:00
{
int pid;
1998-12-19 19:34:04 +03:00
int status;
struct child *cp;
1993-03-21 12:45:37 +03:00
1998-12-19 19:34:04 +03:00
while ((pid = wait3(&status, WNOHANG, NULL)) > 0) {
1993-03-21 12:45:37 +03:00
cp = findchild(pid);
if (cp->free)
delchild(cp);
else {
cp->done = 1;
cp->status = status;
}
}
}
1998-12-19 19:34:04 +03:00
int wait_status;
1993-03-21 12:45:37 +03:00
/*
* Wait for a specific child to die.
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
wait_child(int pid)
1993-03-21 12:45:37 +03:00
{
sigset_t nset, oset;
struct child *cp = findchild(pid);
sigemptyset(&nset);
sigaddset(&nset, SIGCHLD);
sigprocmask(SIG_BLOCK, &nset, &oset);
1993-03-21 12:45:37 +03:00
while (!cp->done)
sigsuspend(&oset);
1993-03-21 12:45:37 +03:00
wait_status = cp->status;
delchild(cp);
sigprocmask(SIG_SETMASK, &oset, NULL);
1998-12-19 19:34:04 +03:00
return wait_status ? -1 : 0;
1993-03-21 12:45:37 +03:00
}
/*
* Mark a child as don't care.
*/
1994-06-29 09:09:04 +04:00
void
2002-03-02 17:59:35 +03:00
free_child(int pid)
1993-03-21 12:45:37 +03:00
{
sigset_t nset, oset;
struct child *cp = findchild(pid);
sigemptyset(&nset);
sigaddset(&nset, SIGCHLD);
sigprocmask(SIG_BLOCK, &nset, &oset);
1993-03-21 12:45:37 +03:00
if (cp->done)
delchild(cp);
else
cp->free = 1;
sigprocmask(SIG_SETMASK, &oset, NULL);
1993-03-21 12:45:37 +03:00
}