2010-12-13 19:50:12 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
2018-08-08 15:25:01 +00:00
|
|
|
* Copyright 2018 Staysail Systems, Inc. <info@staysail.tech>
|
2014-05-07 19:30:28 +00:00
|
|
|
* Copyright 2014 Garrett D'Amore <garrett@damore.org>
|
2014-04-21 22:47:18 +00:00
|
|
|
* Copyright 2010 Nexenta Systems, Inc. All rights reserved.
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. 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.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00: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.
|
|
|
|
*/
|
2011-03-01 21:47:06 +00:00
|
|
|
/*
|
|
|
|
* Important: This file is used both as a standalone program /usr/bin/printf
|
|
|
|
* and as a builtin for /bin/sh (#define SHELL).
|
|
|
|
*/
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2010-12-08 22:13:27 +00:00
|
|
|
#ifndef SHELL
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifndef lint
|
1996-12-14 05:32:27 +00:00
|
|
|
static char const copyright[] =
|
1994-05-27 12:33:43 +00:00
|
|
|
"@(#) Copyright (c) 1989, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef lint
|
2000-09-04 06:11:25 +00:00
|
|
|
#if 0
|
1996-12-14 05:32:27 +00:00
|
|
|
static char const sccsid[] = "@(#)printf.c 8.1 (Berkeley) 7/20/93";
|
2000-09-04 06:11:25 +00:00
|
|
|
#endif
|
2000-04-20 09:31:54 +00:00
|
|
|
static const char rcsid[] =
|
|
|
|
"$FreeBSD$";
|
1994-05-27 12:33:43 +00:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2014-05-07 19:30:28 +00:00
|
|
|
#include <ctype.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2005-08-05 08:18:00 +00:00
|
|
|
#include <inttypes.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <limits.h>
|
2010-12-13 19:50:12 +00:00
|
|
|
#include <locale.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1997-08-07 21:47:31 +00:00
|
|
|
#include <unistd.h>
|
2011-05-28 11:37:47 +00:00
|
|
|
#include <wchar.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#ifdef SHELL
|
2014-04-17 01:43:15 +00:00
|
|
|
#define main printfcmd
|
1995-12-10 15:40:42 +00:00
|
|
|
#include "bltin/bltin.h"
|
2012-09-15 21:56:30 +00:00
|
|
|
#include "options.h"
|
1994-05-27 12:33:43 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-17 01:43:15 +00:00
|
|
|
#define PF(f, func) do { \
|
2012-01-12 20:30:20 +00:00
|
|
|
if (havewidth) \
|
|
|
|
if (haveprec) \
|
2017-04-29 21:48:11 +00:00
|
|
|
(void)printf(f, fieldwidth, precision, func); \
|
2012-01-12 20:30:20 +00:00
|
|
|
else \
|
2017-04-29 21:48:11 +00:00
|
|
|
(void)printf(f, fieldwidth, func); \
|
2012-01-12 20:30:20 +00:00
|
|
|
else if (haveprec) \
|
2017-04-29 21:48:11 +00:00
|
|
|
(void)printf(f, precision, func); \
|
2012-01-12 20:30:20 +00:00
|
|
|
else \
|
2017-04-29 21:48:11 +00:00
|
|
|
(void)printf(f, func); \
|
2002-04-25 01:10:11 +00:00
|
|
|
} while (0)
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-03-22 01:33:25 +00:00
|
|
|
static int asciicode(void);
|
2010-11-19 12:56:13 +00:00
|
|
|
static char *printf_doformat(char *, int *);
|
2005-04-14 17:02:34 +00:00
|
|
|
static int escape(char *, int, size_t *);
|
2002-03-22 01:33:25 +00:00
|
|
|
static int getchr(void);
|
2005-03-21 08:01:09 +00:00
|
|
|
static int getfloating(long double *, int);
|
2002-03-22 01:33:25 +00:00
|
|
|
static int getint(int *);
|
2005-08-05 08:18:00 +00:00
|
|
|
static int getnum(intmax_t *, uintmax_t *, int);
|
2002-04-25 01:10:11 +00:00
|
|
|
static const char
|
|
|
|
*getstr(void);
|
2010-12-13 19:54:42 +00:00
|
|
|
static char *mknum(char *, char);
|
2002-03-22 01:33:25 +00:00
|
|
|
static void usage(void);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2014-05-07 19:30:28 +00:00
|
|
|
static const char digits[] = "0123456789";
|
|
|
|
|
2014-05-11 17:28:57 +00:00
|
|
|
static char end_fmt[1];
|
|
|
|
|
2014-04-21 22:47:18 +00:00
|
|
|
static int myargc;
|
|
|
|
static char **myargv;
|
1994-05-27 12:33:43 +00:00
|
|
|
static char **gargv;
|
2014-05-07 19:30:28 +00:00
|
|
|
static char **maxargv;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
int
|
2002-09-04 23:29:10 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-14 17:02:34 +00:00
|
|
|
size_t len;
|
2014-05-08 20:20:59 +00:00
|
|
|
int end, rval;
|
2005-04-14 08:40:28 +00:00
|
|
|
char *format, *fmt, *start;
|
2010-12-08 22:13:27 +00:00
|
|
|
#ifndef SHELL
|
2012-09-15 21:56:30 +00:00
|
|
|
int ch;
|
|
|
|
|
2010-12-14 01:28:33 +00:00
|
|
|
(void) setlocale(LC_ALL, "");
|
2010-11-19 12:56:13 +00:00
|
|
|
#endif
|
2012-09-15 21:56:30 +00:00
|
|
|
|
2010-11-19 12:56:13 +00:00
|
|
|
#ifdef SHELL
|
2012-09-15 21:56:30 +00:00
|
|
|
nextopt("");
|
|
|
|
argc -= argptr - argv;
|
|
|
|
argv = argptr;
|
|
|
|
#else
|
2010-12-14 20:35:08 +00:00
|
|
|
while ((ch = getopt(argc, argv, "")) != -1)
|
|
|
|
switch (ch) {
|
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2012-09-15 21:56:30 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
if (argc < 1) {
|
|
|
|
usage();
|
2010-12-14 18:23:15 +00:00
|
|
|
return (1);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2010-11-19 12:56:13 +00:00
|
|
|
#ifdef SHELL
|
|
|
|
INTOFF;
|
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Basic algorithm is to scan the format string for conversion
|
|
|
|
* specifications -- once one is found, find out if the field
|
|
|
|
* width or precision is a '*'; if it is, gather up value. Note,
|
|
|
|
* format strings are reused as necessary to use up the provided
|
|
|
|
* arguments, arguments of zero/null string are provided to use
|
|
|
|
* up the format string.
|
|
|
|
*/
|
2005-04-14 17:02:34 +00:00
|
|
|
fmt = format = *argv;
|
2014-05-08 20:20:59 +00:00
|
|
|
escape(fmt, 1, &len); /* backslash interpretation */
|
2005-04-14 08:40:28 +00:00
|
|
|
rval = end = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
gargv = ++argv;
|
2014-04-21 22:47:18 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
for (;;) {
|
2014-05-07 19:30:28 +00:00
|
|
|
maxargv = gargv;
|
2014-04-21 22:47:18 +00:00
|
|
|
|
|
|
|
myargv = gargv;
|
|
|
|
for (myargc = 0; gargv[myargc]; myargc++)
|
|
|
|
/* nop */;
|
2005-04-14 08:40:28 +00:00
|
|
|
start = fmt;
|
2005-04-14 17:02:34 +00:00
|
|
|
while (fmt < format + len) {
|
2005-04-14 08:40:28 +00:00
|
|
|
if (fmt[0] == '%') {
|
|
|
|
fwrite(start, 1, fmt - start, stdout);
|
|
|
|
if (fmt[1] == '%') {
|
|
|
|
/* %% prints a % */
|
|
|
|
putchar('%');
|
|
|
|
fmt += 2;
|
|
|
|
} else {
|
2010-11-19 12:56:13 +00:00
|
|
|
fmt = printf_doformat(fmt, &rval);
|
2014-05-11 17:28:57 +00:00
|
|
|
if (fmt == NULL || fmt == end_fmt) {
|
2010-11-19 12:56:13 +00:00
|
|
|
#ifdef SHELL
|
|
|
|
INTON;
|
|
|
|
#endif
|
2014-05-11 17:28:57 +00:00
|
|
|
return (fmt == NULL ? 1 : rval);
|
2010-11-19 12:56:13 +00:00
|
|
|
}
|
2005-04-14 08:40:28 +00:00
|
|
|
end = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-14 08:40:28 +00:00
|
|
|
start = fmt;
|
|
|
|
} else
|
2002-06-19 08:18:37 +00:00
|
|
|
fmt++;
|
2014-04-21 22:47:18 +00:00
|
|
|
if (gargv > maxargv)
|
|
|
|
maxargv = gargv;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2014-04-21 22:47:18 +00:00
|
|
|
gargv = maxargv;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
if (end == 1) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("missing format character");
|
2010-11-19 12:56:13 +00:00
|
|
|
#ifdef SHELL
|
|
|
|
INTON;
|
|
|
|
#endif
|
2005-04-14 08:40:28 +00:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
fwrite(start, 1, fmt - start, stdout);
|
2014-05-08 20:20:59 +00:00
|
|
|
if (!*gargv) {
|
2010-11-19 12:56:13 +00:00
|
|
|
#ifdef SHELL
|
|
|
|
INTON;
|
|
|
|
#endif
|
2005-04-14 08:40:28 +00:00
|
|
|
return (rval);
|
2010-11-19 12:56:13 +00:00
|
|
|
}
|
2005-04-14 08:40:28 +00:00
|
|
|
/* Restart at the beginning of the format string. */
|
|
|
|
fmt = format;
|
|
|
|
end = 1;
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char *
|
2014-05-07 19:30:28 +00:00
|
|
|
printf_doformat(char *fmt, int *rval)
|
2005-04-14 08:40:28 +00:00
|
|
|
{
|
|
|
|
static const char skip1[] = "#'-+ 0";
|
|
|
|
int fieldwidth, haveprec, havewidth, mod_ldbl, precision;
|
|
|
|
char convch, nextch;
|
2014-05-10 22:27:01 +00:00
|
|
|
char start[strlen(fmt) + 1];
|
2014-05-07 19:30:28 +00:00
|
|
|
char **fargv;
|
|
|
|
char *dptr;
|
|
|
|
int l;
|
|
|
|
|
|
|
|
dptr = start;
|
|
|
|
*dptr++ = '%';
|
|
|
|
*dptr = 0;
|
|
|
|
|
|
|
|
fmt++;
|
2014-04-21 22:47:18 +00:00
|
|
|
|
|
|
|
/* look for "n$" field index specifier */
|
2014-05-07 19:30:28 +00:00
|
|
|
l = strspn(fmt, digits);
|
|
|
|
if ((l > 0) && (fmt[l] == '$')) {
|
|
|
|
int idx = atoi(fmt);
|
2014-04-21 22:47:18 +00:00
|
|
|
if (idx <= myargc) {
|
|
|
|
gargv = &myargv[idx - 1];
|
|
|
|
} else {
|
|
|
|
gargv = &myargv[myargc];
|
|
|
|
}
|
2014-05-07 19:30:28 +00:00
|
|
|
if (gargv > maxargv)
|
|
|
|
maxargv = gargv;
|
|
|
|
fmt += l + 1;
|
|
|
|
|
2014-05-08 20:20:59 +00:00
|
|
|
/* save format argument */
|
|
|
|
fargv = gargv;
|
2014-04-21 22:47:18 +00:00
|
|
|
} else {
|
2014-05-26 14:57:47 +00:00
|
|
|
fargv = NULL;
|
2014-04-21 22:47:18 +00:00
|
|
|
}
|
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
/* skip to field width */
|
2014-05-26 14:57:47 +00:00
|
|
|
while (*fmt && strchr(skip1, *fmt) != NULL) {
|
2014-05-07 19:30:28 +00:00
|
|
|
*dptr++ = *fmt++;
|
|
|
|
*dptr = 0;
|
|
|
|
}
|
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
if (*fmt == '*') {
|
2014-05-07 19:30:28 +00:00
|
|
|
|
|
|
|
fmt++;
|
|
|
|
l = strspn(fmt, digits);
|
|
|
|
if ((l > 0) && (fmt[l] == '$')) {
|
|
|
|
int idx = atoi(fmt);
|
2014-05-26 14:57:47 +00:00
|
|
|
if (fargv == NULL) {
|
|
|
|
warnx("incomplete use of n$");
|
|
|
|
return (NULL);
|
|
|
|
}
|
2014-05-07 19:30:28 +00:00
|
|
|
if (idx <= myargc) {
|
|
|
|
gargv = &myargv[idx - 1];
|
|
|
|
} else {
|
|
|
|
gargv = &myargv[myargc];
|
|
|
|
}
|
|
|
|
fmt += l + 1;
|
2014-05-26 14:57:47 +00:00
|
|
|
} else if (fargv != NULL) {
|
|
|
|
warnx("incomplete use of n$");
|
|
|
|
return (NULL);
|
2014-05-07 19:30:28 +00:00
|
|
|
}
|
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
if (getint(&fieldwidth))
|
|
|
|
return (NULL);
|
2014-05-07 19:30:28 +00:00
|
|
|
if (gargv > maxargv)
|
|
|
|
maxargv = gargv;
|
2005-04-14 08:40:28 +00:00
|
|
|
havewidth = 1;
|
2014-05-07 19:30:28 +00:00
|
|
|
|
|
|
|
*dptr++ = '*';
|
|
|
|
*dptr = 0;
|
2005-04-14 08:40:28 +00:00
|
|
|
} else {
|
|
|
|
havewidth = 0;
|
|
|
|
|
|
|
|
/* skip to possible '.', get following precision */
|
2014-05-07 19:30:28 +00:00
|
|
|
while (isdigit(*fmt)) {
|
|
|
|
*dptr++ = *fmt++;
|
|
|
|
*dptr = 0;
|
|
|
|
}
|
2005-04-14 08:40:28 +00:00
|
|
|
}
|
2014-05-07 19:30:28 +00:00
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
if (*fmt == '.') {
|
|
|
|
/* precision present? */
|
2014-05-07 19:30:28 +00:00
|
|
|
fmt++;
|
|
|
|
*dptr++ = '.';
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
if (*fmt == '*') {
|
2014-05-07 19:30:28 +00:00
|
|
|
|
|
|
|
fmt++;
|
|
|
|
l = strspn(fmt, digits);
|
|
|
|
if ((l > 0) && (fmt[l] == '$')) {
|
|
|
|
int idx = atoi(fmt);
|
2014-05-26 14:57:47 +00:00
|
|
|
if (fargv == NULL) {
|
|
|
|
warnx("incomplete use of n$");
|
|
|
|
return (NULL);
|
|
|
|
}
|
2014-05-07 19:30:28 +00:00
|
|
|
if (idx <= myargc) {
|
|
|
|
gargv = &myargv[idx - 1];
|
|
|
|
} else {
|
|
|
|
gargv = &myargv[myargc];
|
|
|
|
}
|
|
|
|
fmt += l + 1;
|
2014-05-26 14:57:47 +00:00
|
|
|
} else if (fargv != NULL) {
|
|
|
|
warnx("incomplete use of n$");
|
|
|
|
return (NULL);
|
2014-05-07 19:30:28 +00:00
|
|
|
}
|
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
if (getint(&precision))
|
|
|
|
return (NULL);
|
2014-05-07 19:30:28 +00:00
|
|
|
if (gargv > maxargv)
|
|
|
|
maxargv = gargv;
|
2005-04-14 08:40:28 +00:00
|
|
|
haveprec = 1;
|
2014-05-07 19:30:28 +00:00
|
|
|
*dptr++ = '*';
|
|
|
|
*dptr = 0;
|
1995-05-07 07:00:18 +00:00
|
|
|
} else {
|
2005-04-14 08:40:28 +00:00
|
|
|
haveprec = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
/* skip to conversion char */
|
2014-05-07 19:30:28 +00:00
|
|
|
while (isdigit(*fmt)) {
|
|
|
|
*dptr++ = *fmt++;
|
|
|
|
*dptr = 0;
|
|
|
|
}
|
1995-05-07 07:00:18 +00:00
|
|
|
}
|
2005-04-14 08:40:28 +00:00
|
|
|
} else
|
|
|
|
haveprec = 0;
|
|
|
|
if (!*fmt) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("missing format character");
|
2005-04-14 08:40:28 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
2014-05-07 19:30:28 +00:00
|
|
|
*dptr++ = *fmt;
|
|
|
|
*dptr = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
/*
|
|
|
|
* Look for a length modifier. POSIX doesn't have these, so
|
|
|
|
* we only support them for floating-point conversions, which
|
|
|
|
* are extensions. This is useful because the L modifier can
|
|
|
|
* be used to gain extra range and precision, while omitting
|
|
|
|
* it is more likely to produce consistent results on different
|
|
|
|
* architectures. This is not so important for integers
|
|
|
|
* because overflow is the only bad thing that can happen to
|
|
|
|
* them, but consider the command printf %a 1.1
|
|
|
|
*/
|
|
|
|
if (*fmt == 'L') {
|
|
|
|
mod_ldbl = 1;
|
|
|
|
fmt++;
|
|
|
|
if (!strchr("aAeEfFgG", *fmt)) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("bad modifier L for %%%c", *fmt);
|
2005-04-14 08:40:28 +00:00
|
|
|
return (NULL);
|
2005-03-21 08:01:09 +00:00
|
|
|
}
|
2005-04-14 08:40:28 +00:00
|
|
|
} else {
|
|
|
|
mod_ldbl = 0;
|
|
|
|
}
|
2005-03-21 08:01:09 +00:00
|
|
|
|
2014-05-07 19:30:28 +00:00
|
|
|
/* save the current arg offset, and set to the format arg */
|
|
|
|
if (fargv != NULL) {
|
2014-05-08 20:20:59 +00:00
|
|
|
gargv = fargv;
|
2014-05-07 19:30:28 +00:00
|
|
|
}
|
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
convch = *fmt;
|
|
|
|
nextch = *++fmt;
|
2014-05-07 19:30:28 +00:00
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
*fmt = '\0';
|
|
|
|
switch (convch) {
|
|
|
|
case 'b': {
|
2005-04-14 17:02:34 +00:00
|
|
|
size_t len;
|
2005-04-14 08:40:28 +00:00
|
|
|
char *p;
|
|
|
|
int getout;
|
2002-04-23 02:56:16 +00:00
|
|
|
|
2018-08-08 15:25:01 +00:00
|
|
|
/* Convert "b" to "s" for output. */
|
|
|
|
start[strlen(start) - 1] = 's';
|
|
|
|
if ((p = strdup(getstr())) == NULL) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("%s", strerror(ENOMEM));
|
2005-04-14 08:40:28 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
2005-04-14 17:02:34 +00:00
|
|
|
getout = escape(p, 0, &len);
|
2018-08-08 15:25:01 +00:00
|
|
|
PF(start, p);
|
|
|
|
/* Restore format for next loop. */
|
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
free(p);
|
|
|
|
if (getout)
|
2018-08-11 11:13:34 +00:00
|
|
|
return (end_fmt);
|
2005-04-14 08:40:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'c': {
|
|
|
|
char p;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
p = getchr();
|
2017-04-29 21:48:11 +00:00
|
|
|
if (p != '\0')
|
|
|
|
PF(start, p);
|
2005-04-14 08:40:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 's': {
|
|
|
|
const char *p;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
p = getstr();
|
|
|
|
PF(start, p);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'd': case 'i': case 'o': case 'u': case 'x': case 'X': {
|
|
|
|
char *f;
|
2005-08-05 08:18:00 +00:00
|
|
|
intmax_t val;
|
|
|
|
uintmax_t uval;
|
2005-04-14 08:40:28 +00:00
|
|
|
int signedconv;
|
1995-05-30 06:41:30 +00:00
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
signedconv = (convch == 'd' || convch == 'i');
|
2005-08-05 08:18:00 +00:00
|
|
|
if ((f = mknum(start, convch)) == NULL)
|
2005-04-14 08:40:28 +00:00
|
|
|
return (NULL);
|
2005-08-05 08:18:00 +00:00
|
|
|
if (getnum(&val, &uval, signedconv))
|
2005-04-14 08:40:28 +00:00
|
|
|
*rval = 1;
|
|
|
|
if (signedconv)
|
|
|
|
PF(f, val);
|
|
|
|
else
|
|
|
|
PF(f, uval);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'e': case 'E':
|
|
|
|
case 'f': case 'F':
|
|
|
|
case 'g': case 'G':
|
|
|
|
case 'a': case 'A': {
|
|
|
|
long double p;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-14 08:40:28 +00:00
|
|
|
if (getfloating(&p, mod_ldbl))
|
|
|
|
*rval = 1;
|
|
|
|
if (mod_ldbl)
|
|
|
|
PF(start, p);
|
|
|
|
else
|
|
|
|
PF(start, (double)p);
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-14 08:40:28 +00:00
|
|
|
default:
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("illegal format character %c", convch);
|
2005-04-14 08:40:28 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
*fmt = nextch;
|
2014-05-07 19:30:28 +00:00
|
|
|
/* return the gargv to the next element */
|
2005-04-14 08:40:28 +00:00
|
|
|
return (fmt);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2010-12-13 19:54:42 +00:00
|
|
|
mknum(char *str, char ch)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2000-12-21 22:21:38 +00:00
|
|
|
static char *copy;
|
|
|
|
static size_t copy_size;
|
|
|
|
char *newcopy;
|
2002-04-25 01:10:11 +00:00
|
|
|
size_t len, newlen;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
len = strlen(str) + 2;
|
2000-12-21 22:21:38 +00:00
|
|
|
if (len > copy_size) {
|
|
|
|
newlen = ((len + 1023) >> 10) << 10;
|
2014-05-29 19:43:43 +00:00
|
|
|
if ((newcopy = realloc(copy, newlen)) == NULL) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("%s", strerror(ENOMEM));
|
2000-12-21 22:21:38 +00:00
|
|
|
return (NULL);
|
2002-04-25 01:10:11 +00:00
|
|
|
}
|
2000-12-21 22:21:38 +00:00
|
|
|
copy = newcopy;
|
|
|
|
copy_size = newlen;
|
|
|
|
}
|
2000-07-10 21:32:41 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
memmove(copy, str, len - 3);
|
2005-08-05 08:18:00 +00:00
|
|
|
copy[len - 3] = 'j';
|
1994-05-27 12:33:43 +00:00
|
|
|
copy[len - 2] = ch;
|
|
|
|
copy[len - 1] = '\0';
|
|
|
|
return (copy);
|
|
|
|
}
|
|
|
|
|
2002-04-23 02:56:16 +00:00
|
|
|
static int
|
2005-04-14 17:02:34 +00:00
|
|
|
escape(char *fmt, int percent, size_t *len)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2012-01-12 20:30:20 +00:00
|
|
|
char *save, *store, c;
|
|
|
|
int value;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2012-01-12 20:30:20 +00:00
|
|
|
for (save = store = fmt; ((c = *fmt) != 0); ++fmt, ++store) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (c != '\\') {
|
|
|
|
*store = c;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (*++fmt) {
|
|
|
|
case '\0': /* EOS, user error */
|
|
|
|
*store = '\\';
|
|
|
|
*++store = '\0';
|
2005-04-14 17:02:34 +00:00
|
|
|
*len = store - save;
|
2002-04-23 02:56:16 +00:00
|
|
|
return (0);
|
1994-05-27 12:33:43 +00:00
|
|
|
case '\\': /* backslash */
|
|
|
|
case '\'': /* single quote */
|
|
|
|
*store = *fmt;
|
|
|
|
break;
|
|
|
|
case 'a': /* bell/alert */
|
2005-04-14 15:32:21 +00:00
|
|
|
*store = '\a';
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
case 'b': /* backspace */
|
|
|
|
*store = '\b';
|
|
|
|
break;
|
2002-04-23 02:56:16 +00:00
|
|
|
case 'c':
|
2014-05-08 20:20:59 +00:00
|
|
|
if (!percent) {
|
|
|
|
*store = '\0';
|
|
|
|
*len = store - save;
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
*store = 'c';
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
case 'f': /* form-feed */
|
|
|
|
*store = '\f';
|
|
|
|
break;
|
|
|
|
case 'n': /* newline */
|
|
|
|
*store = '\n';
|
|
|
|
break;
|
|
|
|
case 'r': /* carriage-return */
|
|
|
|
*store = '\r';
|
|
|
|
break;
|
|
|
|
case 't': /* horizontal tab */
|
|
|
|
*store = '\t';
|
|
|
|
break;
|
|
|
|
case 'v': /* vertical tab */
|
2005-04-14 15:32:21 +00:00
|
|
|
*store = '\v';
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
/* octal constant */
|
|
|
|
case '0': case '1': case '2': case '3':
|
|
|
|
case '4': case '5': case '6': case '7':
|
2008-08-02 06:02:02 +00:00
|
|
|
c = (!percent && *fmt == '0') ? 4 : 3;
|
|
|
|
for (value = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
c-- && *fmt >= '0' && *fmt <= '7'; ++fmt) {
|
|
|
|
value <<= 3;
|
|
|
|
value += *fmt - '0';
|
|
|
|
}
|
|
|
|
--fmt;
|
2002-06-19 09:42:20 +00:00
|
|
|
if (percent && value == '%') {
|
2002-06-19 08:16:14 +00:00
|
|
|
*store++ = '%';
|
|
|
|
*store = '%';
|
|
|
|
} else
|
2012-01-12 20:30:20 +00:00
|
|
|
*store = (char)value;
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
*store = *fmt;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*store = '\0';
|
2005-04-14 17:02:34 +00:00
|
|
|
*len = store - save;
|
2002-04-23 02:56:16 +00:00
|
|
|
return (0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2002-09-04 23:29:10 +00:00
|
|
|
getchr(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
if (!*gargv)
|
|
|
|
return ('\0');
|
|
|
|
return ((int)**gargv++);
|
|
|
|
}
|
|
|
|
|
2001-12-03 21:27:45 +00:00
|
|
|
static const char *
|
2002-09-04 23:29:10 +00:00
|
|
|
getstr(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
if (!*gargv)
|
|
|
|
return ("");
|
|
|
|
return (*gargv++);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2002-09-04 23:29:10 +00:00
|
|
|
getint(int *ip)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-08-05 08:18:00 +00:00
|
|
|
intmax_t val;
|
|
|
|
uintmax_t uval;
|
2002-04-25 01:10:11 +00:00
|
|
|
int rval;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-08-05 08:18:00 +00:00
|
|
|
if (getnum(&val, &uval, 1))
|
1994-05-27 12:33:43 +00:00
|
|
|
return (1);
|
2002-04-25 01:10:11 +00:00
|
|
|
rval = 0;
|
|
|
|
if (val < INT_MIN || val > INT_MAX) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("%s: %s", *gargv, strerror(ERANGE));
|
2002-04-25 01:10:11 +00:00
|
|
|
rval = 1;
|
|
|
|
}
|
2000-07-10 21:32:41 +00:00
|
|
|
*ip = (int)val;
|
2002-04-25 01:10:11 +00:00
|
|
|
return (rval);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-08-05 08:18:00 +00:00
|
|
|
getnum(intmax_t *ip, uintmax_t *uip, int signedconv)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
char *ep;
|
2002-04-25 01:10:11 +00:00
|
|
|
int rval;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
if (!*gargv) {
|
2014-05-13 21:24:55 +00:00
|
|
|
*ip = *uip = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2002-04-23 02:56:16 +00:00
|
|
|
if (**gargv == '"' || **gargv == '\'') {
|
2002-04-25 01:10:11 +00:00
|
|
|
if (signedconv)
|
2005-08-05 08:18:00 +00:00
|
|
|
*ip = asciicode();
|
2002-04-25 01:10:11 +00:00
|
|
|
else
|
2005-08-05 08:18:00 +00:00
|
|
|
*uip = asciicode();
|
1994-05-27 12:33:43 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2002-04-25 01:10:11 +00:00
|
|
|
rval = 0;
|
2002-04-23 02:56:16 +00:00
|
|
|
errno = 0;
|
2002-04-25 01:10:11 +00:00
|
|
|
if (signedconv)
|
2005-08-05 08:18:00 +00:00
|
|
|
*ip = strtoimax(*gargv, &ep, 0);
|
2002-04-25 01:10:11 +00:00
|
|
|
else
|
2005-08-05 08:18:00 +00:00
|
|
|
*uip = strtoumax(*gargv, &ep, 0);
|
2002-04-25 01:10:11 +00:00
|
|
|
if (ep == *gargv) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("%s: expected numeric value", *gargv);
|
2002-04-25 01:10:11 +00:00
|
|
|
rval = 1;
|
|
|
|
}
|
|
|
|
else if (*ep != '\0') {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("%s: not completely converted", *gargv);
|
2002-04-25 01:10:11 +00:00
|
|
|
rval = 1;
|
|
|
|
}
|
|
|
|
if (errno == ERANGE) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("%s: %s", *gargv, strerror(ERANGE));
|
2002-04-25 01:10:11 +00:00
|
|
|
rval = 1;
|
|
|
|
}
|
2002-04-23 02:56:16 +00:00
|
|
|
++gargv;
|
2002-04-25 01:10:11 +00:00
|
|
|
return (rval);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2002-04-25 01:10:11 +00:00
|
|
|
static int
|
2005-03-21 08:01:09 +00:00
|
|
|
getfloating(long double *dp, int mod_ldbl)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-04-23 02:56:16 +00:00
|
|
|
char *ep;
|
2002-04-25 01:10:11 +00:00
|
|
|
int rval;
|
2002-04-23 02:56:16 +00:00
|
|
|
|
2005-04-13 19:54:03 +00:00
|
|
|
if (!*gargv) {
|
|
|
|
*dp = 0.0;
|
2002-04-25 01:10:11 +00:00
|
|
|
return (0);
|
2005-04-13 19:54:03 +00:00
|
|
|
}
|
2002-04-23 02:56:16 +00:00
|
|
|
if (**gargv == '"' || **gargv == '\'') {
|
2002-04-25 01:10:11 +00:00
|
|
|
*dp = asciicode();
|
|
|
|
return (0);
|
2002-04-23 02:56:16 +00:00
|
|
|
}
|
2004-03-07 22:22:13 +00:00
|
|
|
rval = 0;
|
2002-04-23 02:56:16 +00:00
|
|
|
errno = 0;
|
2005-03-21 08:01:09 +00:00
|
|
|
if (mod_ldbl)
|
|
|
|
*dp = strtold(*gargv, &ep);
|
|
|
|
else
|
|
|
|
*dp = strtod(*gargv, &ep);
|
2002-04-25 01:10:11 +00:00
|
|
|
if (ep == *gargv) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("%s: expected numeric value", *gargv);
|
2002-04-25 01:10:11 +00:00
|
|
|
rval = 1;
|
|
|
|
} else if (*ep != '\0') {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("%s: not completely converted", *gargv);
|
2002-04-25 01:10:11 +00:00
|
|
|
rval = 1;
|
|
|
|
}
|
|
|
|
if (errno == ERANGE) {
|
2010-12-20 23:06:57 +00:00
|
|
|
warnx("%s: %s", *gargv, strerror(ERANGE));
|
2002-04-25 01:10:11 +00:00
|
|
|
rval = 1;
|
|
|
|
}
|
2002-04-23 02:56:16 +00:00
|
|
|
++gargv;
|
2002-04-25 01:10:11 +00:00
|
|
|
return (rval);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2002-09-04 23:29:10 +00:00
|
|
|
asciicode(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-09-04 23:29:10 +00:00
|
|
|
int ch;
|
2011-05-28 11:37:47 +00:00
|
|
|
wchar_t wch;
|
|
|
|
mbstate_t mbs;
|
|
|
|
|
|
|
|
ch = (unsigned char)**gargv;
|
|
|
|
if (ch == '\'' || ch == '"') {
|
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
switch (mbrtowc(&wch, *gargv + 1, MB_LEN_MAX, &mbs)) {
|
|
|
|
case (size_t)-2:
|
|
|
|
case (size_t)-1:
|
|
|
|
wch = (unsigned char)gargv[0][1];
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
wch = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ch = wch;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
++gargv;
|
|
|
|
return (ch);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-09-04 23:29:10 +00:00
|
|
|
usage(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-05-21 09:55:10 +00:00
|
|
|
(void)fprintf(stderr, "usage: printf format [arguments ...]\n");
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|