1994-05-26 06:18:55 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Kenneth Almquist.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-05-18 06:44:24 +00:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)output.c 8.2 (Berkeley) 5/4/95";
|
|
|
|
#endif
|
1994-05-26 06:18:55 +00:00
|
|
|
#endif /* not lint */
|
2002-06-30 05:15:05 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Shell output routines. We use our own output routines because:
|
|
|
|
* When a builtin command is interrupted we have to discard
|
|
|
|
* any pending output.
|
|
|
|
* When a builtin command appears in back quotes, we want to
|
|
|
|
* save the output of the command in a region obtained
|
|
|
|
* via malloc, rather than doing a fork and reading the
|
|
|
|
* output of the command via a pipe.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h> /* defines BUFSIZ */
|
1996-09-01 10:22:36 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <errno.h>
|
1996-09-01 10:22:36 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "shell.h"
|
|
|
|
#include "syntax.h"
|
|
|
|
#include "output.h"
|
|
|
|
#include "memalloc.h"
|
|
|
|
#include "error.h"
|
2002-06-06 03:29:23 +00:00
|
|
|
#include "var.h"
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define OUTBUFSIZ BUFSIZ
|
|
|
|
#define BLOCK_OUT -2 /* output to a fixed block of memory */
|
|
|
|
#define MEM_OUT -3 /* output to dynamically allocated memory */
|
|
|
|
#define OUTPUT_ERR 01 /* error occurred on output */
|
|
|
|
|
2002-10-01 13:22:12 +00:00
|
|
|
static int doformat_wr(void *, const char *, int);
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
struct output output = {NULL, 0, NULL, OUTBUFSIZ, 1, 0};
|
1997-04-28 03:27:12 +00:00
|
|
|
struct output errout = {NULL, 0, NULL, 100, 2, 0};
|
1994-05-26 06:18:55 +00:00
|
|
|
struct output memout = {NULL, 0, NULL, 0, MEM_OUT, 0};
|
|
|
|
struct output *out1 = &output;
|
|
|
|
struct output *out2 = &errout;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef mkinit
|
|
|
|
|
|
|
|
INCLUDE "output.h"
|
|
|
|
INCLUDE "memalloc.h"
|
|
|
|
|
|
|
|
RESET {
|
|
|
|
out1 = &output;
|
|
|
|
out2 = &errout;
|
|
|
|
if (memout.buf != NULL) {
|
|
|
|
ckfree(memout.buf);
|
|
|
|
memout.buf = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
out1str(const char *p)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
outstr(p, out1);
|
|
|
|
}
|
|
|
|
|
2002-06-04 12:59:12 +00:00
|
|
|
void
|
|
|
|
out1qstr(const char *p)
|
|
|
|
{
|
|
|
|
outqstr(p, out1);
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
out2str(const char *p)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
outstr(p, out2);
|
|
|
|
}
|
|
|
|
|
2002-06-04 12:59:12 +00:00
|
|
|
void
|
|
|
|
out2qstr(const char *p)
|
|
|
|
{
|
|
|
|
outqstr(p, out2);
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
outstr(const char *p, struct output *file)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
while (*p)
|
|
|
|
outc(*p++, file);
|
|
|
|
if (file == out2)
|
|
|
|
flushout(file);
|
|
|
|
}
|
|
|
|
|
2002-06-04 12:59:12 +00:00
|
|
|
/* Like outstr(), but quote for re-input into the shell. */
|
|
|
|
void
|
|
|
|
outqstr(const char *p, struct output *file)
|
|
|
|
{
|
|
|
|
char ch;
|
|
|
|
|
2002-06-06 03:29:23 +00:00
|
|
|
if (p[strcspn(p, "|&;<>()$`\\\"'")] == '\0' && (!ifsset() ||
|
|
|
|
p[strcspn(p, ifsval())] == '\0')) {
|
|
|
|
outstr(p, file);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-06-04 12:59:12 +00:00
|
|
|
out1c('\'');
|
|
|
|
while ((ch = *p++) != '\0') {
|
|
|
|
switch (ch) {
|
|
|
|
case '\'':
|
|
|
|
/*
|
|
|
|
* Can't quote single quotes inside single quotes;
|
|
|
|
* close them, write escaped single quote, open again.
|
|
|
|
*/
|
|
|
|
outstr("'\\''", file);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
outc(ch, file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out1c('\'');
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2003-07-05 15:18:44 +00:00
|
|
|
STATIC char out_junk[16];
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
emptyoutbuf(struct output *dest)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
int offset;
|
|
|
|
|
|
|
|
if (dest->fd == BLOCK_OUT) {
|
|
|
|
dest->nextc = out_junk;
|
|
|
|
dest->nleft = sizeof out_junk;
|
|
|
|
dest->flags |= OUTPUT_ERR;
|
|
|
|
} else if (dest->buf == NULL) {
|
|
|
|
INTOFF;
|
|
|
|
dest->buf = ckmalloc(dest->bufsize);
|
|
|
|
dest->nextc = dest->buf;
|
|
|
|
dest->nleft = dest->bufsize;
|
|
|
|
INTON;
|
|
|
|
} else if (dest->fd == MEM_OUT) {
|
|
|
|
offset = dest->bufsize;
|
|
|
|
INTOFF;
|
|
|
|
dest->bufsize <<= 1;
|
|
|
|
dest->buf = ckrealloc(dest->buf, dest->bufsize);
|
|
|
|
dest->nleft = dest->bufsize - offset;
|
|
|
|
dest->nextc = dest->buf + offset;
|
|
|
|
INTON;
|
|
|
|
} else {
|
|
|
|
flushout(dest);
|
|
|
|
}
|
|
|
|
dest->nleft--;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
flushall(void)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
flushout(&output);
|
|
|
|
flushout(&errout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
flushout(struct output *dest)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
if (dest->buf == NULL || dest->nextc == dest->buf || dest->fd < 0)
|
|
|
|
return;
|
|
|
|
if (xwrite(dest->fd, dest->buf, dest->nextc - dest->buf) < 0)
|
|
|
|
dest->flags |= OUTPUT_ERR;
|
|
|
|
dest->nextc = dest->buf;
|
|
|
|
dest->nleft = dest->bufsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
freestdout(void)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
INTOFF;
|
|
|
|
if (output.buf) {
|
|
|
|
ckfree(output.buf);
|
|
|
|
output.buf = NULL;
|
|
|
|
output.nleft = 0;
|
|
|
|
}
|
|
|
|
INTON;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
outfmt(struct output *file, const char *fmt, ...)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
doformat(file, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
out1fmt(const char *fmt, ...)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
doformat(out1, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
dprintf(const char *fmt, ...)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
doformat(out2, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
flushout(out2);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
fmtstr(char *outbuf, int length, const char *fmt, ...)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
va_list ap;
|
2002-10-01 13:41:13 +00:00
|
|
|
struct output strout;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2002-10-01 13:41:13 +00:00
|
|
|
strout.nextc = outbuf;
|
|
|
|
strout.nleft = length;
|
|
|
|
strout.fd = BLOCK_OUT;
|
|
|
|
strout.flags = 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
va_start(ap, fmt);
|
2002-10-01 13:41:13 +00:00
|
|
|
doformat(&strout, fmt, ap);
|
2002-10-01 13:22:12 +00:00
|
|
|
va_end(ap);
|
2002-10-01 13:41:13 +00:00
|
|
|
outc('\0', &strout);
|
|
|
|
if (strout.flags & OUTPUT_ERR)
|
|
|
|
outbuf[length - 1] = '\0';
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
2002-10-01 13:22:12 +00:00
|
|
|
static int
|
|
|
|
doformat_wr(void *cookie, const char *buf, int len)
|
|
|
|
{
|
|
|
|
struct output *o;
|
|
|
|
int origlen;
|
|
|
|
unsigned char c;
|
|
|
|
|
|
|
|
o = (struct output *)cookie;
|
|
|
|
origlen = len;
|
|
|
|
while (len-- != 0) {
|
|
|
|
c = (unsigned char)*buf++;
|
|
|
|
outc(c, o);
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2002-10-01 13:22:12 +00:00
|
|
|
return (origlen);
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
void
|
2002-02-02 06:50:57 +00:00
|
|
|
doformat(struct output *dest, const char *f, va_list ap)
|
|
|
|
{
|
2002-10-01 13:22:12 +00:00
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
if ((fp = fwopen(dest, doformat_wr)) != NULL) {
|
|
|
|
vfprintf(fp, f, ap);
|
|
|
|
fclose(fp);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Version of write which resumes after a signal is caught.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2002-02-02 06:50:57 +00:00
|
|
|
xwrite(int fd, char *buf, int nbytes)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
int ntry;
|
|
|
|
int i;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
n = nbytes;
|
|
|
|
ntry = 0;
|
|
|
|
for (;;) {
|
|
|
|
i = write(fd, buf, n);
|
|
|
|
if (i > 0) {
|
|
|
|
if ((n -= i) <= 0)
|
|
|
|
return nbytes;
|
|
|
|
buf += i;
|
|
|
|
ntry = 0;
|
|
|
|
} else if (i == 0) {
|
|
|
|
if (++ntry > 10)
|
|
|
|
return nbytes - n;
|
|
|
|
} else if (errno != EINTR) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|