csope/source/mypopen.c

163 lines
4.5 KiB
C
Raw Normal View History

2023-07-27 14:04:50 -04:00
/*===========================================================================
Copyright (c) 1998-2000, The Santa Cruz Operation
2023-07-27 14:04:50 -04:00
All rights reserved.
2023-07-27 14:04:50 -04:00
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
*Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
*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.
*Neither name of The Santa Cruz Operation nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
2023-07-27 14:04:50 -04:00
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
2023-08-05 10:30:21 -04:00
IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
2023-07-27 14:04:50 -04:00
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2023-08-04 15:19:25 -04:00
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
2023-07-27 14:04:50 -04:00
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT falseT LIMITED TO, PROCUREMENT OF
2023-07-27 14:04:50 -04:00
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.
2023-07-27 14:04:50 -04:00
=========================================================================*/
#include <stdio.h>
#include <signal.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
2023-08-13 05:21:52 -04:00
#include "global.h" /* pid_t, shell, and basename() */
2023-07-27 14:04:50 -04:00
2023-08-13 05:21:52 -04:00
#define tst(a, b) (*mode == 'r' ? (b) : (a))
#define RDR 0
#define WTR 1
2023-07-27 14:04:50 -04:00
/* HBB 20010312: make this a bit safer --- don't blindly assume it's 1 */
#ifdef FD_CLOEXEC
# define CLOSE_ON_EXEC FD_CLOEXEC
#else
# define CLOSE_ON_EXEC 1
#endif
#ifdef HAVE_IO_H
2023-08-13 05:21:52 -04:00
# include <io.h> /* for setmode() */
2023-07-27 14:04:50 -04:00
#endif
static pid_t popen_pid[20];
static void (*tstat)(int);
2023-08-13 05:21:52 -04:00
int myopen(char *path, int flag, int mode) {
/* opens a file descriptor and then sets close-on-exec for the file */
int fd;
2023-07-27 14:04:50 -04:00
2023-08-13 05:21:52 -04:00
/* If file is not explicitly in Binary mode, make
* sure we override silly Cygwin behaviour of automatic binary
* mode for files in "binary mounted" paths */
2023-07-27 14:04:50 -04:00
#if O_BINARY != O_TEXT
2023-08-13 05:21:52 -04:00
if(!(flag | O_BINARY)) flag |= O_TEXT;
2023-07-27 14:04:50 -04:00
#endif
2023-08-13 05:21:52 -04:00
if(mode)
fd = open(path, flag, mode);
else
fd = open(path, flag);
if(fd != -1 && (fcntl(fd, F_SETFD, CLOSE_ON_EXEC) != -1))
return (fd);
else {
/* Ensure that if the fcntl fails and fd is valid, then
the file is closed properly. In general this should
not happen. */
if(fd != -1) { close(fd); }
return (-1);
}
2023-07-27 14:04:50 -04:00
}
2023-08-13 05:21:52 -04:00
FILE *myfopen(char *path, char *mode) {
/* opens a file pointer and then sets close-on-exec for the file */
FILE *fp;
2023-07-27 14:04:50 -04:00
2023-08-13 05:21:52 -04:00
fp = fopen(path, mode);
2023-07-27 14:04:50 -04:00
#ifdef SETMODE
2023-08-13 05:21:52 -04:00
if(fp && !strchr(mode, 'b')) { SETMODE(fileno(fp), O_TEXT); }
2023-07-27 14:04:50 -04:00
#endif /* SETMODE */
2023-09-05 13:08:12 -04:00
if(fp && (fcntl(fileno(fp), F_SETFD, CLOSE_ON_EXEC) != -1)) {
2023-08-13 05:21:52 -04:00
return (fp);
2023-09-05 13:08:12 -04:00
}
2023-07-27 14:04:50 -04:00
2023-09-05 13:08:12 -04:00
if(fp) {
fclose(fp);
2023-08-13 05:21:52 -04:00
}
2023-09-05 13:08:12 -04:00
return (NULL);
2023-07-27 14:04:50 -04:00
}
2023-08-13 05:21:52 -04:00
FILE *mypopen(char *cmd, char *mode) {
int p[2];
pid_t *poptr;
int myside, yourside;
pid_t pid;
if(pipe(p) < 0) return (NULL);
myside = tst(p[WTR], p[RDR]);
yourside = tst(p[RDR], p[WTR]);
if((pid = fork()) == 0) {
/* myside and yourside reverse roles in child */
int stdio;
/* close all pipes from other popen's */
for(poptr = popen_pid; poptr < popen_pid + 20; poptr++) {
if(*poptr) (void)close(poptr - popen_pid);
}
stdio = tst(0, 1);
close(myside);
close(stdio);
fcntl(yourside, F_DUPFD, stdio);
close(yourside);
execlp(shell, basename(shell), "-c", cmd, (void *)0);
_exit(1);
2023-09-05 13:08:12 -04:00
} else if(pid > 0) {
2023-08-13 05:21:52 -04:00
tstat = signal(SIGTSTP, SIG_DFL);
2023-09-05 13:08:12 -04:00
}
if(pid == -1) {
return (NULL);
}
2023-08-13 05:21:52 -04:00
popen_pid[myside] = pid;
(void)close(yourside);
return (fdopen(myside, mode));
2023-07-27 14:04:50 -04:00
}
2023-08-13 05:21:52 -04:00
int mypclose(FILE *ptr) {
int f;
pid_t r;
int status = -1;
sighandler_t hstat, istat, qstat;
f = fileno(ptr);
2023-09-05 13:08:12 -04:00
UNUSED(fclose(ptr));
2023-08-13 05:21:52 -04:00
istat = signal(SIGINT, SIG_IGN);
qstat = signal(SIGQUIT, SIG_IGN);
hstat = signal(SIGHUP, SIG_IGN);
while((r = wait(&status)) != popen_pid[f] && r != -1)
; /* nothing */
if(r == -1) status = -1;
2023-09-05 13:08:12 -04:00
UNUSED(signal(SIGINT, istat));
UNUSED(signal(SIGQUIT, qstat));
UNUSED(signal(SIGHUP, hstat));
UNUSED(signal(SIGTSTP, tstat));
2023-08-13 05:21:52 -04:00
/* mark this pipe closed */
popen_pid[f] = 0;
return (status);
2023-07-27 14:04:50 -04:00
}