2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 16:24:54 +00:00
|
|
|
/* printf - format and print data
|
|
|
|
|
2006-01-06 20:28:05 +00:00
|
|
|
Copyright 1999 Dave Cinege
|
|
|
|
Portions copyright (C) 1990-1996 Free Software Foundation, Inc.
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2010-08-16 18:14:46 +00:00
|
|
|
Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2006-01-06 20:28:05 +00:00
|
|
|
*/
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
|
|
/* Usage: printf format [argument...]
|
|
|
|
|
|
|
|
A front end to the printf function that lets it be used from the shell.
|
|
|
|
|
|
|
|
Backslash escapes:
|
|
|
|
|
|
|
|
\" = double quote
|
|
|
|
\\ = backslash
|
|
|
|
\a = alert (bell)
|
|
|
|
\b = backspace
|
|
|
|
\c = produce no further output
|
|
|
|
\f = form feed
|
|
|
|
\n = new line
|
|
|
|
\r = carriage return
|
|
|
|
\t = horizontal tab
|
|
|
|
\v = vertical tab
|
|
|
|
\0ooo = octal number (ooo is 0 to 3 digits)
|
|
|
|
\xhhh = hexadecimal number (hhh is 1 to 3 digits)
|
|
|
|
|
|
|
|
Additional directive:
|
|
|
|
|
|
|
|
%b = print an argument string, interpreting backslash escapes
|
|
|
|
|
2006-10-08 12:49:22 +00:00
|
|
|
The 'format' argument is re-used as many times as necessary
|
1999-10-05 16:24:54 +00:00
|
|
|
to convert all of the given arguments.
|
|
|
|
|
2008-07-17 09:17:51 +00:00
|
|
|
David MacKenzie <djm@gnu.ai.mit.edu>
|
|
|
|
*/
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2012-03-07 10:44:15 +00:00
|
|
|
/* 19990508 Busy Boxed! Dave Cinege */
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2016-11-23 13:46:56 +00:00
|
|
|
//config:config PRINTF
|
|
|
|
//config: bool "printf"
|
|
|
|
//config: default y
|
|
|
|
//config: help
|
|
|
|
//config: printf is used to format and print specified strings.
|
|
|
|
//config: It's similar to `echo' except it has more options.
|
|
|
|
|
|
|
|
//applet:IF_PRINTF(APPLET_NOFORK(printf, printf, BB_DIR_USR_BIN, BB_SUID_DROP, printf))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_PRINTF) += printf.o
|
|
|
|
|
2011-03-31 12:43:25 +00:00
|
|
|
//usage:#define printf_trivial_usage
|
2012-03-07 10:44:15 +00:00
|
|
|
//usage: "FORMAT [ARG]..."
|
2011-03-31 12:43:25 +00:00
|
|
|
//usage:#define printf_full_usage "\n\n"
|
2012-03-07 10:44:15 +00:00
|
|
|
//usage: "Format and print ARG(s) according to FORMAT (a-la C printf)"
|
2011-03-31 12:43:25 +00:00
|
|
|
//usage:
|
|
|
|
//usage:#define printf_example_usage
|
|
|
|
//usage: "$ printf \"Val=%d\\n\" 5\n"
|
|
|
|
//usage: "Val=5\n"
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2008-07-18 11:10:51 +00:00
|
|
|
/* A note on bad input: neither bash 3.2 nor coreutils 6.10 stop on it.
|
|
|
|
* They report it:
|
|
|
|
* bash: printf: XXX: invalid number
|
|
|
|
* printf: XXX: expected a numeric value
|
|
|
|
* bash: printf: 123XXX: invalid number
|
|
|
|
* printf: 123XXX: value not completely converted
|
|
|
|
* but then they use 0 (or partially converted numeric prefix) as a value
|
|
|
|
* and continue. They exit with 1 in this case.
|
|
|
|
* Both accept insane field width/precision (e.g. %9999999999.9999999999d).
|
|
|
|
* Both print error message and assume 0 if %*.*f width/precision is "bad"
|
|
|
|
* (but negative numbers are not "bad").
|
|
|
|
* Both accept negative numbers for %u specifier.
|
|
|
|
*
|
2009-06-18 20:22:04 +00:00
|
|
|
* We try to be compatible.
|
2008-07-18 11:10:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
typedef void FAST_FUNC (*converter)(const char *arg, void *result);
|
2006-09-23 16:01:09 +00:00
|
|
|
|
2008-07-18 11:10:51 +00:00
|
|
|
static int multiconvert(const char *arg, void *result, converter convert)
|
2006-01-06 20:28:05 +00:00
|
|
|
{
|
|
|
|
if (*arg == '"' || *arg == '\'') {
|
2008-07-18 18:41:55 +00:00
|
|
|
arg = utoa((unsigned char)arg[1]);
|
2006-01-06 20:28:05 +00:00
|
|
|
}
|
2008-07-18 11:10:51 +00:00
|
|
|
errno = 0;
|
2006-11-27 14:43:21 +00:00
|
|
|
convert(arg, result);
|
2008-07-18 11:10:51 +00:00
|
|
|
if (errno) {
|
2010-08-29 11:29:02 +00:00
|
|
|
bb_error_msg("invalid number '%s'", arg);
|
2008-07-18 11:10:51 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2006-01-06 20:28:05 +00:00
|
|
|
}
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2009-01-04 02:58:58 +00:00
|
|
|
static void FAST_FUNC conv_strtoull(const char *arg, void *result)
|
2006-11-27 14:43:21 +00:00
|
|
|
{
|
2009-01-04 02:58:58 +00:00
|
|
|
*(unsigned long long*)result = bb_strtoull(arg, NULL, 0);
|
2009-06-05 14:24:29 +00:00
|
|
|
/* both coreutils 6.10 and bash 3.2:
|
|
|
|
* $ printf '%x\n' -2
|
|
|
|
* fffffffffffffffe
|
|
|
|
* Mimic that:
|
|
|
|
*/
|
|
|
|
if (errno) {
|
|
|
|
*(unsigned long long*)result = bb_strtoll(arg, NULL, 0);
|
|
|
|
}
|
2006-11-27 14:43:21 +00:00
|
|
|
}
|
2009-01-04 02:58:58 +00:00
|
|
|
static void FAST_FUNC conv_strtoll(const char *arg, void *result)
|
2006-11-27 14:43:21 +00:00
|
|
|
{
|
2009-01-04 02:58:58 +00:00
|
|
|
*(long long*)result = bb_strtoll(arg, NULL, 0);
|
2006-11-27 14:43:21 +00:00
|
|
|
}
|
2008-07-18 11:10:51 +00:00
|
|
|
static void FAST_FUNC conv_strtod(const char *arg, void *result)
|
2006-11-27 14:43:21 +00:00
|
|
|
{
|
|
|
|
char *end;
|
2008-07-18 11:10:51 +00:00
|
|
|
/* Well, this one allows leading whitespace... so what? */
|
|
|
|
/* What I like much less is that "-" accepted too! :( */
|
2006-11-27 14:43:21 +00:00
|
|
|
*(double*)result = strtod(arg, &end);
|
2008-07-18 11:10:51 +00:00
|
|
|
if (end[0]) {
|
|
|
|
errno = ERANGE;
|
|
|
|
*(double*)result = 0;
|
|
|
|
}
|
2006-11-27 14:43:21 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 11:10:51 +00:00
|
|
|
/* Callers should check errno to detect errors */
|
2009-01-04 02:58:58 +00:00
|
|
|
static unsigned long long my_xstrtoull(const char *arg)
|
2006-01-06 20:28:05 +00:00
|
|
|
{
|
2009-01-04 02:58:58 +00:00
|
|
|
unsigned long long result;
|
|
|
|
if (multiconvert(arg, &result, conv_strtoull))
|
2008-07-18 11:10:51 +00:00
|
|
|
result = 0;
|
2006-01-06 20:28:05 +00:00
|
|
|
return result;
|
|
|
|
}
|
2009-01-04 02:58:58 +00:00
|
|
|
static long long my_xstrtoll(const char *arg)
|
2006-01-06 20:28:05 +00:00
|
|
|
{
|
2009-01-04 02:58:58 +00:00
|
|
|
long long result;
|
|
|
|
if (multiconvert(arg, &result, conv_strtoll))
|
2008-07-18 11:10:51 +00:00
|
|
|
result = 0;
|
2006-01-06 20:28:05 +00:00
|
|
|
return result;
|
|
|
|
}
|
2007-01-29 22:51:00 +00:00
|
|
|
static double my_xstrtod(const char *arg)
|
2006-01-06 20:28:05 +00:00
|
|
|
{
|
|
|
|
double result;
|
2006-11-27 14:43:21 +00:00
|
|
|
multiconvert(arg, &result, conv_strtod);
|
2006-01-06 20:28:05 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-01-31 21:22:25 +00:00
|
|
|
/* Handles %b; return 1 if output is to be short-circuited by \c */
|
|
|
|
static int print_esc_string(const char *str)
|
2006-01-06 20:28:05 +00:00
|
|
|
{
|
2010-10-23 19:06:06 +00:00
|
|
|
char c;
|
|
|
|
while ((c = *str) != '\0') {
|
|
|
|
str++;
|
2012-03-07 10:57:47 +00:00
|
|
|
if (c == '\\') {
|
|
|
|
/* %b also accepts 4-digit octals of the form \0### */
|
|
|
|
if (*str == '0') {
|
|
|
|
if ((unsigned char)(str[1] - '0') < 8) {
|
|
|
|
/* 2nd char is 0..7: skip leading '0' */
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
}
|
2016-01-31 21:22:25 +00:00
|
|
|
else if (*str == 'c') {
|
|
|
|
return 1;
|
|
|
|
}
|
2012-03-07 10:57:47 +00:00
|
|
|
{
|
|
|
|
/* optimization: don't force arg to be on-stack,
|
|
|
|
* use another variable for that. */
|
|
|
|
const char *z = str;
|
|
|
|
c = bb_process_escape_sequence(&z);
|
|
|
|
str = z;
|
|
|
|
}
|
|
|
|
}
|
2010-10-23 19:06:06 +00:00
|
|
|
putchar(c);
|
2006-01-06 20:28:05 +00:00
|
|
|
}
|
2016-01-31 21:22:25 +00:00
|
|
|
|
|
|
|
return 0;
|
2006-01-06 20:28:05 +00:00
|
|
|
}
|
|
|
|
|
2008-05-31 11:41:50 +00:00
|
|
|
static void print_direc(char *format, unsigned fmt_length,
|
|
|
|
int field_width, int precision,
|
2007-03-09 16:43:01 +00:00
|
|
|
const char *argument)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2009-01-04 02:58:58 +00:00
|
|
|
long long llv;
|
2008-07-18 11:10:51 +00:00
|
|
|
double dv;
|
2008-05-31 11:41:50 +00:00
|
|
|
char saved;
|
2008-07-18 11:10:51 +00:00
|
|
|
char *have_prec, *have_width;
|
|
|
|
|
2009-03-03 14:14:44 +00:00
|
|
|
saved = format[fmt_length];
|
|
|
|
format[fmt_length] = '\0';
|
|
|
|
|
2008-07-18 11:10:51 +00:00
|
|
|
have_prec = strstr(format, ".*");
|
|
|
|
have_width = strchr(format, '*');
|
|
|
|
if (have_width - 1 == have_prec)
|
|
|
|
have_width = NULL;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2009-06-26 22:07:23 +00:00
|
|
|
errno = 0;
|
|
|
|
|
2008-05-31 18:32:56 +00:00
|
|
|
switch (format[fmt_length - 1]) {
|
2008-07-18 11:10:51 +00:00
|
|
|
case 'c':
|
|
|
|
printf(format, *argument);
|
|
|
|
break;
|
2007-03-09 16:43:01 +00:00
|
|
|
case 'd':
|
|
|
|
case 'i':
|
2009-01-04 02:58:58 +00:00
|
|
|
llv = my_xstrtoll(argument);
|
2008-07-18 11:10:51 +00:00
|
|
|
print_long:
|
|
|
|
if (!have_width) {
|
|
|
|
if (!have_prec)
|
2009-01-04 02:58:58 +00:00
|
|
|
printf(format, llv);
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2009-01-04 02:58:58 +00:00
|
|
|
printf(format, precision, llv);
|
2007-03-09 16:43:01 +00:00
|
|
|
} else {
|
2008-07-18 11:10:51 +00:00
|
|
|
if (!have_prec)
|
2009-01-04 02:58:58 +00:00
|
|
|
printf(format, field_width, llv);
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2009-01-04 02:58:58 +00:00
|
|
|
printf(format, field_width, precision, llv);
|
2007-03-09 16:43:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
case 'u':
|
|
|
|
case 'x':
|
|
|
|
case 'X':
|
2009-01-04 02:58:58 +00:00
|
|
|
llv = my_xstrtoull(argument);
|
2008-07-18 11:10:51 +00:00
|
|
|
/* cheat: unsigned long and long have same width, so... */
|
|
|
|
goto print_long;
|
|
|
|
case 's':
|
2009-01-04 02:58:58 +00:00
|
|
|
/* Are char* and long long the same? */
|
|
|
|
if (sizeof(argument) == sizeof(llv)) {
|
|
|
|
llv = (long long)(ptrdiff_t)argument;
|
2008-07-18 11:10:51 +00:00
|
|
|
goto print_long;
|
2009-01-04 02:58:58 +00:00
|
|
|
} else {
|
|
|
|
/* Hope compiler will optimize it out by moving call
|
|
|
|
* instruction after the ifs... */
|
2008-07-18 11:10:51 +00:00
|
|
|
if (!have_width) {
|
|
|
|
if (!have_prec)
|
2009-01-04 02:58:58 +00:00
|
|
|
printf(format, argument, /*unused:*/ argument, argument);
|
2008-07-18 11:10:51 +00:00
|
|
|
else
|
2009-01-04 02:58:58 +00:00
|
|
|
printf(format, precision, argument, /*unused:*/ argument);
|
2008-07-18 11:10:51 +00:00
|
|
|
} else {
|
|
|
|
if (!have_prec)
|
2009-01-04 02:58:58 +00:00
|
|
|
printf(format, field_width, argument, /*unused:*/ argument);
|
2008-07-18 11:10:51 +00:00
|
|
|
else
|
|
|
|
printf(format, field_width, precision, argument);
|
|
|
|
}
|
|
|
|
break;
|
2007-03-09 16:43:01 +00:00
|
|
|
}
|
|
|
|
case 'f':
|
|
|
|
case 'e':
|
|
|
|
case 'E':
|
|
|
|
case 'g':
|
|
|
|
case 'G':
|
2008-07-18 11:10:51 +00:00
|
|
|
dv = my_xstrtod(argument);
|
|
|
|
if (!have_width) {
|
|
|
|
if (!have_prec)
|
|
|
|
printf(format, dv);
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-07-18 11:10:51 +00:00
|
|
|
printf(format, precision, dv);
|
2007-03-09 16:43:01 +00:00
|
|
|
} else {
|
2008-07-18 11:10:51 +00:00
|
|
|
if (!have_prec)
|
|
|
|
printf(format, field_width, dv);
|
2007-03-09 16:43:01 +00:00
|
|
|
else
|
2008-07-18 11:10:51 +00:00
|
|
|
printf(format, field_width, precision, dv);
|
2007-03-09 16:43:01 +00:00
|
|
|
}
|
|
|
|
break;
|
2008-07-18 11:10:51 +00:00
|
|
|
} /* switch */
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2008-05-31 11:41:50 +00:00
|
|
|
format[fmt_length] = saved;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 11:10:51 +00:00
|
|
|
/* Handle params for "%*.*f". Negative numbers are ok (compat). */
|
|
|
|
static int get_width_prec(const char *str)
|
|
|
|
{
|
|
|
|
int v = bb_strtoi(str, NULL, 10);
|
|
|
|
if (errno) {
|
2010-08-29 11:29:02 +00:00
|
|
|
bb_error_msg("invalid number '%s'", str);
|
2008-07-18 11:10:51 +00:00
|
|
|
v = 0;
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2008-05-18 14:28:40 +00:00
|
|
|
/* Print the text in FORMAT, using ARGV for arguments to any '%' directives.
|
|
|
|
Return advanced ARGV. */
|
2009-06-18 20:22:04 +00:00
|
|
|
static char **print_formatted(char *f, char **argv, int *conv_err)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2007-03-09 16:43:01 +00:00
|
|
|
char *direc_start; /* Start of % directive. */
|
2008-05-31 11:41:50 +00:00
|
|
|
unsigned direc_length; /* Length of % directive. */
|
2008-07-18 11:10:51 +00:00
|
|
|
int field_width; /* Arg to first '*' */
|
|
|
|
int precision; /* Arg to second '*' */
|
2008-06-01 22:36:39 +00:00
|
|
|
char **saved_argv = argv;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2008-05-31 11:41:50 +00:00
|
|
|
for (; *f; ++f) {
|
2000-02-08 19:58:47 +00:00
|
|
|
switch (*f) {
|
|
|
|
case '%':
|
|
|
|
direc_start = f++;
|
|
|
|
direc_length = 1;
|
2008-07-18 11:10:51 +00:00
|
|
|
field_width = precision = 0;
|
2000-02-08 19:58:47 +00:00
|
|
|
if (*f == '%') {
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar('%');
|
2000-02-08 19:58:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*f == 'b') {
|
2008-05-18 14:28:40 +00:00
|
|
|
if (*argv) {
|
2016-01-31 21:22:25 +00:00
|
|
|
if (print_esc_string(*argv))
|
|
|
|
return saved_argv; /* causes main() to exit */
|
2000-02-08 19:58:47 +00:00
|
|
|
++argv;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (strchr("-+ #", *f)) {
|
|
|
|
++f;
|
|
|
|
++direc_length;
|
|
|
|
}
|
|
|
|
if (*f == '*') {
|
|
|
|
++f;
|
|
|
|
++direc_length;
|
2008-07-18 11:10:51 +00:00
|
|
|
if (*argv)
|
|
|
|
field_width = get_width_prec(*argv++);
|
2007-03-09 16:43:01 +00:00
|
|
|
} else {
|
2004-09-15 02:05:23 +00:00
|
|
|
while (isdigit(*f)) {
|
2000-02-08 19:58:47 +00:00
|
|
|
++f;
|
|
|
|
++direc_length;
|
|
|
|
}
|
2007-03-09 16:43:01 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
if (*f == '.') {
|
|
|
|
++f;
|
|
|
|
++direc_length;
|
|
|
|
if (*f == '*') {
|
|
|
|
++f;
|
|
|
|
++direc_length;
|
2008-07-18 11:10:51 +00:00
|
|
|
if (*argv)
|
|
|
|
precision = get_width_prec(*argv++);
|
|
|
|
} else {
|
2004-09-15 02:05:23 +00:00
|
|
|
while (isdigit(*f)) {
|
2000-02-08 19:58:47 +00:00
|
|
|
++f;
|
|
|
|
++direc_length;
|
|
|
|
}
|
2008-07-18 11:10:51 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2008-07-18 18:41:55 +00:00
|
|
|
|
2009-01-04 02:58:58 +00:00
|
|
|
/* Remove "lLhz" size modifiers, repeatedly.
|
|
|
|
* bash does not like "%lld", but coreutils
|
2009-06-18 20:22:04 +00:00
|
|
|
* happily takes even "%Llllhhzhhzd"!
|
|
|
|
* We are permissive like coreutils */
|
2009-01-04 02:58:58 +00:00
|
|
|
while ((*f | 0x20) == 'l' || *f == 'h' || *f == 'z') {
|
|
|
|
overlapping_strcpy(f, f + 1);
|
2008-07-17 09:17:51 +00:00
|
|
|
}
|
2009-01-04 02:58:58 +00:00
|
|
|
/* Add "ll" if integer modifier, then print */
|
|
|
|
{
|
|
|
|
static const char format_chars[] ALIGN1 = "diouxXfeEgGcs";
|
|
|
|
char *p = strchr(format_chars, *f);
|
|
|
|
/* needed - try "printf %" without it */
|
|
|
|
if (p == NULL) {
|
|
|
|
bb_error_msg("%s: invalid format", direc_start);
|
|
|
|
/* causes main() to exit with error */
|
|
|
|
return saved_argv - 1;
|
|
|
|
}
|
|
|
|
++direc_length;
|
|
|
|
if (p - format_chars <= 5) {
|
|
|
|
/* it is one of "diouxX" */
|
|
|
|
p = xmalloc(direc_length + 3);
|
|
|
|
memcpy(p, direc_start, direc_length);
|
|
|
|
p[direc_length + 1] = p[direc_length - 1];
|
|
|
|
p[direc_length - 1] = 'l';
|
|
|
|
p[direc_length] = 'l';
|
|
|
|
//bb_error_msg("<%s>", p);
|
|
|
|
direc_length += 2;
|
|
|
|
direc_start = p;
|
|
|
|
} else {
|
|
|
|
p = NULL;
|
|
|
|
}
|
|
|
|
if (*argv) {
|
|
|
|
print_direc(direc_start, direc_length, field_width,
|
2009-06-18 20:22:04 +00:00
|
|
|
precision, *argv++);
|
2009-01-04 02:58:58 +00:00
|
|
|
} else {
|
|
|
|
print_direc(direc_start, direc_length, field_width,
|
|
|
|
precision, "");
|
|
|
|
}
|
2009-06-18 20:22:04 +00:00
|
|
|
*conv_err |= errno;
|
2009-01-04 02:58:58 +00:00
|
|
|
free(p);
|
2008-07-18 11:10:51 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
break;
|
|
|
|
case '\\':
|
2008-06-01 22:36:39 +00:00
|
|
|
if (*++f == 'c') {
|
|
|
|
return saved_argv; /* causes main() to exit */
|
|
|
|
}
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar(bb_process_escape_sequence((const char **)&f));
|
2004-09-15 02:05:23 +00:00
|
|
|
f--;
|
2000-02-08 19:58:47 +00:00
|
|
|
break;
|
|
|
|
default:
|
2010-10-23 19:06:06 +00:00
|
|
|
putchar(*f);
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-18 14:28:40 +00:00
|
|
|
return argv;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2008-07-05 09:18:54 +00:00
|
|
|
int printf_main(int argc UNUSED_PARAM, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2009-06-18 20:22:04 +00:00
|
|
|
int conv_err;
|
2007-03-09 16:43:01 +00:00
|
|
|
char *format;
|
2008-05-18 14:28:40 +00:00
|
|
|
char **argv2;
|
|
|
|
|
2008-06-01 22:36:39 +00:00
|
|
|
/* We must check that stdout is not closed.
|
2008-07-17 09:17:51 +00:00
|
|
|
* The reason for this is highly non-obvious.
|
|
|
|
* printf_main is used from shell.
|
2008-06-01 22:36:39 +00:00
|
|
|
* Shell must correctly handle 'printf "%s" foo'
|
|
|
|
* if stdout is closed. With stdio, output gets shoveled into
|
|
|
|
* stdout buffer, and even fflush cannot clear it out. It seems that
|
|
|
|
* even if libc receives EBADF on write attempts, it feels determined
|
|
|
|
* to output data no matter what. So it will try later,
|
|
|
|
* and possibly will clobber future output. Not good. */
|
2008-07-25 13:34:05 +00:00
|
|
|
// TODO: check fcntl() & O_ACCMODE == O_WRONLY or O_RDWR?
|
|
|
|
if (fcntl(1, F_GETFL) == -1)
|
|
|
|
return 1; /* match coreutils 6.10 (sans error msg to stderr) */
|
|
|
|
//if (dup2(1, 1) != 1) - old way
|
|
|
|
// return 1;
|
2008-06-01 22:36:39 +00:00
|
|
|
|
2008-05-18 14:28:40 +00:00
|
|
|
/* bash builtin errors out on "printf '-%s-\n' foo",
|
|
|
|
* coreutils-6.9 works. Both work with "printf -- '-%s-\n' foo".
|
|
|
|
* We will mimic coreutils. */
|
2008-07-17 09:17:51 +00:00
|
|
|
if (argv[1] && argv[1][0] == '-' && argv[1][1] == '-' && !argv[1][2])
|
2008-05-18 14:28:40 +00:00
|
|
|
argv++;
|
2008-12-10 11:51:45 +00:00
|
|
|
if (!argv[1]) {
|
|
|
|
if (ENABLE_ASH_BUILTIN_PRINTF
|
|
|
|
&& applet_name[0] != 'p'
|
|
|
|
) {
|
|
|
|
bb_error_msg("usage: printf FORMAT [ARGUMENT...]");
|
|
|
|
return 2; /* bash compat */
|
|
|
|
}
|
2007-03-09 16:43:01 +00:00
|
|
|
bb_show_usage();
|
2008-12-10 11:51:45 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2007-03-09 16:43:01 +00:00
|
|
|
format = argv[1];
|
2008-05-18 14:28:40 +00:00
|
|
|
argv2 = argv + 2;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2009-06-18 20:22:04 +00:00
|
|
|
conv_err = 0;
|
2007-03-09 16:43:01 +00:00
|
|
|
do {
|
2008-05-18 14:28:40 +00:00
|
|
|
argv = argv2;
|
2009-06-18 20:22:04 +00:00
|
|
|
argv2 = print_formatted(format, argv, &conv_err);
|
2008-07-17 09:17:51 +00:00
|
|
|
} while (argv2 > argv && *argv2);
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2008-05-18 14:28:40 +00:00
|
|
|
/* coreutils compat (bash doesn't do this):
|
|
|
|
if (*argv)
|
2007-03-09 16:43:01 +00:00
|
|
|
fprintf(stderr, "excess args ignored");
|
2008-05-18 14:28:40 +00:00
|
|
|
*/
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2009-06-18 20:22:04 +00:00
|
|
|
return (argv2 < argv) /* if true, print_formatted errored out */
|
|
|
|
|| conv_err; /* print_formatted saw invalid number */
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|