mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Peter Kasting <pkasting@google.com>
To: musl@lists.openwall.com
Subject: [musl] vfprintf(..., "%lc", (wint_t)0) fails to output a \0
Date: Thu, 26 Oct 2023 17:56:09 -0700	[thread overview]
Message-ID: <CAAHOzFB3Ka73KO8SnT63gA+iwXg14L3xsJ4tWc7DHcTnPcoE2g@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 2381 bytes --]

(I'm not subscribed here, please CC me on any responses.)

I believe* the following program will fail on musl:

#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <wchar.h>

int main() {
  char buf[16];
  memset(buf, 1, 16);
  int len = sprintf(buf, "%lc", (wint_t)0);
  assert(len > 0);
  assert(buf[0] == 0);
  return 0;
}

This should write a \0 to the buffer, but will write nothing.

*I don't have direct access to a musl environment to compile and test the
code above, so this is speculation. I reproduced this bug indirectly via a
Linux Alpine test environment here at Google while trying to make changes
to Abseil's string-handling implementation.

From code inspection, the problem occurs at
https://git.musl-libc.org/cgit/musl/tree/src/stdio/vfprintf.c#n611. Here
the loop guard tests `*ws` to ensure it stops on null terminators. However,
when we fall through from handling this input case (of "%lc", 0), *ws ==
wc[0] == 0, so wctomb() is never called.

The C99 spec here arguably allows this behavior, but I believe its intent
is to specify the behavior glibc's implementation exhibits (where a 0 is
written). Section 7.19.6.1.8 says regarding %lc, "...the wint_t argument is
converted as if by an ls conversion specification with no precision and an
argument that points to the initial element of a two-element array of
wchar_t, the first element containing the wint_t argument to the lc
conversion specification and the second a null wide character." And
regarding %ls, "...the argument shall be a pointer to the initial element
of an array of wchar_t type. Wide characters from the array are converted
to multibyte characters...up to and including a terminating null wide
character. The resulting multibyte characters are written up to (but not
including) the terminating null character (byte)." One could argue that the
first (zero) element in the array, being a 0, is "a terminating null wide
character" that should be converted to a multibyte character, but
subsequently not written (since the conversion will result in solely a
terminating null character). But it seems like the intent of the spec was
to say that a %lc argument is always converted and written, with the second
array element always treated as "the null terminator". I don't know if
there is further clarifying language/discussion in some mailing list or
archives somewhere.

PK

[-- Attachment #2: Type: text/html, Size: 2891 bytes --]

             reply	other threads:[~2023-10-27  1:37 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-27  0:56 Peter Kasting [this message]
2023-10-27  1:38 ` Rich Felker
2023-10-27  1:40   ` Peter Kasting

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAAHOzFB3Ka73KO8SnT63gA+iwXg14L3xsJ4tWc7DHcTnPcoE2g@mail.gmail.com \
    --to=pkasting@google.com \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).