Home | History | Annotate | Line # | Download | only in sh
output.c revision 1.37
      1  1.37       kre /*	$NetBSD: output.c,v 1.37 2017/11/16 19:41:02 kre Exp $	*/
      2  1.13       cgd 
      3   1.1       cgd /*-
      4   1.7       jtc  * Copyright (c) 1991, 1993
      5   1.7       jtc  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This code is derived from software contributed to Berkeley by
      8   1.1       cgd  * Kenneth Almquist.
      9   1.1       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18  1.28       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1       cgd  *    may be used to endorse or promote products derived from this software
     20   1.1       cgd  *    without specific prior written permission.
     21   1.1       cgd  *
     22   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1       cgd  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35  1.19  christos #include <sys/cdefs.h>
     36   1.1       cgd #ifndef lint
     37  1.13       cgd #if 0
     38  1.14  christos static char sccsid[] = "@(#)output.c	8.2 (Berkeley) 5/4/95";
     39  1.13       cgd #else
     40  1.37       kre __RCSID("$NetBSD: output.c,v 1.37 2017/11/16 19:41:02 kre Exp $");
     41  1.13       cgd #endif
     42   1.1       cgd #endif /* not lint */
     43   1.1       cgd 
     44   1.1       cgd /*
     45   1.1       cgd  * Shell output routines.  We use our own output routines because:
     46   1.1       cgd  *	When a builtin command is interrupted we have to discard
     47   1.1       cgd  *		any pending output.
     48   1.1       cgd  *	When a builtin command appears in back quotes, we want to
     49   1.1       cgd  *		save the output of the command in a region obtained
     50   1.1       cgd  *		via malloc, rather than doing a fork and reading the
     51   1.1       cgd  *		output of the command via a pipe.
     52   1.1       cgd  *	Our output routines may be smaller than the stdio routines.
     53   1.1       cgd  */
     54   1.1       cgd 
     55  1.20  christos #include <sys/types.h>		/* quad_t */
     56  1.20  christos #include <sys/param.h>		/* BSD4_4 */
     57  1.11       cgd #include <sys/ioctl.h>
     58  1.11       cgd 
     59   1.1       cgd #include <stdio.h>	/* defines BUFSIZ */
     60  1.12       cgd #include <string.h>
     61   1.1       cgd #include <errno.h>
     62   1.9       jtc #include <unistd.h>
     63  1.14  christos #include <stdlib.h>
     64  1.14  christos 
     65  1.14  christos #include "shell.h"
     66  1.14  christos #include "syntax.h"
     67  1.14  christos #include "output.h"
     68  1.14  christos #include "memalloc.h"
     69  1.14  christos #include "error.h"
     70   1.1       cgd 
     71   1.1       cgd 
     72   1.1       cgd #define OUTBUFSIZ BUFSIZ
     73   1.1       cgd #define BLOCK_OUT -2		/* output to a fixed block of memory */
     74   1.1       cgd #define MEM_OUT -3		/* output to dynamically allocated memory */
     75   1.1       cgd 
     76   1.1       cgd 
     77   1.1       cgd struct output output = {NULL, 0, NULL, OUTBUFSIZ, 1, 0};
     78  1.18  christos struct output errout = {NULL, 0, NULL, 100, 2, 0};
     79   1.1       cgd struct output memout = {NULL, 0, NULL, 0, MEM_OUT, 0};
     80   1.1       cgd struct output *out1 = &output;
     81   1.1       cgd struct output *out2 = &errout;
     82   1.1       cgd 
     83   1.1       cgd 
     84   1.1       cgd 
     85   1.1       cgd #ifdef mkinit
     86   1.1       cgd 
     87   1.1       cgd INCLUDE "output.h"
     88   1.1       cgd INCLUDE "memalloc.h"
     89   1.1       cgd 
     90   1.1       cgd RESET {
     91   1.1       cgd 	out1 = &output;
     92   1.1       cgd 	out2 = &errout;
     93   1.1       cgd 	if (memout.buf != NULL) {
     94   1.1       cgd 		ckfree(memout.buf);
     95   1.1       cgd 		memout.buf = NULL;
     96   1.1       cgd 	}
     97   1.1       cgd }
     98   1.1       cgd 
     99   1.1       cgd #endif
    100   1.1       cgd 
    101   1.1       cgd 
    102   1.1       cgd #ifdef notdef	/* no longer used */
    103   1.1       cgd /*
    104   1.1       cgd  * Set up an output file to write to memory rather than a file.
    105   1.1       cgd  */
    106   1.1       cgd 
    107   1.1       cgd void
    108  1.27  christos open_mem(char *block, int length, struct output *file)
    109  1.27  christos {
    110   1.1       cgd 	file->nextc = block;
    111   1.1       cgd 	file->nleft = --length;
    112   1.1       cgd 	file->fd = BLOCK_OUT;
    113   1.1       cgd 	file->flags = 0;
    114   1.1       cgd }
    115   1.1       cgd #endif
    116   1.1       cgd 
    117   1.1       cgd 
    118   1.1       cgd void
    119  1.27  christos out1str(const char *p)
    120  1.27  christos {
    121   1.1       cgd 	outstr(p, out1);
    122   1.1       cgd }
    123   1.1       cgd 
    124   1.1       cgd 
    125   1.1       cgd void
    126  1.27  christos out2str(const char *p)
    127  1.27  christos {
    128   1.1       cgd 	outstr(p, out2);
    129   1.1       cgd }
    130   1.1       cgd 
    131   1.1       cgd 
    132   1.1       cgd void
    133  1.27  christos outstr(const char *p, struct output *file)
    134  1.27  christos {
    135   1.1       cgd 	while (*p)
    136   1.1       cgd 		outc(*p++, file);
    137   1.7       jtc 	if (file == out2)
    138   1.7       jtc 		flushout(file);
    139   1.1       cgd }
    140   1.1       cgd 
    141   1.1       cgd 
    142  1.31  christos void
    143  1.31  christos out2shstr(const char *p)
    144  1.31  christos {
    145  1.31  christos 	outshstr(p, out2);
    146  1.31  christos }
    147  1.31  christos 
    148  1.31  christos 
    149  1.37       kre /*
    150  1.37       kre  * ' is in this list, not because it does not require quoting
    151  1.37       kre  * (which applies to all the others) but because '' quoting cannot
    152  1.37       kre  * be used to quote it.
    153  1.37       kre  */
    154  1.35  christos static const char norm_chars [] = \
    155  1.36       kre     "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/+-=_,.'";
    156  1.35  christos 
    157  1.35  christos static int
    158  1.35  christos inquote(const char *p)
    159  1.35  christos {
    160  1.35  christos 	size_t l = strspn(p, norm_chars);
    161  1.35  christos 	char *s = strchr(p, '\'');
    162  1.35  christos 
    163  1.35  christos 	return s == NULL ? p[l] != '\0' : s - p > (off_t)l;
    164  1.35  christos }
    165  1.35  christos 
    166  1.31  christos void
    167  1.31  christos outshstr(const char *p, struct output *file)
    168  1.31  christos {
    169  1.37       kre 	int need_q;
    170  1.35  christos 	int inq;
    171  1.31  christos 	char c;
    172  1.31  christos 
    173  1.37       kre 	if (strchr(p, '\'') != NULL && p[1] != '\0') {
    174  1.37       kre 		/*
    175  1.37       kre 		 * string contains ' in it, and is not only the '
    176  1.37       kre 		 * see if " quoting will work
    177  1.37       kre 		 */
    178  1.37       kre 		size_t i = strcspn(p, "\\\"$`");
    179  1.37       kre 
    180  1.37       kre 		if (p[i] == '\0') {
    181  1.37       kre 			/*
    182  1.37       kre 			 * string contains no $ ` \ or " chars, perfect...
    183  1.37       kre 			 *
    184  1.37       kre 			 * We know it contains ' so needs quoting, so
    185  1.37       kre 			 * this is easy...
    186  1.37       kre 			 */
    187  1.37       kre 			outc('"', file);
    188  1.37       kre 			outstr(p, file);
    189  1.37       kre 			outc('"', file);
    190  1.37       kre 			return;
    191  1.37       kre 		}
    192  1.37       kre 	}
    193  1.37       kre 
    194  1.37       kre 	need_q = p[0] == 0 || p[strspn(p, norm_chars)] != 0;
    195  1.37       kre 
    196  1.35  christos 	/*
    197  1.35  christos 	 * Don't emit ' unless something needs quoting before closing '
    198  1.35  christos 	 */
    199  1.37       kre 	if (need_q && (p[0] == 0 || inquote(p) != 0)) {
    200  1.37       kre 		outc('\'', file);
    201  1.37       kre 		inq = 1;
    202  1.35  christos 	} else
    203  1.35  christos 		inq = 0;
    204  1.31  christos 
    205  1.35  christos 	while ((c = *p++) != '\0') {
    206  1.35  christos 		if (c != '\'') {
    207  1.31  christos 			outc(c, file);
    208  1.35  christos 			continue;
    209  1.31  christos 		}
    210  1.35  christos 
    211  1.35  christos 		if (inq)
    212  1.35  christos 			outc('\'', file);	/* inq = 0, implicit */
    213  1.35  christos 		outc('\\', file);
    214  1.35  christos 		outc(c, file);
    215  1.35  christos 		if (need_q && *p != '\0') {
    216  1.35  christos 			if ((inq = inquote(p)) != 0)
    217  1.35  christos 				outc('\'', file);
    218  1.35  christos 		} else
    219  1.35  christos 			inq = 0;
    220  1.31  christos 	}
    221  1.31  christos 
    222  1.35  christos 	if (inq)
    223  1.31  christos 		outc('\'', file);
    224  1.31  christos 
    225  1.31  christos 	if (file == out2)
    226  1.31  christos 		flushout(file);
    227  1.31  christos }
    228  1.31  christos 
    229  1.31  christos 
    230   1.1       cgd char out_junk[16];
    231   1.1       cgd 
    232   1.1       cgd 
    233   1.1       cgd void
    234  1.27  christos emptyoutbuf(struct output *dest)
    235  1.27  christos {
    236   1.1       cgd 	int offset;
    237   1.1       cgd 
    238   1.1       cgd 	if (dest->fd == BLOCK_OUT) {
    239   1.1       cgd 		dest->nextc = out_junk;
    240   1.1       cgd 		dest->nleft = sizeof out_junk;
    241   1.1       cgd 		dest->flags |= OUTPUT_ERR;
    242   1.1       cgd 	} else if (dest->buf == NULL) {
    243   1.1       cgd 		INTOFF;
    244   1.1       cgd 		dest->buf = ckmalloc(dest->bufsize);
    245   1.1       cgd 		dest->nextc = dest->buf;
    246   1.1       cgd 		dest->nleft = dest->bufsize;
    247   1.1       cgd 		INTON;
    248   1.1       cgd 	} else if (dest->fd == MEM_OUT) {
    249   1.1       cgd 		offset = dest->bufsize;
    250   1.1       cgd 		INTOFF;
    251   1.1       cgd 		dest->bufsize <<= 1;
    252   1.1       cgd 		dest->buf = ckrealloc(dest->buf, dest->bufsize);
    253   1.1       cgd 		dest->nleft = dest->bufsize - offset;
    254   1.1       cgd 		dest->nextc = dest->buf + offset;
    255   1.1       cgd 		INTON;
    256   1.1       cgd 	} else {
    257   1.1       cgd 		flushout(dest);
    258   1.1       cgd 	}
    259   1.1       cgd 	dest->nleft--;
    260   1.1       cgd }
    261   1.1       cgd 
    262   1.1       cgd 
    263   1.1       cgd void
    264  1.27  christos flushall(void)
    265  1.27  christos {
    266   1.1       cgd 	flushout(&output);
    267   1.1       cgd 	flushout(&errout);
    268   1.1       cgd }
    269   1.1       cgd 
    270   1.1       cgd 
    271   1.1       cgd void
    272  1.27  christos flushout(struct output *dest)
    273  1.27  christos {
    274   1.1       cgd 
    275   1.1       cgd 	if (dest->buf == NULL || dest->nextc == dest->buf || dest->fd < 0)
    276   1.1       cgd 		return;
    277   1.1       cgd 	if (xwrite(dest->fd, dest->buf, dest->nextc - dest->buf) < 0)
    278   1.1       cgd 		dest->flags |= OUTPUT_ERR;
    279   1.1       cgd 	dest->nextc = dest->buf;
    280   1.1       cgd 	dest->nleft = dest->bufsize;
    281   1.1       cgd }
    282   1.1       cgd 
    283   1.1       cgd 
    284   1.1       cgd void
    285  1.27  christos freestdout(void)
    286  1.27  christos {
    287   1.1       cgd 	INTOFF;
    288   1.1       cgd 	if (output.buf) {
    289   1.1       cgd 		ckfree(output.buf);
    290   1.1       cgd 		output.buf = NULL;
    291   1.1       cgd 		output.nleft = 0;
    292   1.1       cgd 	}
    293   1.1       cgd 	INTON;
    294   1.1       cgd }
    295   1.1       cgd 
    296   1.1       cgd 
    297  1.21  christos void
    298  1.21  christos outfmt(struct output *file, const char *fmt, ...)
    299  1.21  christos {
    300   1.1       cgd 	va_list ap;
    301   1.1       cgd 
    302  1.21  christos 	va_start(ap, fmt);
    303   1.1       cgd 	doformat(file, fmt, ap);
    304   1.1       cgd 	va_end(ap);
    305   1.1       cgd }
    306   1.1       cgd 
    307   1.1       cgd 
    308   1.1       cgd void
    309  1.21  christos out1fmt(const char *fmt, ...)
    310  1.21  christos {
    311   1.1       cgd 	va_list ap;
    312   1.1       cgd 
    313  1.21  christos 	va_start(ap, fmt);
    314   1.1       cgd 	doformat(out1, fmt, ap);
    315   1.1       cgd 	va_end(ap);
    316   1.1       cgd }
    317   1.1       cgd 
    318  1.33  christos #ifdef DEBUG
    319   1.7       jtc void
    320  1.33  christos debugprintf(const char *fmt, ...)
    321  1.21  christos {
    322   1.7       jtc 	va_list ap;
    323   1.7       jtc 
    324  1.21  christos 	va_start(ap, fmt);
    325   1.7       jtc 	doformat(out2, fmt, ap);
    326   1.7       jtc 	va_end(ap);
    327   1.7       jtc 	flushout(out2);
    328   1.7       jtc }
    329  1.33  christos #endif
    330   1.1       cgd 
    331   1.1       cgd void
    332  1.21  christos fmtstr(char *outbuf, size_t length, const char *fmt, ...)
    333  1.21  christos {
    334   1.1       cgd 	va_list ap;
    335   1.1       cgd 	struct output strout;
    336  1.26       wiz 
    337  1.21  christos 	va_start(ap, fmt);
    338   1.1       cgd 	strout.nextc = outbuf;
    339   1.1       cgd 	strout.nleft = length;
    340   1.1       cgd 	strout.fd = BLOCK_OUT;
    341   1.1       cgd 	strout.flags = 0;
    342   1.1       cgd 	doformat(&strout, fmt, ap);
    343   1.1       cgd 	outc('\0', &strout);
    344   1.1       cgd 	if (strout.flags & OUTPUT_ERR)
    345   1.1       cgd 		outbuf[length - 1] = '\0';
    346  1.24       wiz 	va_end(ap);
    347   1.1       cgd }
    348   1.1       cgd 
    349   1.1       cgd /*
    350   1.1       cgd  * Formatted output.  This routine handles a subset of the printf formats:
    351  1.21  christos  * - Formats supported: d, u, o, p, X, s, and c.
    352   1.1       cgd  * - The x format is also accepted but is treated like X.
    353  1.22     lukem  * - The l, ll and q modifiers are accepted.
    354   1.1       cgd  * - The - and # flags are accepted; # only works with the o format.
    355   1.1       cgd  * - Width and precision may be specified with any format except c.
    356   1.1       cgd  * - An * may be given for the width or precision.
    357   1.1       cgd  * - The obsolete practice of preceding the width with a zero to get
    358   1.1       cgd  *   zero padding is not supported; use the precision field.
    359   1.1       cgd  * - A % may be printed by writing %% in the format string.
    360   1.1       cgd  */
    361   1.1       cgd 
    362   1.1       cgd #define TEMPSIZE 24
    363   1.1       cgd 
    364  1.23     lukem #ifdef BSD4_4
    365  1.23     lukem #define HAVE_VASPRINTF 1
    366  1.23     lukem #endif
    367  1.23     lukem 
    368   1.1       cgd void
    369  1.27  christos doformat(struct output *dest, const char *f, va_list ap)
    370  1.23     lukem {
    371  1.23     lukem #if	HAVE_VASPRINTF
    372  1.23     lukem 	char *s;
    373  1.23     lukem 
    374  1.23     lukem 	vasprintf(&s, f, ap);
    375  1.29    rumble 	if (s == NULL)
    376  1.29    rumble 		error("Could not allocate formatted output buffer");
    377  1.23     lukem 	outstr(s, dest);
    378  1.23     lukem 	free(s);
    379  1.23     lukem #else	/* !HAVE_VASPRINTF */
    380  1.25   thorpej 	static const char digit[] = "0123456789ABCDEF";
    381  1.17       tls 	char c;
    382   1.1       cgd 	char temp[TEMPSIZE];
    383   1.1       cgd 	int flushleft;
    384   1.1       cgd 	int sharp;
    385   1.1       cgd 	int width;
    386   1.1       cgd 	int prec;
    387   1.1       cgd 	int islong;
    388  1.15       jtc 	int isquad;
    389   1.1       cgd 	char *p;
    390   1.1       cgd 	int sign;
    391  1.18  christos #ifdef BSD4_4
    392  1.15       jtc 	quad_t l;
    393  1.15       jtc 	u_quad_t num;
    394  1.18  christos #else
    395  1.18  christos 	long l;
    396  1.18  christos 	u_long num;
    397  1.18  christos #endif
    398   1.1       cgd 	unsigned base;
    399   1.1       cgd 	int len;
    400   1.1       cgd 	int size;
    401   1.1       cgd 	int pad;
    402   1.1       cgd 
    403   1.1       cgd 	while ((c = *f++) != '\0') {
    404   1.1       cgd 		if (c != '%') {
    405   1.1       cgd 			outc(c, dest);
    406   1.1       cgd 			continue;
    407   1.1       cgd 		}
    408   1.1       cgd 		flushleft = 0;
    409   1.1       cgd 		sharp = 0;
    410   1.1       cgd 		width = 0;
    411   1.1       cgd 		prec = -1;
    412   1.1       cgd 		islong = 0;
    413  1.15       jtc 		isquad = 0;
    414   1.1       cgd 		for (;;) {
    415   1.1       cgd 			if (*f == '-')
    416   1.1       cgd 				flushleft++;
    417   1.1       cgd 			else if (*f == '#')
    418   1.1       cgd 				sharp++;
    419   1.1       cgd 			else
    420   1.1       cgd 				break;
    421   1.1       cgd 			f++;
    422   1.1       cgd 		}
    423   1.1       cgd 		if (*f == '*') {
    424   1.1       cgd 			width = va_arg(ap, int);
    425   1.1       cgd 			f++;
    426   1.1       cgd 		} else {
    427   1.1       cgd 			while (is_digit(*f)) {
    428   1.1       cgd 				width = 10 * width + digit_val(*f++);
    429   1.1       cgd 			}
    430   1.1       cgd 		}
    431   1.1       cgd 		if (*f == '.') {
    432   1.1       cgd 			if (*++f == '*') {
    433   1.1       cgd 				prec = va_arg(ap, int);
    434   1.1       cgd 				f++;
    435   1.1       cgd 			} else {
    436   1.1       cgd 				prec = 0;
    437   1.1       cgd 				while (is_digit(*f)) {
    438   1.1       cgd 					prec = 10 * prec + digit_val(*f++);
    439   1.1       cgd 				}
    440   1.1       cgd 			}
    441   1.1       cgd 		}
    442   1.1       cgd 		if (*f == 'l') {
    443   1.1       cgd 			f++;
    444  1.22     lukem 			if (*f == 'l') {
    445  1.22     lukem 				isquad++;
    446  1.22     lukem 				f++;
    447  1.22     lukem 			} else
    448  1.22     lukem 				islong++;
    449  1.15       jtc 		} else if (*f == 'q') {
    450  1.15       jtc 			isquad++;
    451  1.15       jtc 			f++;
    452   1.1       cgd 		}
    453   1.1       cgd 		switch (*f) {
    454   1.1       cgd 		case 'd':
    455  1.18  christos #ifdef BSD4_4
    456  1.15       jtc 			if (isquad)
    457  1.15       jtc 				l = va_arg(ap, quad_t);
    458  1.18  christos 			else
    459  1.18  christos #endif
    460  1.18  christos 			if (islong)
    461   1.1       cgd 				l = va_arg(ap, long);
    462   1.1       cgd 			else
    463   1.1       cgd 				l = va_arg(ap, int);
    464   1.1       cgd 			sign = 0;
    465   1.1       cgd 			num = l;
    466   1.1       cgd 			if (l < 0) {
    467   1.1       cgd 				num = -l;
    468   1.1       cgd 				sign = 1;
    469   1.1       cgd 			}
    470   1.1       cgd 			base = 10;
    471   1.1       cgd 			goto number;
    472   1.1       cgd 		case 'u':
    473   1.1       cgd 			base = 10;
    474   1.1       cgd 			goto uns_number;
    475   1.1       cgd 		case 'o':
    476   1.1       cgd 			base = 8;
    477   1.1       cgd 			goto uns_number;
    478  1.21  christos 		case 'p':
    479  1.21  christos 			outc('0', dest);
    480  1.21  christos 			outc('x', dest);
    481  1.21  christos 			/*FALLTHROUGH*/
    482   1.1       cgd 		case 'x':
    483   1.1       cgd 			/* we don't implement 'x'; treat like 'X' */
    484   1.1       cgd 		case 'X':
    485   1.1       cgd 			base = 16;
    486   1.1       cgd uns_number:	  /* an unsigned number */
    487   1.1       cgd 			sign = 0;
    488  1.18  christos #ifdef BSD4_4
    489  1.15       jtc 			if (isquad)
    490  1.15       jtc 				num = va_arg(ap, u_quad_t);
    491  1.18  christos 			else
    492  1.18  christos #endif
    493  1.18  christos 			if (islong)
    494   1.1       cgd 				num = va_arg(ap, unsigned long);
    495   1.1       cgd 			else
    496   1.1       cgd 				num = va_arg(ap, unsigned int);
    497   1.1       cgd number:		  /* process a number */
    498   1.1       cgd 			p = temp + TEMPSIZE - 1;
    499   1.1       cgd 			*p = '\0';
    500   1.1       cgd 			while (num) {
    501   1.1       cgd 				*--p = digit[num % base];
    502   1.1       cgd 				num /= base;
    503   1.1       cgd 			}
    504   1.1       cgd 			len = (temp + TEMPSIZE - 1) - p;
    505   1.1       cgd 			if (prec < 0)
    506   1.1       cgd 				prec = 1;
    507   1.1       cgd 			if (sharp && *f == 'o' && prec <= len)
    508   1.1       cgd 				prec = len + 1;
    509   1.1       cgd 			pad = 0;
    510   1.1       cgd 			if (width) {
    511   1.1       cgd 				size = len;
    512   1.1       cgd 				if (size < prec)
    513   1.1       cgd 					size = prec;
    514   1.1       cgd 				size += sign;
    515   1.1       cgd 				pad = width - size;
    516   1.1       cgd 				if (flushleft == 0) {
    517   1.1       cgd 					while (--pad >= 0)
    518   1.1       cgd 						outc(' ', dest);
    519   1.1       cgd 				}
    520   1.1       cgd 			}
    521   1.1       cgd 			if (sign)
    522   1.1       cgd 				outc('-', dest);
    523   1.1       cgd 			prec -= len;
    524   1.1       cgd 			while (--prec >= 0)
    525   1.1       cgd 				outc('0', dest);
    526   1.1       cgd 			while (*p)
    527   1.1       cgd 				outc(*p++, dest);
    528   1.1       cgd 			while (--pad >= 0)
    529   1.1       cgd 				outc(' ', dest);
    530   1.1       cgd 			break;
    531   1.1       cgd 		case 's':
    532   1.1       cgd 			p = va_arg(ap, char *);
    533   1.1       cgd 			pad = 0;
    534   1.1       cgd 			if (width) {
    535   1.1       cgd 				len = strlen(p);
    536   1.1       cgd 				if (prec >= 0 && len > prec)
    537   1.1       cgd 					len = prec;
    538   1.1       cgd 				pad = width - len;
    539   1.1       cgd 				if (flushleft == 0) {
    540   1.1       cgd 					while (--pad >= 0)
    541   1.1       cgd 						outc(' ', dest);
    542   1.1       cgd 				}
    543   1.1       cgd 			}
    544   1.1       cgd 			prec++;
    545   1.1       cgd 			while (--prec != 0 && *p)
    546   1.1       cgd 				outc(*p++, dest);
    547   1.1       cgd 			while (--pad >= 0)
    548   1.1       cgd 				outc(' ', dest);
    549   1.1       cgd 			break;
    550   1.1       cgd 		case 'c':
    551   1.1       cgd 			c = va_arg(ap, int);
    552   1.1       cgd 			outc(c, dest);
    553   1.1       cgd 			break;
    554   1.1       cgd 		default:
    555   1.1       cgd 			outc(*f, dest);
    556   1.1       cgd 			break;
    557   1.1       cgd 		}
    558   1.1       cgd 		f++;
    559   1.1       cgd 	}
    560  1.23     lukem #endif	/* !HAVE_VASPRINTF */
    561   1.1       cgd }
    562   1.1       cgd 
    563   1.1       cgd 
    564   1.1       cgd 
    565   1.1       cgd /*
    566   1.1       cgd  * Version of write which resumes after a signal is caught.
    567   1.1       cgd  */
    568   1.1       cgd 
    569   1.1       cgd int
    570  1.27  christos xwrite(int fd, char *buf, int nbytes)
    571  1.27  christos {
    572   1.1       cgd 	int ntry;
    573   1.1       cgd 	int i;
    574   1.1       cgd 	int n;
    575   1.1       cgd 
    576   1.1       cgd 	n = nbytes;
    577   1.1       cgd 	ntry = 0;
    578  1.34  christos 	while (n > 0) {
    579   1.1       cgd 		i = write(fd, buf, n);
    580   1.1       cgd 		if (i > 0) {
    581   1.1       cgd 			if ((n -= i) <= 0)
    582   1.1       cgd 				return nbytes;
    583   1.1       cgd 			buf += i;
    584   1.1       cgd 			ntry = 0;
    585   1.1       cgd 		} else if (i == 0) {
    586   1.1       cgd 			if (++ntry > 10)
    587   1.1       cgd 				return nbytes - n;
    588   1.1       cgd 		} else if (errno != EINTR) {
    589   1.1       cgd 			return -1;
    590   1.1       cgd 		}
    591   1.1       cgd 	}
    592  1.34  christos 	return nbytes;
    593   1.1       cgd }
    594   1.1       cgd 
    595   1.1       cgd 
    596   1.1       cgd /*
    597   1.1       cgd  * Version of ioctl that retries after a signal is caught.
    598  1.11       cgd  * XXX unused function
    599   1.1       cgd  */
    600   1.1       cgd 
    601   1.1       cgd int
    602  1.27  christos xioctl(int fd, unsigned long request, char *arg)
    603  1.11       cgd {
    604   1.1       cgd 	int i;
    605   1.1       cgd 
    606   1.1       cgd 	while ((i = ioctl(fd, request, arg)) == -1 && errno == EINTR);
    607   1.1       cgd 	return i;
    608   1.1       cgd }
    609