2014-08-03 23:10:41 +02:00
|
|
|
/* $NetBSD: output.c,v 1.33 2010/08/30 06:27:14 christos Exp $ */
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
/*-
|
2006-05-23 14:59:34 +02:00
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
2005-04-21 16:53:53 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2014-08-03 23:10:41 +02:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
2005-04-21 16:53:53 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
#include <sys/cdefs.h>
|
2005-04-21 16:53:53 +02:00
|
|
|
#ifndef lint
|
2012-12-11 18:42:21 +01:00
|
|
|
#if 0
|
2014-08-03 23:10:41 +02:00
|
|
|
static char sccsid[] = "@(#)output.c 8.2 (Berkeley) 5/4/95";
|
|
|
|
#else
|
|
|
|
__RCSID("$NetBSD: output.c,v 1.33 2010/08/30 06:27:14 christos Exp $");
|
2012-12-11 18:42:21 +01:00
|
|
|
#endif
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
* Our output routines may be smaller than the stdio routines.
|
|
|
|
*/
|
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
#include <sys/types.h> /* quad_t */
|
|
|
|
#include <sys/param.h> /* BSD4_4 */
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
#include <stdio.h> /* defines BUFSIZ */
|
2014-08-03 23:10:41 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
#include "shell.h"
|
|
|
|
#include "syntax.h"
|
|
|
|
#include "output.h"
|
|
|
|
#include "memalloc.h"
|
|
|
|
#include "error.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define OUTBUFSIZ BUFSIZ
|
|
|
|
#define BLOCK_OUT -2 /* output to a fixed block of memory */
|
|
|
|
#define MEM_OUT -3 /* output to dynamically allocated memory */
|
|
|
|
|
|
|
|
|
|
|
|
struct output output = {NULL, 0, NULL, OUTBUFSIZ, 1, 0};
|
|
|
|
struct output errout = {NULL, 0, NULL, 100, 2, 0};
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef notdef /* no longer used */
|
|
|
|
/*
|
|
|
|
* Set up an output file to write to memory rather than a file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2014-08-03 23:10:41 +02:00
|
|
|
open_mem(char *block, int length, struct output *file)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
file->nextc = block;
|
|
|
|
file->nleft = --length;
|
|
|
|
file->fd = BLOCK_OUT;
|
|
|
|
file->flags = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2014-08-03 23:10:41 +02:00
|
|
|
out1str(const char *p)
|
2006-05-23 14:59:34 +02:00
|
|
|
{
|
2014-08-03 23:10:41 +02:00
|
|
|
outstr(p, out1);
|
2006-05-23 14:59:34 +02:00
|
|
|
}
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
void
|
2006-05-23 14:59:34 +02:00
|
|
|
out2str(const char *p)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
outstr(p, out2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2014-08-03 23:10:41 +02:00
|
|
|
outstr(const char *p, struct output *file)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
while (*p)
|
|
|
|
outc(*p++, file);
|
2006-05-23 14:59:34 +02:00
|
|
|
if (file == out2)
|
|
|
|
flushout(file);
|
|
|
|
}
|
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
|
2006-05-23 14:59:34 +02:00
|
|
|
void
|
2014-08-03 23:10:41 +02:00
|
|
|
out2shstr(const char *p)
|
2006-05-23 14:59:34 +02:00
|
|
|
{
|
2014-08-03 23:10:41 +02:00
|
|
|
outshstr(p, out2);
|
|
|
|
}
|
2006-05-23 14:59:34 +02:00
|
|
|
|
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
void
|
|
|
|
outshstr(const char *p, struct output *file)
|
|
|
|
{
|
|
|
|
static const char norm_chars [] \
|
|
|
|
= "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/-=";
|
|
|
|
int need_q = p[0] == 0 || p[strspn(p, norm_chars)] != 0;
|
|
|
|
char c;
|
|
|
|
|
|
|
|
if (need_q)
|
|
|
|
outc('\'', file);
|
|
|
|
|
|
|
|
while (c = *p++, c != 0){
|
|
|
|
if (c != '\''){
|
|
|
|
outc(c, file);
|
|
|
|
}else{
|
|
|
|
outc('\'', file);
|
|
|
|
outc('\\', file);
|
|
|
|
outc(c, file);
|
|
|
|
outc('\'', file);
|
2006-05-23 14:59:34 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-03 23:10:41 +02:00
|
|
|
|
|
|
|
if (need_q)
|
|
|
|
outc('\'', file);
|
|
|
|
|
|
|
|
if (file == out2)
|
|
|
|
flushout(file);
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char out_junk[16];
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2014-08-03 23:10:41 +02:00
|
|
|
emptyoutbuf(struct output *dest)
|
|
|
|
{
|
2005-04-21 16:53:53 +02: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
|
2014-08-03 23:10:41 +02:00
|
|
|
flushall(void)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
flushout(&output);
|
|
|
|
flushout(&errout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2014-08-03 23:10:41 +02:00
|
|
|
flushout(struct output *dest)
|
|
|
|
{
|
2005-04-21 16:53:53 +02: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
|
2014-08-03 23:10:41 +02:00
|
|
|
freestdout(void)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
INTOFF;
|
|
|
|
if (output.buf) {
|
|
|
|
ckfree(output.buf);
|
|
|
|
output.buf = NULL;
|
|
|
|
output.nleft = 0;
|
|
|
|
}
|
|
|
|
INTON;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2006-05-23 14:59:34 +02:00
|
|
|
outfmt(struct output *file, const char *fmt, ...)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
doformat(file, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2006-05-23 14:59:34 +02:00
|
|
|
out1fmt(const char *fmt, ...)
|
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
doformat(out1, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
#ifdef DEBUG
|
2006-05-23 14:59:34 +02:00
|
|
|
void
|
2014-08-03 23:10:41 +02:00
|
|
|
debugprintf(const char *fmt, ...)
|
2006-05-23 14:59:34 +02:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
doformat(out2, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
flushout(out2);
|
|
|
|
}
|
2014-08-03 23:10:41 +02:00
|
|
|
#endif
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
void
|
2014-08-03 23:10:41 +02:00
|
|
|
fmtstr(char *outbuf, size_t length, const char *fmt, ...)
|
2006-05-23 14:59:34 +02:00
|
|
|
{
|
2005-04-21 16:53:53 +02:00
|
|
|
va_list ap;
|
|
|
|
struct output strout;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
strout.nextc = outbuf;
|
|
|
|
strout.nleft = length;
|
|
|
|
strout.fd = BLOCK_OUT;
|
|
|
|
strout.flags = 0;
|
|
|
|
doformat(&strout, fmt, ap);
|
|
|
|
outc('\0', &strout);
|
|
|
|
if (strout.flags & OUTPUT_ERR)
|
|
|
|
outbuf[length - 1] = '\0';
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Formatted output. This routine handles a subset of the printf formats:
|
2014-08-03 23:10:41 +02:00
|
|
|
* - Formats supported: d, u, o, p, X, s, and c.
|
2005-04-21 16:53:53 +02:00
|
|
|
* - The x format is also accepted but is treated like X.
|
2014-08-03 23:10:41 +02:00
|
|
|
* - The l, ll and q modifiers are accepted.
|
2005-04-21 16:53:53 +02:00
|
|
|
* - The - and # flags are accepted; # only works with the o format.
|
|
|
|
* - Width and precision may be specified with any format except c.
|
|
|
|
* - An * may be given for the width or precision.
|
|
|
|
* - The obsolete practice of preceding the width with a zero to get
|
|
|
|
* zero padding is not supported; use the precision field.
|
|
|
|
* - A % may be printed by writing %% in the format string.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define TEMPSIZE 24
|
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
#ifdef BSD4_4
|
|
|
|
#define HAVE_VASPRINTF 1
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
2006-05-23 14:59:34 +02:00
|
|
|
doformat(struct output *dest, const char *f, va_list ap)
|
|
|
|
{
|
2014-08-03 23:10:41 +02:00
|
|
|
#if HAVE_VASPRINTF
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
vasprintf(&s, f, ap);
|
|
|
|
if (s == NULL)
|
|
|
|
error("Could not allocate formatted output buffer");
|
|
|
|
outstr(s, dest);
|
|
|
|
free(s);
|
|
|
|
#else /* !HAVE_VASPRINTF */
|
|
|
|
static const char digit[] = "0123456789ABCDEF";
|
|
|
|
char c;
|
2005-04-21 16:53:53 +02:00
|
|
|
char temp[TEMPSIZE];
|
|
|
|
int flushleft;
|
|
|
|
int sharp;
|
|
|
|
int width;
|
|
|
|
int prec;
|
|
|
|
int islong;
|
2014-08-03 23:10:41 +02:00
|
|
|
int isquad;
|
2005-04-21 16:53:53 +02:00
|
|
|
char *p;
|
|
|
|
int sign;
|
2014-08-03 23:10:41 +02:00
|
|
|
#ifdef BSD4_4
|
|
|
|
quad_t l;
|
|
|
|
u_quad_t num;
|
|
|
|
#else
|
2005-04-21 16:53:53 +02:00
|
|
|
long l;
|
2014-08-03 23:10:41 +02:00
|
|
|
u_long num;
|
|
|
|
#endif
|
2005-04-21 16:53:53 +02:00
|
|
|
unsigned base;
|
|
|
|
int len;
|
|
|
|
int size;
|
|
|
|
int pad;
|
|
|
|
|
|
|
|
while ((c = *f++) != '\0') {
|
|
|
|
if (c != '%') {
|
|
|
|
outc(c, dest);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
flushleft = 0;
|
|
|
|
sharp = 0;
|
|
|
|
width = 0;
|
|
|
|
prec = -1;
|
|
|
|
islong = 0;
|
2014-08-03 23:10:41 +02:00
|
|
|
isquad = 0;
|
2005-04-21 16:53:53 +02:00
|
|
|
for (;;) {
|
|
|
|
if (*f == '-')
|
|
|
|
flushleft++;
|
|
|
|
else if (*f == '#')
|
|
|
|
sharp++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
f++;
|
|
|
|
}
|
|
|
|
if (*f == '*') {
|
|
|
|
width = va_arg(ap, int);
|
|
|
|
f++;
|
|
|
|
} else {
|
|
|
|
while (is_digit(*f)) {
|
|
|
|
width = 10 * width + digit_val(*f++);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*f == '.') {
|
|
|
|
if (*++f == '*') {
|
|
|
|
prec = va_arg(ap, int);
|
|
|
|
f++;
|
|
|
|
} else {
|
|
|
|
prec = 0;
|
|
|
|
while (is_digit(*f)) {
|
|
|
|
prec = 10 * prec + digit_val(*f++);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (*f == 'l') {
|
2014-08-03 23:10:41 +02:00
|
|
|
f++;
|
|
|
|
if (*f == 'l') {
|
|
|
|
isquad++;
|
|
|
|
f++;
|
|
|
|
} else
|
|
|
|
islong++;
|
|
|
|
} else if (*f == 'q') {
|
|
|
|
isquad++;
|
2005-04-21 16:53:53 +02:00
|
|
|
f++;
|
|
|
|
}
|
|
|
|
switch (*f) {
|
|
|
|
case 'd':
|
2014-08-03 23:10:41 +02:00
|
|
|
#ifdef BSD4_4
|
|
|
|
if (isquad)
|
|
|
|
l = va_arg(ap, quad_t);
|
|
|
|
else
|
|
|
|
#endif
|
2005-04-21 16:53:53 +02:00
|
|
|
if (islong)
|
|
|
|
l = va_arg(ap, long);
|
|
|
|
else
|
|
|
|
l = va_arg(ap, int);
|
|
|
|
sign = 0;
|
|
|
|
num = l;
|
|
|
|
if (l < 0) {
|
|
|
|
num = -l;
|
|
|
|
sign = 1;
|
|
|
|
}
|
|
|
|
base = 10;
|
|
|
|
goto number;
|
|
|
|
case 'u':
|
|
|
|
base = 10;
|
|
|
|
goto uns_number;
|
|
|
|
case 'o':
|
|
|
|
base = 8;
|
|
|
|
goto uns_number;
|
2014-08-03 23:10:41 +02:00
|
|
|
case 'p':
|
|
|
|
outc('0', dest);
|
|
|
|
outc('x', dest);
|
|
|
|
/*FALLTHROUGH*/
|
2005-04-21 16:53:53 +02:00
|
|
|
case 'x':
|
|
|
|
/* we don't implement 'x'; treat like 'X' */
|
|
|
|
case 'X':
|
|
|
|
base = 16;
|
|
|
|
uns_number: /* an unsigned number */
|
|
|
|
sign = 0;
|
2014-08-03 23:10:41 +02:00
|
|
|
#ifdef BSD4_4
|
|
|
|
if (isquad)
|
|
|
|
num = va_arg(ap, u_quad_t);
|
|
|
|
else
|
|
|
|
#endif
|
2005-04-21 16:53:53 +02:00
|
|
|
if (islong)
|
|
|
|
num = va_arg(ap, unsigned long);
|
|
|
|
else
|
|
|
|
num = va_arg(ap, unsigned int);
|
|
|
|
number: /* process a number */
|
|
|
|
p = temp + TEMPSIZE - 1;
|
|
|
|
*p = '\0';
|
|
|
|
while (num) {
|
|
|
|
*--p = digit[num % base];
|
|
|
|
num /= base;
|
|
|
|
}
|
|
|
|
len = (temp + TEMPSIZE - 1) - p;
|
|
|
|
if (prec < 0)
|
|
|
|
prec = 1;
|
|
|
|
if (sharp && *f == 'o' && prec <= len)
|
|
|
|
prec = len + 1;
|
|
|
|
pad = 0;
|
|
|
|
if (width) {
|
|
|
|
size = len;
|
|
|
|
if (size < prec)
|
|
|
|
size = prec;
|
|
|
|
size += sign;
|
|
|
|
pad = width - size;
|
|
|
|
if (flushleft == 0) {
|
|
|
|
while (--pad >= 0)
|
|
|
|
outc(' ', dest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sign)
|
|
|
|
outc('-', dest);
|
|
|
|
prec -= len;
|
|
|
|
while (--prec >= 0)
|
|
|
|
outc('0', dest);
|
|
|
|
while (*p)
|
|
|
|
outc(*p++, dest);
|
|
|
|
while (--pad >= 0)
|
|
|
|
outc(' ', dest);
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
p = va_arg(ap, char *);
|
|
|
|
pad = 0;
|
|
|
|
if (width) {
|
|
|
|
len = strlen(p);
|
|
|
|
if (prec >= 0 && len > prec)
|
|
|
|
len = prec;
|
|
|
|
pad = width - len;
|
|
|
|
if (flushleft == 0) {
|
|
|
|
while (--pad >= 0)
|
|
|
|
outc(' ', dest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prec++;
|
|
|
|
while (--prec != 0 && *p)
|
|
|
|
outc(*p++, dest);
|
|
|
|
while (--pad >= 0)
|
|
|
|
outc(' ', dest);
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
c = va_arg(ap, int);
|
|
|
|
outc(c, dest);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
outc(*f, dest);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
f++;
|
|
|
|
}
|
2014-08-03 23:10:41 +02:00
|
|
|
#endif /* !HAVE_VASPRINTF */
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Version of write which resumes after a signal is caught.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2014-08-03 23:10:41 +02:00
|
|
|
xwrite(int fd, char *buf, int nbytes)
|
|
|
|
{
|
2005-04-21 16:53:53 +02: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
/*
|
2014-08-03 23:10:41 +02:00
|
|
|
* Version of ioctl that retries after a signal is caught.
|
|
|
|
* XXX unused function
|
2005-04-21 16:53:53 +02:00
|
|
|
*/
|
2014-08-03 23:10:41 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
xioctl(int fd, unsigned long request, char *arg)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
while ((i = ioctl(fd, request, arg)) == -1 && errno == EINTR);
|
|
|
|
return i;
|
|
|
|
}
|