123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569 |
- /*
- * Copyright (c) 2010-2018 Richard Braun.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * Upstream site with license notes :
- * http://git.sceen.net/rbraun/librbraun.git/
- */
- #include <assert.h>
- #include <errno.h>
- #include <limits.h>
- #include <stdbool.h>
- #include <stdarg.h>
- #include <stddef.h>
- #include <stdint.h>
- #include <stdio.h>
- #include <string.h>
- #include <kern/fmt.h>
- #include <kern/macros.h>
- #include <kern/types.h>
- /*
- * Size for the temporary number buffer. The minimum base is 8 so 3 bits
- * are consumed per digit. Add one to round up. The conversion algorithm
- * doesn't use the null byte.
- */
- #define FMT_MAX_NUM_SIZE (((sizeof(unsigned long long) * CHAR_BIT) / 3) + 1)
- /*
- * Special size for fmt_vsnprintf(), used when the buffer size is unknown.
- */
- #define FMT_NOLIMIT ((size_t)-1)
- /*
- * Special character used to denote that the putback buffer is empty.
- */
- #define FMT_NOPUTBACK (EOF - 1)
- /*
- * Formatting flags.
- *
- * FMT_FORMAT_LOWER must be 0x20 as it is OR'd with fmt_digits, eg.
- * '0': 0x30 | 0x20 => 0x30 ('0')
- * 'A': 0x41 | 0x20 => 0x61 ('a')
- */
- #define FMT_FORMAT_ALT_FORM 0x0001 /* "Alternate form" */
- #define FMT_FORMAT_ZERO_PAD 0x0002 /* Zero padding on the left */
- #define FMT_FORMAT_LEFT_JUSTIFY 0x0004 /* Align text on the left */
- #define FMT_FORMAT_BLANK 0x0008 /* Blank space before positive number */
- #define FMT_FORMAT_SIGN 0x0010 /* Always place a sign (either + or -) */
- #define FMT_FORMAT_LOWER 0x0020 /* To lowercase (for %x) */
- #define FMT_FORMAT_CONV_SIGNED 0x0040 /* Format specifies signed conversion */
- #define FMT_FORMAT_DISCARD 0x0080 /* Discard output (scanf) */
- #define FMT_FORMAT_CHECK_WIDTH 0x0100 /* Check field width (scanf) */
- enum {
- FMT_MODIFIER_NONE,
- FMT_MODIFIER_CHAR,
- FMT_MODIFIER_SHORT,
- FMT_MODIFIER_LONG,
- FMT_MODIFIER_LONGLONG,
- FMT_MODIFIER_PTR, /* Used only for %p */
- FMT_MODIFIER_SIZE,
- FMT_MODIFIER_PTRDIFF,
- };
- enum {
- FMT_SPECIFIER_INVALID,
- FMT_SPECIFIER_INT,
- FMT_SPECIFIER_CHAR,
- FMT_SPECIFIER_STR,
- FMT_SPECIFIER_NRCHARS,
- FMT_SPECIFIER_PERCENT,
- };
- /*
- * Note that copies of the original va_list object are made, because va_arg()
- * may not reliably be used by different callee functions, and despite the
- * standard explicitely allowing pointers to va_list objects, it's apparently
- * very difficult for implementations to provide and is best avoided.
- */
- struct fmt_xprintf_state {
- const char *format;
- va_list ap;
- unsigned int flags;
- int width;
- int precision;
- unsigned int modifier;
- unsigned int specifier;
- unsigned int base;
- struct fmt_write_op write_op;
- int nr_chars;
- };
- struct fmt_xscanf_state {
- const char *format;
- va_list ap;
- unsigned int flags;
- int width;
- unsigned int modifier;
- unsigned int specifier;
- unsigned int base;
- int nr_convs;
- struct fmt_read_op read_op;
- int nr_chars;
- int cur_ch;
- };
- static const char fmt_digits[] = "0123456789ABCDEF";
- static char
- fmt_consume(const char **strp)
- {
- char c;
- c = **strp;
- (*strp)++;
- return c;
- }
- static bool
- fmt_isdigit(char c)
- {
- return (c >= '0') && (c <= '9');
- }
- static bool
- fmt_isxdigit(char c)
- {
- return fmt_isdigit(c)
- || ((c >= 'a') && (c <= 'f'))
- || ((c >= 'A') && (c <= 'F'));
- }
- static void
- fmt_xprintf_state_init(struct fmt_xprintf_state *state,
- struct fmt_write_op *op,
- const char *format, va_list ap)
- {
- state->format = format;
- va_copy(state->ap, ap);
- state->write_op = *op;
- state->nr_chars = 0;
- }
- static void
- fmt_xprintf_state_produce_raw_char(struct fmt_xprintf_state *state, char c)
- {
- state->write_op.putc(state->write_op.data, c);
- ++state->nr_chars;
- }
- static int
- fmt_xprintf_state_finalize(struct fmt_xprintf_state *state)
- {
- va_end(state->ap);
- return state->nr_chars;
- }
- static char
- fmt_xprintf_state_consume_format(struct fmt_xprintf_state *state)
- {
- return *state->format++;
- }
- static void
- fmt_xprintf_state_restore_format(struct fmt_xprintf_state *state)
- {
- --state->format;
- }
- static void
- fmt_xprintf_state_consume_flags(struct fmt_xprintf_state *state)
- {
- bool found;
- char c;
- found = true;
- state->flags = 0;
- do {
- c = fmt_xprintf_state_consume_format(state);
- switch (c) {
- case '#':
- state->flags |= FMT_FORMAT_ALT_FORM;
- break;
- case '0':
- state->flags |= FMT_FORMAT_ZERO_PAD;
- break;
- case '-':
- state->flags |= FMT_FORMAT_LEFT_JUSTIFY;
- break;
- case ' ':
- state->flags |= FMT_FORMAT_BLANK;
- break;
- case '+':
- state->flags |= FMT_FORMAT_SIGN;
- break;
- default:
- found = false;
- break;
- }
- } while (found);
- fmt_xprintf_state_restore_format(state);
- }
- static void
- fmt_xprintf_state_consume_width(struct fmt_xprintf_state *state)
- {
- char c;
- c = fmt_xprintf_state_consume_format(state);
- if (fmt_isdigit(c)) {
- state->width = 0;
- do {
- state->width = state->width * 10 + (c - '0');
- c = fmt_xprintf_state_consume_format(state);
- } while (fmt_isdigit(c));
- fmt_xprintf_state_restore_format(state);
- } else if (c == '*') {
- state->width = va_arg(state->ap, int);
- if (state->width < 0) {
- state->flags |= FMT_FORMAT_LEFT_JUSTIFY;
- state->width = -state->width;
- }
- } else {
- state->width = 0;
- fmt_xprintf_state_restore_format(state);
- }
- }
- static void
- fmt_xprintf_state_consume_precision(struct fmt_xprintf_state *state)
- {
- char c;
- c = fmt_xprintf_state_consume_format(state);
- if (c == '.') {
- c = fmt_xprintf_state_consume_format(state);
- if (fmt_isdigit(c)) {
- state->precision = 0;
- do {
- state->precision = state->precision * 10 + (c - '0');
- c = fmt_xprintf_state_consume_format(state);
- } while (fmt_isdigit(c));
- fmt_xprintf_state_restore_format(state);
- } else if (c == '*') {
- state->precision = va_arg(state->ap, int);
- if (state->precision < 0) {
- state->precision = 0;
- }
- } else {
- state->precision = 0;
- fmt_xprintf_state_restore_format(state);
- }
- } else {
- /* precision is >= 0 only if explicit */
- state->precision = -1;
- fmt_xprintf_state_restore_format(state);
- }
- }
- static void
- fmt_xprintf_state_consume_modifier(struct fmt_xprintf_state *state)
- {
- char c, c2;
- c = fmt_xprintf_state_consume_format(state);
- switch (c) {
- case 'h':
- case 'l':
- c2 = fmt_xprintf_state_consume_format(state);
- if (c == c2) {
- state->modifier = (c == 'h') ? FMT_MODIFIER_CHAR
- : FMT_MODIFIER_LONGLONG;
- } else {
- state->modifier = (c == 'h') ? FMT_MODIFIER_SHORT
- : FMT_MODIFIER_LONG;
- fmt_xprintf_state_restore_format(state);
- }
- break;
- case 'z':
- state->modifier = FMT_MODIFIER_SIZE;
- __fallthrough;
- case 't':
- state->modifier = FMT_MODIFIER_PTRDIFF;
- break;
- default:
- state->modifier = FMT_MODIFIER_NONE;
- fmt_xprintf_state_restore_format(state);
- break;
- }
- }
- static void
- fmt_xprintf_state_consume_specifier(struct fmt_xprintf_state *state)
- {
- char c;
- c = fmt_xprintf_state_consume_format(state);
- switch (c) {
- case 'd':
- case 'i':
- state->flags |= FMT_FORMAT_CONV_SIGNED;
- __fallthrough;
- case 'u':
- state->base = 10;
- state->specifier = FMT_SPECIFIER_INT;
- break;
- case 'o':
- state->base = 8;
- state->specifier = FMT_SPECIFIER_INT;
- break;
- case 'p':
- state->flags |= FMT_FORMAT_ALT_FORM;
- state->modifier = FMT_MODIFIER_PTR;
- __fallthrough;
- case 'x':
- state->flags |= FMT_FORMAT_LOWER;
- __fallthrough;
- case 'X':
- state->base = 16;
- state->specifier = FMT_SPECIFIER_INT;
- break;
- case 'c':
- state->specifier = FMT_SPECIFIER_CHAR;
- break;
- case 's':
- state->specifier = FMT_SPECIFIER_STR;
- break;
- case 'n':
- state->specifier = FMT_SPECIFIER_NRCHARS;
- break;
- case '%':
- state->specifier = FMT_SPECIFIER_PERCENT;
- break;
- default:
- state->specifier = FMT_SPECIFIER_INVALID;
- fmt_xprintf_state_restore_format(state);
- break;
- }
- }
- static int
- fmt_xprintf_state_consume(struct fmt_xprintf_state *state)
- {
- char c;
- c = fmt_consume(&state->format);
- if (c == '\0') {
- return ENOENT;
- }
- if (c != '%') {
- fmt_xprintf_state_produce_raw_char(state, c);
- return EAGAIN;
- }
- fmt_xprintf_state_consume_flags(state);
- fmt_xprintf_state_consume_width(state);
- fmt_xprintf_state_consume_precision(state);
- fmt_xprintf_state_consume_modifier(state);
- fmt_xprintf_state_consume_specifier(state);
- return 0;
- }
- static void
- fmt_xprintf_state_produce_int(struct fmt_xprintf_state *state)
- {
- char c, sign, tmp[FMT_MAX_NUM_SIZE];
- unsigned int r, mask, shift;
- unsigned long long n;
- int i;
- switch (state->modifier) {
- case FMT_MODIFIER_CHAR:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- n = (signed char)va_arg(state->ap, int);
- } else {
- n = (unsigned char)va_arg(state->ap, int);
- }
- break;
- case FMT_MODIFIER_SHORT:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- n = (short)va_arg(state->ap, int);
- } else {
- n = (unsigned short)va_arg(state->ap, int);
- }
- break;
- case FMT_MODIFIER_LONG:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- n = va_arg(state->ap, long);
- } else {
- n = va_arg(state->ap, unsigned long);
- }
- break;
- case FMT_MODIFIER_LONGLONG:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- n = va_arg(state->ap, long long);
- } else {
- n = va_arg(state->ap, unsigned long long);
- }
- break;
- case FMT_MODIFIER_PTR:
- n = (uintptr_t)va_arg(state->ap, void *);
- break;
- case FMT_MODIFIER_SIZE:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- n = va_arg(state->ap, ssize_t);
- } else {
- n = va_arg(state->ap, size_t);
- }
- break;
- case FMT_MODIFIER_PTRDIFF:
- n = va_arg(state->ap, ptrdiff_t);
- break;
- default:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- n = va_arg(state->ap, int);
- } else {
- n = va_arg(state->ap, unsigned int);
- }
- break;
- }
- if ((state->flags & FMT_FORMAT_LEFT_JUSTIFY) || (state->precision >= 0)) {
- state->flags &= ~FMT_FORMAT_ZERO_PAD;
- }
- sign = '\0';
- if (state->flags & FMT_FORMAT_ALT_FORM) {
- /* '0' for octal */
- state->width--;
- /* '0x' or '0X' for hexadecimal */
- if (state->base == 16) {
- state->width--;
- }
- } else if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- if ((long long)n < 0) {
- sign = '-';
- state->width--;
- n = -(long long)n;
- } else if (state->flags & FMT_FORMAT_SIGN) {
- /* FMT_FORMAT_SIGN must precede FMT_FORMAT_BLANK. */
- sign = '+';
- state->width--;
- } else if (state->flags & FMT_FORMAT_BLANK) {
- sign = ' ';
- state->width--;
- }
- }
- /* Conversion, in reverse order */
- i = 0;
- if (n == 0) {
- if (state->precision != 0) {
- tmp[i] = '0';
- i++;
- }
- } else if (state->base == 10) {
- /*
- * Try to avoid 64 bits operations if the processor doesn't
- * support them. Note that even when using modulus and
- * division operators close to each other, the compiler may
- * forge two functions calls to compute the quotient and the
- * remainder, whereas processor instructions are generally
- * correctly used once, giving both results at once, through
- * plain or reciprocal division.
- */
- #ifndef __LP64__
- if (state->modifier == FMT_MODIFIER_LONGLONG) {
- #endif /* __LP64__ */
- do {
- r = n % 10;
- n /= 10;
- tmp[i] = fmt_digits[r];
- i++;
- } while (n != 0);
- #ifndef __LP64__
- } else {
- unsigned long m;
- m = (unsigned long)n;
- do {
- r = m % 10;
- m /= 10;
- tmp[i] = fmt_digits[r];
- i++;
- } while (m != 0);
- }
- #endif /* __LP64__ */
- } else {
- mask = state->base - 1;
- shift = (state->base == 8) ? 3 : 4;
- do {
- r = n & mask;
- n >>= shift;
- tmp[i] = fmt_digits[r] | (state->flags & FMT_FORMAT_LOWER);
- i++;
- } while (n != 0);
- }
- if (i > state->precision) {
- state->precision = i;
- }
- state->width -= state->precision;
- if (!(state->flags & (FMT_FORMAT_LEFT_JUSTIFY | FMT_FORMAT_ZERO_PAD))) {
- while (state->width > 0) {
- state->width--;
- fmt_xprintf_state_produce_raw_char(state, ' ');
- }
- state->width--;
- }
- if (state->flags & FMT_FORMAT_ALT_FORM) {
- fmt_xprintf_state_produce_raw_char(state, '0');
- if (state->base == 16) {
- c = 'X' | (state->flags & FMT_FORMAT_LOWER);
- fmt_xprintf_state_produce_raw_char(state, c);
- }
- } else if (sign != '\0') {
- fmt_xprintf_state_produce_raw_char(state, sign);
- }
- if (!(state->flags & FMT_FORMAT_LEFT_JUSTIFY)) {
- c = (state->flags & FMT_FORMAT_ZERO_PAD) ? '0' : ' ';
- while (state->width > 0) {
- state->width--;
- fmt_xprintf_state_produce_raw_char(state, c);
- }
- state->width--;
- }
- while (i < state->precision) {
- state->precision--;
- fmt_xprintf_state_produce_raw_char(state, '0');
- }
- state->precision--;
- while (i > 0) {
- i--;
- fmt_xprintf_state_produce_raw_char(state, tmp[i]);
- }
- while (state->width > 0) {
- state->width--;
- fmt_xprintf_state_produce_raw_char(state, ' ');
- }
- state->width--;
- }
- static void
- fmt_xprintf_state_produce_char(struct fmt_xprintf_state *state)
- {
- char c;
- c = va_arg(state->ap, int);
- if (!(state->flags & FMT_FORMAT_LEFT_JUSTIFY)) {
- for (;;) {
- state->width--;
- if (state->width <= 0) {
- break;
- }
- fmt_xprintf_state_produce_raw_char(state, ' ');
- }
- }
- fmt_xprintf_state_produce_raw_char(state, c);
- for (;;) {
- state->width--;
- if (state->width <= 0) {
- break;
- }
- fmt_xprintf_state_produce_raw_char(state, ' ');
- }
- }
- static void
- fmt_xprintf_state_produce_str(struct fmt_xprintf_state *state)
- {
- int i, len;
- char *s;
- s = va_arg(state->ap, char *);
- if (s == NULL) {
- s = "(null)";
- }
- for (len = 0; s[len] != '\0'; len++) {
- if (len == state->precision) {
- break;
- }
- }
- if (!(state->flags & FMT_FORMAT_LEFT_JUSTIFY)) {
- while (len < state->width) {
- state->width--;
- fmt_xprintf_state_produce_raw_char(state, ' ');
- }
- }
- for (i = 0; i < len; i++) {
- fmt_xprintf_state_produce_raw_char(state, *s);
- s++;
- }
- while (len < state->width) {
- state->width--;
- fmt_xprintf_state_produce_raw_char(state, ' ');
- }
- }
- static void
- fmt_xprintf_state_produce_nrchars(struct fmt_xprintf_state *state)
- {
- if (state->modifier == FMT_MODIFIER_CHAR) {
- signed char *ptr = va_arg(state->ap, signed char *);
- *ptr = state->nr_chars;
- } else if (state->modifier == FMT_MODIFIER_SHORT) {
- short *ptr = va_arg(state->ap, short *);
- *ptr = state->nr_chars;
- } else if (state->modifier == FMT_MODIFIER_LONG) {
- long *ptr = va_arg(state->ap, long *);
- *ptr = state->nr_chars;
- } else if (state->modifier == FMT_MODIFIER_LONGLONG) {
- long long *ptr = va_arg(state->ap, long long *);
- *ptr = state->nr_chars;
- } else if (state->modifier == FMT_MODIFIER_SIZE) {
- ssize_t *ptr = va_arg(state->ap, ssize_t *);
- *ptr = state->nr_chars;
- } else if (state->modifier == FMT_MODIFIER_PTRDIFF) {
- ptrdiff_t *ptr = va_arg(state->ap, ptrdiff_t *);
- *ptr = state->nr_chars;
- } else {
- int *ptr = va_arg(state->ap, int *);
- *ptr = state->nr_chars;
- }
- }
- static void
- fmt_xprintf_state_produce(struct fmt_xprintf_state *state)
- {
- switch (state->specifier) {
- case FMT_SPECIFIER_INT:
- fmt_xprintf_state_produce_int(state);
- break;
- case FMT_SPECIFIER_CHAR:
- fmt_xprintf_state_produce_char(state);
- break;
- case FMT_SPECIFIER_STR:
- fmt_xprintf_state_produce_str(state);
- break;
- case FMT_SPECIFIER_NRCHARS:
- fmt_xprintf_state_produce_nrchars(state);
- break;
- case FMT_SPECIFIER_PERCENT:
- case FMT_SPECIFIER_INVALID:
- fmt_xprintf_state_produce_raw_char(state, '%');
- break;
- }
- }
- int
- fmt_vxprintf(struct fmt_write_op *op, const char *format, va_list ap)
- {
- struct fmt_xprintf_state state;
- int error;
- fmt_xprintf_state_init(&state, op, format, ap);
- for (;;) {
- error = fmt_xprintf_state_consume(&state);
- if (error == EAGAIN) {
- continue;
- } else if (error) {
- break;
- }
- fmt_xprintf_state_produce(&state);
- }
- return fmt_xprintf_state_finalize(&state);
- }
- int
- fmt_xprintf(struct fmt_write_op *op, const char *format, ...)
- {
- va_list ap;
- int ret;
- va_start(ap, format);
- ret = fmt_vxprintf(op, format, ap);
- va_end(ap);
- return ret;
- }
- static void
- sprintf_putc(void *data, int ch)
- {
- char **ptr;
- ptr = data;
- **ptr = ch;
- (*ptr)++;
- }
- int
- fmt_sprintf(char *str, const char *format, ...)
- {
- va_list ap;
- int length;
- va_start(ap, format);
- length = fmt_vsprintf(str, format, ap);
- va_end(ap);
- return length;
- }
- int
- fmt_vsprintf(char *str, const char *format, va_list ap)
- {
- struct fmt_write_op op;
- int ret;
- op.data = &str;
- op.putc = sprintf_putc;
- ret = fmt_vxprintf(&op, format, ap);
- *str = '\0';
- return ret;
- }
- int
- fmt_snprintf(char *str, size_t size, const char *format, ...)
- {
- va_list ap;
- int length;
- va_start(ap, format);
- length = fmt_vsnprintf(str, size, format, ap);
- va_end(ap);
- return length;
- }
- struct snprintf_data {
- char *cur;
- char *end;
- };
- static void
- snprintf_putc(void *ptr, int ch)
- {
- struct snprintf_data *data;
- data = ptr;
- if (data->cur < data->end) {
- *data->cur++ = ch;
- }
- }
- int
- fmt_vsnprintf(char *str, size_t size, const char *format, va_list ap)
- {
- struct fmt_write_op op;
- struct snprintf_data data;
- int ret;
- data.cur = str;
- data.end = str + size;
- op.data = &data;
- op.putc = snprintf_putc;
- ret = fmt_vxprintf(&op, format, ap);
- if (ret >= 0 && (size_t)ret < size) {
- *data.cur = '\0';
- }
- return ret;
- }
- static char
- fmt_atoi(char c)
- {
- assert(fmt_isxdigit(c));
- if (fmt_isdigit(c)) {
- return c - '0';
- } else if (c >= 'a' && c <= 'f') {
- return 10 + (c - 'a');
- } else {
- return 10 + (c - 'A');
- }
- }
- static bool
- fmt_isspace(char c)
- {
- if (c == ' ') {
- return true;
- }
- if ((c >= '\t') && (c <= '\f')) {
- return true;
- }
- return false;
- }
- static void
- fmt_xscanf_state_init(struct fmt_xscanf_state *state,
- struct fmt_read_op *op,
- const char *format, va_list ap)
- {
- state->format = format;
- state->flags = 0;
- state->width = 0;
- va_copy(state->ap, ap);
- state->nr_convs = 0;
- state->read_op = *op;
- state->nr_chars = 0;
- state->cur_ch = FMT_NOPUTBACK;
- }
- static int
- fmt_xscanf_state_finalize(struct fmt_xscanf_state *state)
- {
- va_end(state->ap);
- return state->nr_convs;
- }
- static void
- fmt_xscanf_state_report_conv(struct fmt_xscanf_state *state)
- {
- if (state->nr_convs == EOF) {
- state->nr_convs = 1;
- return;
- }
- state->nr_convs++;
- }
- static void
- fmt_xscanf_state_report_error(struct fmt_xscanf_state *state)
- {
- if (state->nr_convs != 0) {
- return;
- }
- state->nr_convs = EOF;
- }
- static void
- fmt_xscanf_state_putback(struct fmt_xscanf_state *state, int ch)
- {
- state->cur_ch = ch;
- }
- static int
- fmt_xscanf_state_consume_char(struct fmt_xscanf_state *state)
- {
- int ch;
- if (state->cur_ch != FMT_NOPUTBACK) {
- ch = state->cur_ch;
- state->cur_ch = FMT_NOPUTBACK;
- } else {
- ch = state->read_op.getc(state->read_op.data);
- }
- ++state->nr_chars;
- return ch;
- }
- static void
- fmt_xscanf_state_skip_space(struct fmt_xscanf_state *state)
- {
- int ch;
- for (;;) {
- ch = fmt_xscanf_state_consume_char(state);
- if (ch < 0 || !fmt_isspace(ch)) {
- fmt_xscanf_state_putback(state, ch);
- break;
- }
- }
- }
- static char
- fmt_xscanf_state_consume_string(struct fmt_xscanf_state *state)
- {
- char c;
- c = fmt_xscanf_state_consume_char(state);
- if (state->flags & FMT_FORMAT_CHECK_WIDTH) {
- if (state->width == 0) {
- c = EOF;
- } else {
- state->width--;
- }
- }
- return c;
- }
- static void
- fmt_xscanf_state_restore_string(struct fmt_xscanf_state *state, int ch)
- {
- assert(state->cur_ch == FMT_NOPUTBACK);
- state->cur_ch = ch;
- }
- static char
- fmt_xscanf_state_consume_format(struct fmt_xscanf_state *state)
- {
- return *state->format++;
- }
- static void
- fmt_xscanf_state_restore_format(struct fmt_xscanf_state *state)
- {
- --state->format;
- }
- static void
- fmt_xscanf_state_consume_flags(struct fmt_xscanf_state *state)
- {
- bool found;
- char c;
- found = true;
- state->flags = 0;
- do {
- c = fmt_xscanf_state_consume_format(state);
- switch (c) {
- case '*':
- state->flags |= FMT_FORMAT_DISCARD;
- break;
- default:
- found = false;
- break;
- }
- } while (found);
- fmt_xscanf_state_restore_format(state);
- }
- static void
- fmt_xscanf_state_consume_width(struct fmt_xscanf_state *state)
- {
- char c;
- state->width = 0;
- for (;;) {
- c = fmt_xscanf_state_consume_format(state);
- if (!fmt_isdigit(c)) {
- break;
- }
- state->width = state->width * 10 + (c - '0');
- }
- if (state->width != 0) {
- state->flags |= FMT_FORMAT_CHECK_WIDTH;
- }
- fmt_xscanf_state_restore_format(state);
- }
- static void
- fmt_xscanf_state_consume_modifier(struct fmt_xscanf_state *state)
- {
- char c, c2;
- c = fmt_xscanf_state_consume_format(state);
- switch (c) {
- case 'h':
- case 'l':
- c2 = fmt_xscanf_state_consume_format(state);
- if (c == c2) {
- state->modifier = (c == 'h') ? FMT_MODIFIER_CHAR
- : FMT_MODIFIER_LONGLONG;
- } else {
- state->modifier = (c == 'h') ? FMT_MODIFIER_SHORT
- : FMT_MODIFIER_LONG;
- fmt_xscanf_state_restore_format(state);
- }
- break;
- case 'z':
- state->modifier = FMT_MODIFIER_SIZE;
- break;
- case 't':
- state->modifier = FMT_MODIFIER_PTRDIFF;
- break;
- default:
- state->modifier = FMT_MODIFIER_NONE;
- fmt_xscanf_state_restore_format(state);
- break;
- }
- }
- static void
- fmt_xscanf_state_consume_specifier(struct fmt_xscanf_state *state)
- {
- char c;
- c = fmt_xscanf_state_consume_format(state);
- switch (c) {
- case 'i':
- state->base = 0;
- state->flags |= FMT_FORMAT_CONV_SIGNED;
- state->specifier = FMT_SPECIFIER_INT;
- break;
- case 'd':
- state->flags |= FMT_FORMAT_CONV_SIGNED;
- __fallthrough;
- case 'u':
- state->base = 10;
- state->specifier = FMT_SPECIFIER_INT;
- break;
- case 'o':
- state->base = 8;
- state->specifier = FMT_SPECIFIER_INT;
- break;
- case 'p':
- state->modifier = FMT_MODIFIER_PTR;
- __fallthrough;
- case 'x':
- case 'X':
- state->base = 16;
- state->specifier = FMT_SPECIFIER_INT;
- break;
- case 'c':
- state->specifier = FMT_SPECIFIER_CHAR;
- break;
- case 's':
- state->specifier = FMT_SPECIFIER_STR;
- break;
- case 'n':
- state->specifier = FMT_SPECIFIER_NRCHARS;
- break;
- case '%':
- state->specifier = FMT_SPECIFIER_PERCENT;
- break;
- default:
- state->specifier = FMT_SPECIFIER_INVALID;
- fmt_xscanf_state_restore_format(state);
- break;
- }
- }
- static int
- fmt_xscanf_state_discard_char(struct fmt_xscanf_state *state, char c)
- {
- char c2;
- if (fmt_isspace(c)) {
- fmt_xscanf_state_skip_space(state);
- return 0;
- }
- c2 = fmt_xscanf_state_consume_string(state);
- if (c != c2) {
- if ((c2 == '\0') && (state->nr_convs == 0)) {
- state->nr_convs = EOF;
- }
- return EINVAL;
- }
- return 0;
- }
- static int
- fmt_xscanf_state_consume(struct fmt_xscanf_state *state)
- {
- int error;
- char c;
- state->flags = 0;
- c = fmt_xscanf_state_consume_format(state);
- if (c == '\0') {
- return ENOENT;
- }
- if (c != '%') {
- error = fmt_xscanf_state_discard_char(state, c);
- if (error) {
- return error;
- }
- return EAGAIN;
- }
- fmt_xscanf_state_consume_flags(state);
- fmt_xscanf_state_consume_width(state);
- fmt_xscanf_state_consume_modifier(state);
- fmt_xscanf_state_consume_specifier(state);
- return 0;
- }
- static int
- fmt_xscanf_state_produce_int(struct fmt_xscanf_state *state)
- {
- unsigned long long n, m, tmp;
- char c, buf[FMT_MAX_NUM_SIZE];
- bool negative;
- size_t i;
- negative = 0;
- fmt_xscanf_state_skip_space(state);
- c = fmt_xscanf_state_consume_string(state);
- if (c == '-') {
- negative = true;
- c = fmt_xscanf_state_consume_string(state);
- }
- if (c == '0') {
- c = fmt_xscanf_state_consume_string(state);
- if ((c == 'x') || (c == 'X')) {
- if (state->base == 0) {
- state->base = 16;
- }
- if (state->base == 16) {
- c = fmt_xscanf_state_consume_string(state);
- } else {
- fmt_xscanf_state_restore_string(state, c);
- c = '0';
- }
- } else {
- if (state->base == 0) {
- state->base = 8;
- }
- if (state->base != 8) {
- fmt_xscanf_state_restore_string(state, c);
- c = '0';
- }
- }
- }
- i = 0;
- while (c != '\0') {
- if (state->base == 8) {
- if (!((c >= '0') && (c <= '7'))) {
- break;
- }
- } else if (state->base == 16) {
- if (!fmt_isxdigit(c)) {
- break;
- }
- } else {
- if (!fmt_isdigit(c)) {
- break;
- }
- }
- /* XXX Standard sscanf provides no way to cleanly handle overflows */
- if (i < (ARRAY_SIZE(buf) - 1)) {
- buf[i] = c;
- } else if (i == (ARRAY_SIZE(buf) - 1)) {
- strcpy(buf, "1");
- negative = true;
- }
- i++;
- c = fmt_xscanf_state_consume_string(state);
- }
- fmt_xscanf_state_restore_string(state, c);
- if (state->flags & FMT_FORMAT_DISCARD) {
- return 0;
- }
- if (i == 0) {
- if (c == '\0') {
- fmt_xscanf_state_report_error(state);
- return EINVAL;
- }
- buf[0] = '0';
- i = 1;
- }
- if (i < ARRAY_SIZE(buf)) {
- buf[i] = '\0';
- i--;
- } else {
- i = strlen(buf) - 1;
- }
- n = 0;
- #ifndef __LP64__
- if (state->modifier == FMT_MODIFIER_LONGLONG) {
- #endif /* __LP64__ */
- m = 1;
- tmp = 0;
- while (&buf[i] >= buf) {
- tmp += fmt_atoi(buf[i]) * m;
- if (tmp < n) {
- n = 1;
- negative = true;
- break;
- }
- n = tmp;
- m *= state->base;
- i--;
- }
- #ifndef __LP64__
- } else {
- unsigned long _n, _m, _tmp;
- _n = 0;
- _m = 1;
- _tmp = 0;
- while (&buf[i] >= buf) {
- _tmp += fmt_atoi(buf[i]) * _m;
- if (_tmp < _n) {
- _n = 1;
- negative = true;
- break;
- }
- _n = _tmp;
- _m *= state->base;
- i--;
- }
- n = _n;
- }
- #endif /* __LP64__ */
- if (negative) {
- n = -n;
- }
- switch (state->modifier) {
- case FMT_MODIFIER_CHAR:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- *va_arg(state->ap, char *) = n;
- } else {
- *va_arg(state->ap, unsigned char *) = n;
- }
- break;
- case FMT_MODIFIER_SHORT:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- *va_arg(state->ap, short *) = n;
- } else {
- *va_arg(state->ap, unsigned short *) = n;
- }
- break;
- case FMT_MODIFIER_LONG:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- *va_arg(state->ap, long *) = n;
- } else {
- *va_arg(state->ap, unsigned long *) = n;
- }
- break;
- case FMT_MODIFIER_LONGLONG:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- *va_arg(state->ap, long long *) = n;
- } else {
- *va_arg(state->ap, unsigned long long *) = n;
- }
- break;
- case FMT_MODIFIER_PTR:
- *va_arg(state->ap, uintptr_t *) = n;
- break;
- case FMT_MODIFIER_SIZE:
- *va_arg(state->ap, size_t *) = n;
- break;
- case FMT_MODIFIER_PTRDIFF:
- *va_arg(state->ap, ptrdiff_t *) = n;
- break;
- default:
- if (state->flags & FMT_FORMAT_CONV_SIGNED) {
- *va_arg(state->ap, int *) = n;
- } else {
- *va_arg(state->ap, unsigned int *) = n;
- }
- }
- fmt_xscanf_state_report_conv(state);
- return 0;
- }
- static int
- fmt_xscanf_state_produce_char(struct fmt_xscanf_state *state)
- {
- char c, *dest;
- int i, width;
- if (state->flags & FMT_FORMAT_DISCARD) {
- dest = NULL;
- } else {
- dest = va_arg(state->ap, char *);
- }
- if (state->flags & FMT_FORMAT_CHECK_WIDTH) {
- width = state->width;
- } else {
- width = 1;
- }
- for (i = 0; i < width; i++) {
- c = fmt_xscanf_state_consume_string(state);
- if ((c == '\0') || (c == EOF)) {
- break;
- }
- if (dest != NULL) {
- *dest = c;
- dest++;
- }
- }
- if (i < width) {
- fmt_xscanf_state_restore_string(state, c);
- }
- if ((dest != NULL) && (i != 0)) {
- fmt_xscanf_state_report_conv(state);
- }
- return 0;
- }
- static int
- fmt_xscanf_state_produce_str(struct fmt_xscanf_state *state)
- {
- int orig, off;
- char c, dummy, *dest;
- orig = state->nr_chars;
- fmt_xscanf_state_skip_space(state);
- if (state->flags & FMT_FORMAT_DISCARD) {
- dest = &dummy;
- off = 0;
- } else {
- dest = va_arg(state->ap, char *);
- off = 1;
- }
- for (;;) {
- c = fmt_xscanf_state_consume_string(state);
- if ((c == '\0') || (c == ' ') || (c == EOF)) {
- break;
- }
- *dest = c;
- dest += off;
- }
- fmt_xscanf_state_restore_string(state, c);
- if (state->nr_chars == orig) {
- fmt_xscanf_state_report_error(state);
- return EINVAL;
- }
- if (dest != &dummy) {
- *dest = '\0';
- fmt_xscanf_state_report_conv(state);
- }
- return 0;
- }
- static int
- fmt_xscanf_state_produce_nrchars(struct fmt_xscanf_state *state)
- {
- *va_arg(state->ap, int *) = state->nr_chars;
- return 0;
- }
- static int
- fmt_xscanf_state_produce(struct fmt_xscanf_state *state)
- {
- switch (state->specifier) {
- case FMT_SPECIFIER_INT:
- return fmt_xscanf_state_produce_int(state);
- case FMT_SPECIFIER_CHAR:
- return fmt_xscanf_state_produce_char(state);
- case FMT_SPECIFIER_STR:
- return fmt_xscanf_state_produce_str(state);
- case FMT_SPECIFIER_NRCHARS:
- return fmt_xscanf_state_produce_nrchars(state);
- case FMT_SPECIFIER_PERCENT:
- fmt_xscanf_state_skip_space(state);
- return fmt_xscanf_state_discard_char(state, '%');
- default:
- fmt_xscanf_state_report_error(state);
- return EINVAL;
- }
- }
- int
- fmt_vxscanf(struct fmt_read_op *op, const char *format, va_list ap)
- {
- struct fmt_xscanf_state state;
- int error;
- fmt_xscanf_state_init(&state, op, format, ap);
- for (;;) {
- error = fmt_xscanf_state_consume(&state);
- if (error == EAGAIN) {
- continue;
- } else if (error) {
- break;
- }
- error = fmt_xscanf_state_produce(&state);
- if (error) {
- break;
- }
- }
- return fmt_xscanf_state_finalize(&state);
- }
- int
- fmt_xscanf(struct fmt_read_op *op, const char *format, ...)
- {
- va_list ap;
- int ret;
- va_start(ap, format);
- ret = fmt_vxscanf(op, format, ap);
- va_end(ap);
- return ret;
- }
- static int
- sscanf_getc(void *ptr)
- {
- char **cur;
- int ch;
- cur = ptr;
- ch = **cur;
- if (ch != '\0') {
- (*cur)++;
- }
- return ch;
- }
- int
- fmt_sscanf(const char *str, const char *format, ...)
- {
- va_list ap;
- int ret;
- va_start(ap, format);
- ret = fmt_vsscanf(str, format, ap);
- va_end(ap);
- return ret;
- }
- int
- fmt_vsscanf(const char *str, const char *format, va_list ap)
- {
- struct fmt_read_op op;
- op.getc = sscanf_getc;
- op.data = (void *)&str;
- return fmt_vxscanf(&op, format, ap);
- }
|