/* $OpenBSD: printf.c,v 1.17 2009/10/27 23:59:41 deraadt Exp $ */ /*- * Copyright (c) 1989 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. * 3. 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. */ #ifdef MKSH_PRINTF_BUILTIN /* MirBSD Korn Shell */ #include "sh.h" #else /* stand-alone executable */ #include #include #include #include #include #include #include #include #include #define vstrchr strchr #endif __RCSID("$MirOS: src/usr.bin/printf/printf.c,v 1.21 2020/01/22 01:57:44 tg Exp $"); static int print_escape_str(const char *); static int print_escape(const char *); static int getchr(void); #ifndef MKSH_PRINTF_BUILTIN static double getdouble(void); #endif static int getinteger(void); static long getlong(void); static unsigned long getulong(void); static const char *getstr(void); static char *mklong(const char *, int); static void check_conversion(const char *, const char *); static int usage(void); static int real_main(char *, const char *[]); static int rval; static const char **gargv; #ifdef MKSH_PRINTF_BUILTIN static int s_get(void); static void s_put(int); static void s_prt(int); static const char *s_ptr; #define isxdigit(c) (((c) >= '0' && (c) <= '9') || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' && (c) <= 'F')) #endif #define isodigit(c) ((c) >= '0' && (c) <= '7') #define octtobin(c) ((c) - '0') #define hextobin(c) ((c) >= 'A' && (c) <= 'F' ? c - 'A' + 10 : (c) >= 'a' && (c) <= 'f' ? c - 'a' + 10 : c - '0') #define PF(f, func) do { \ if (fieldwidth) \ if (precision) \ uprintf(f, fieldwidth, precision, func); \ else \ uprintf(f, fieldwidth, func); \ else if (precision) \ uprintf(f, precision, func); \ else \ uprintf(f, func); \ } while (/* CONSTCOND */ 0) #ifndef vstrchr #define vstrchr strchr #endif #ifndef cstrerror #define cstrerror(e) ((const char *)strerror(e)) #endif #ifdef MKSH_PRINTF_BUILTIN #define ufprintf shf_fprintf #define uprintf shprintf #define uputc(c) shf_putchar((c), shl_stdout) #define ustderr shl_out #define uwarnx warningf #define UWARNX false, int c_printf(const char **wp) { int rv; const char *old_kshname; char *fmt; uint8_t old_utfmode; old_kshname = kshname; kshname = wp[0]; ++wp; if (wp[0] && !strcmp(wp[0], "--")) ++wp; if (wp[0]) { strdupx(fmt, wp[0], ATEMP); old_utfmode = UTFMODE; UTFMODE = 0; rv = real_main(fmt, wp); UTFMODE = old_utfmode; afree(fmt, ATEMP); } else rv = usage(); kshname = old_kshname; return (rv); } #else #define ufprintf fprintf #define uprintf printf #define uputc putchar #define ustderr stderr #define uwarnx warnx #define UWARNX /* nothing */ int main(int argc, char *argv[]) { setlocale(LC_ALL, ""); if (argc > 1 && !strcmp(argv[1], "--")) { --argc; ++argv; } ++argv; return (argc < 2 ? usage() : real_main(argv[0], (const char **)argv)); } #endif static int real_main(char *format, const char *argv[]) { char *fmt, *start; int fieldwidth, precision; char convch, nextch; gargv = ++argv; #define SKIP1 "#-+ 0" #define SKIP2 "0123456789" do { /* * 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. */ /* find next format specification */ for (fmt = format; *fmt; fmt++) { switch (*fmt) { case '%': start = fmt++; if (*fmt == '%') { uputc('%'); break; } else if (*fmt == 'b') { const char *p = getstr(); if (print_escape_str(p)) { return (rval); } break; } else if (!*fmt) { goto synerr; } /* skip to field width */ for (; vstrchr(SKIP1, *fmt); ++fmt) ; if (*fmt == '*') { ++fmt; fieldwidth = getinteger(); } else if (!*fmt) { goto synerr; } else fieldwidth = 0; /* skip to field precision */ for (; vstrchr(SKIP2, *fmt); ++fmt) ; precision = 0; if (*fmt == '.') { ++fmt; if (*fmt == '*') { ++fmt; precision = getinteger(); } if (!*fmt) goto synerr; for (; vstrchr(SKIP2, *fmt); ++fmt) ; } if (!*fmt) { synerr: uwarnx(UWARNX "missing format character"); return (1); } convch = *fmt; nextch = *(fmt + 1); *(fmt + 1) = '\0'; switch(convch) { case 'c': { char p = getchr(); PF(start, p); break; } case 's': { const char *p = getstr(); PF(start, p); break; } case 'd': case 'i': { long p; char *f = mklong(start, convch); if (!f) { uwarnx(UWARNX "out of memory"); return (1); } p = getlong(); PF(f, p); break; } case 'o': case 'u': case 'x': case 'X': { unsigned long p; char *f = mklong(start, convch); if (!f) { uwarnx(UWARNX "out of memory"); return (1); } p = getulong(); PF(f, p); break; } #ifndef MKSH_PRINTF_BUILTIN #if 0 case 'a': case 'A': #endif case 'e': case 'E': case 'f': case 'F': case 'g': case 'G': { double p = getdouble(); PF(start, p); break; } #endif default: uwarnx(UWARNX "%s: invalid directive", start); return (1); } *(fmt + 1) = nextch; break; case '\\': fmt += print_escape(fmt); break; default: uputc(*fmt); break; } } } while (gargv > argv && *gargv); return (rval); } /* * Print SysV echo(1) style escape string * Halts processing string and returns 1 if a \c escape is encountered. */ static int print_escape_str(const char *str) { #ifndef MKSH_PRINTF_BUILTIN int value; #endif int c; while (*str) { if (*str == '\\') { #ifdef MKSH_PRINTF_BUILTIN s_ptr = str + 1; c = unbksl(false, s_get, s_put); str = s_ptr; if (c == -1) { if ((c = *str++) == 'c') return (1); else if (!c) --str; uputc(c); uwarnx(UWARNX "unknown escape sequence `\\%c'", c); rval = 1; } else s_prt(c); continue; #else str++; /* * %b string octal constants are not like those in C. * They start with a \0, and are followed by 0, 1, 2, * or 3 octal digits. */ if (*str == '0') { str++; for (c = 3, value = 0; c-- && isodigit(*str); str++) { value <<= 3; value += octtobin(*str); } uputc(value); str--; } else if (*str == 'c') { return (1); } else { str--; str += print_escape(str); } #endif } else { uputc(*str); } str++; } return (0); } /* * Print "standard" escape characters */ static int print_escape(const char *str) { #ifdef MKSH_PRINTF_BUILTIN int c; s_ptr = str + 1; c = unbksl(true, s_get, s_put); if (c == -1) { s_ptr = str + 1; switch ((c = *s_ptr++)) { case '\\': case '\'': case '"': break; case '\0': --s_ptr; /* FALLTHROUGH */ default: uwarnx(UWARNX "unknown escape sequence `\\%c'", c); rval = 1; } } s_prt(c); return (s_ptr - str - 1); #else const char *start = str; int value; int c; str++; switch (*str) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': for (c = 3, value = 0; c-- && isodigit(*str); str++) { value <<= 3; value += octtobin(*str); } uputc(value); return (str - start - 1); /* NOTREACHED */ case 'x': str++; for (value = 0; isxdigit(*str); str++) { value <<= 4; value += hextobin(*str); } if (value > UCHAR_MAX) { uwarnx(UWARNX "escape sequence out of range for character"); rval = 1; } uputc(value); return (str - start - 1); /* NOTREACHED */ case '\\': /* backslash */ uputc('\\'); break; case '\'': /* single quote */ uputc('\''); break; case '"': /* double quote */ uputc('"'); break; case 'a': /* alert */ uputc('\a'); break; case 'b': /* backspace */ uputc('\b'); break; case 'e': /* escape */ uputc(033); break; case 'f': /* form-feed */ uputc('\f'); break; case 'n': /* newline */ uputc('\n'); break; case 'r': /* carriage-return */ uputc('\r'); break; case 't': /* tab */ uputc('\t'); break; case 'v': /* vertical-tab */ uputc('\v'); break; default: uputc(*str); uwarnx(UWARNX "unknown escape sequence `\\%c'", *str); rval = 1; } return (1); #endif } static char * mklong(const char *str, int ch) { static char *copy; static size_t copysize; size_t len; len = strlen(str) + 2; if (copysize < len) { char *newcopy; copysize = len + 256; newcopy = realloc(copy, copysize); if (newcopy == NULL) { copysize = 0; free(copy); copy = NULL; return (NULL); } copy = newcopy; } (void) memmove(copy, str, len - 3); copy[len - 3] = 'l'; copy[len - 2] = ch; copy[len - 1] = '\0'; return (copy); } static int getchr(void) { if (!*gargv) return ((int)'\0'); return ((int)**gargv++); } static const char * getstr(void) { if (!*gargv) return (""); return (*gargv++); } static const char *number = "+-.0123456789"; static int getinteger(void) { if (!*gargv) return (0); if (**gargv && vstrchr(number, **gargv)) return (atoi(*gargv++)); return (0); } static long getlong(void) { long val; char *ep; if (!*gargv) return (0L); if (**gargv == '\"' || **gargv == '\'') return ((long)*((*gargv++)+1)); errno = 0; val = strtol(*gargv, &ep, 0); check_conversion(*gargv++, ep); return (val); } static unsigned long getulong(void) { unsigned long val; char *ep; if (!*gargv) return (0UL); if (**gargv == '\"' || **gargv == '\'') return ((unsigned long)(unsigned char)*((*gargv++) + 1)); errno = 0; val = strtoul(*gargv, &ep, 0); check_conversion(*gargv++, ep); return (val); } #ifndef MKSH_PRINTF_BUILTIN static double getdouble(void) { double val; char *ep; if (!*gargv) return (0.0); if (**gargv == '\"' || **gargv == '\'') return ((double)*((*gargv++)+1)); errno = 0; val = strtod(*gargv, &ep); check_conversion(*gargv++, ep); return (val); } #endif static void check_conversion(const char *s, const char *ep) { if (*ep) { if (ep == s) uwarnx(UWARNX "%s: expected numeric value", s); else uwarnx(UWARNX "%s: not completely converted", s); rval = 1; } else if (errno == ERANGE) { uwarnx(UWARNX "%s: %s", s, cstrerror(ERANGE)); rval = 1; } } static int usage(void) { ufprintf(ustderr, "usage: printf format [arg ...]\n"); return (1); } #ifdef MKSH_PRINTF_BUILTIN static int s_get(void) { return (*s_ptr++); } static void s_put(int c MKSH_A_UNUSED) { --s_ptr; } static void s_prt(int c) { char ts[4]; if ((unsigned int)c < 0x100) { ts[0] = c; c = 1; } else c = (int)utf_wctomb(ts, c - 0x100); shf_write(ts, c, shl_stdout); } #endif