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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/*
* Flush: A little program that tricks another program into line buffering
* its output.
*
* By Michael Sandrof
*
* Copyright (c) 1990 Michael Sandrof.
* Copyright (c) 1991, 1992 Troy Rollo.
* Copyright (c) 1992-2021 Matthew R. Green.
* All rights reserved.
*
* 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. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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 "irc.h"
IRCII_RCSID("@(#)$eterna: ircflush.c,v 1.49 2021/02/24 21:47:46 mrg Exp $");
#include <sys/wait.h>
#include <termios.h>
#define BUFFER_SIZE 1024
/* descriptors of the tty and pty */
static int master,
slave;
static pid_t pid;
int main(int, char *[], char *[]);
static void death(int);
static void setup_master_slave(void);
static void
death(int signo)
{
close(0);
close(master);
kill(pid, SIGKILL);
wait(0);
exit(0);
}
/*
* setup_master_slave: this searches for an open tty/pty pair, opening the
* pty as the master device and the tty as the slace device
*/
static void
setup_master_slave(void)
{
char line[24];
char linec;
int linen;
for (linec = 'p'; linec <= 's'; linec++)
{
snprintf(line, sizeof line, "/dev/pty%c0", linec);
if (access(line, 0) != 0)
break;
for (linen = 0; linen < 16; linen++)
{
snprintf(line, sizeof line, "/dev/pty%c%1x", linec, linen);
if ((master = open(line, O_RDWR)) >= 0)
{
snprintf(line, sizeof line, "/dev/tty%c%1x", linec, linen);
if (access(line, R_OK | W_OK) == 0)
{
if ((slave = open(line, O_RDWR)) >= 0)
return;
}
close(master);
}
}
}
fprintf(stderr, "flush: Can't find a pty\n");
exit(0);
}
/*
* What's the deal here? Well, it's like this. First we find an open
* tty/pty pair. Then we fork three processes. The first reads from stdin
* and sends the info to the master device. The next process reads from the
* master device and sends stuff to stdout. The last processes is the rest
* of the command line arguments exec'd. By doing all this, the exec'd
* process is fooled into flushing each line of output as it occurs.
*/
int
main(int argc, char *argv[], char *envp[])
{
char lbuf[BUFFER_SIZE];
size_t cnt;
fd_set rd;
if (argc < 2)
{
fprintf(stderr, "Usage: %s [program] [arguments to program]\n", argv[0]);
exit(1);
}
pid = open("/dev/tty", O_RDWR);
#ifdef HAVE_SETSID
setsid();
#else
ioctl(pid, TIOCNOTTY, 0);
#endif /* HAVE_SETSID */
setup_master_slave();
switch (pid = fork())
{
case -1:
fprintf(stderr, "flush: Unable to fork process!\n");
exit(1);
case 0:
dup2(slave, 0);
dup2(slave, 1);
dup2(slave, 2);
close(master);
(void)setuid(getuid());
(void)setgid(getgid());
execvp(argv[1], &(argv[1]));
fprintf(stderr, "flush: Error exec'ing process!\n");
exit(1);
break;
default:
(void) MY_SIGNAL(SIGCHLD, death, 0);
close(slave);
while (1)
{
FD_ZERO(&rd);
FD_SET(master, &rd);
FD_SET(0, &rd);
switch (select(NFDBITS, &rd, 0, 0, 0))
{
case -1:
case 0:
break;
default:
if (FD_ISSET(0, &rd))
{
if ((cnt = read(0, lbuf, sizeof lbuf)) > 0)
{
if (write(master, lbuf, cnt) != cnt)
death(0);
}
else
death(0);
}
if (FD_ISSET(master, &rd))
{
if ((cnt = read(master, lbuf,
sizeof lbuf)) > 0)
{
if (write(1, lbuf, cnt) != cnt)
death(0);
}
else
death(0);
}
}
}
break;
}
return 0;
}
|