mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Rich Felker <dalias@aerifal.cx>
To: musl@lists.openwall.com
Subject: Re: cluts test suite with musl
Date: Wed, 24 Apr 2013 09:32:13 -0400	[thread overview]
Message-ID: <20130424133213.GD20323@brightrain.aerifal.cx> (raw)
In-Reply-To: <CAE+eE2KGbtpXFO8_+Vu9XSea4R+XrcF-Q79DeTnXBPiPw9RAyg@mail.gmail.com>

On Wed, Apr 24, 2013 at 03:26:57PM +0300, Timerlan Moldobaev wrote:
> Thanks !
> 
> I applied the patch. Still have some tests failing.
> 
> For instance tests/buf fails with the following error message:
> 
> iconv(&<"abcd">, &<4>, &s, &<3>) caused a SIGSEGV!
> 
> I am not sure but  it seems that iconv()  that is called from wrap_iconv()
> should return  an error return value and set an errno value.
> At least to my understanding  that the way the test is written.
> For musl implementation of iconv()  returns 0 and sets no errno.
> 
> While in the case of standard Linux implementation, errno = E2BIG and -1
> returned ( error return value) .
> 
> For the case buf linked dynamically against the standard libc.so library:
> 
>  ldd tests/buf
>         libpthread.so.0 => /lib64/libpthread.so.0 (0x00000030d1000000)
>         librt.so.1 => /lib64/librt.so.1 (0x00000030d4400000)
>         libm.so.6 => /lib64/libm.so.6 (0x00000030d0800000)
>         libc.so.6 => /lib64/libc.so.6 (0x00000030d0400000)
>         /lib64/ld-linux-x86-64.so.2 (0x00000030cf400000)
> 
> > uname -a
> Linux lnxbdc96 2.6.18-164.11.1.el5 #1 SMP Wed Jan 6 13:26:04 EST 2010
> x86_64 x86_64 x86_64 GNU/Linux
> 
> Can you please look into this ?

Yes, the test is invoking undefined behavior by failing to check the
return value of iconv_open and passing an invalid conversion
descriptor ((iconv_t)-1) to iconv. I don't know why it's crashing for
you but not me; probably a difference from being 64-bit vs 32-bit
affecting the way the bits of the conversion descriptor are handled.

Apparently the test was written based on GNU documentation that allows
"" as an alias for the current locale's encoding. This usage is
non-portable, but may be something we should add to musl.
nl_langinfo(CODESET) is the portable way to get this.

Rich


      reply	other threads:[~2013-04-24 13:32 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-23 12:26 Timerlan Moldobaev
2013-04-23 13:40 ` Rich Felker
2013-04-23 15:17   ` Timerlan Moldobaev
2013-04-23 15:31     ` Rich Felker
2013-04-23 15:47       ` Rich Felker
2013-04-24 12:26         ` Timerlan Moldobaev
2013-04-24 13:32           ` Rich Felker [this message]

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=20130424133213.GD20323@brightrain.aerifal.cx \
    --to=dalias@aerifal.cx \
    --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).